|
In Microsoft Access, I have a series of forms that require the user to specify a date range. Right now I do this with Calendar Control 12.0. However, at random times, the control refuses to accept any user input (such as changing the date).
Why would ...
Started by A. Scagnelli on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are also links to several downloadable....
Which you can do anything with them you want.
Another alternative is to use an Access form.
One alternative to the control is a completely API generated Month Calendar derived directly from the Common Control DLL .
|
|
The username row comes out perfectly but the password row refuses to come through.
I am at a loss here.
Does anybody know what the solution is?
here is my code::
<?php //Mass include file include ("includes/mass.php"); //This is the login script //...
Started by Tapha on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to do something....
Both
$dbusername = $row['username']; $dbpassword = $row['password'];
Should be within the while loop which is not the case .
You have a missing parenthesis after the while.
You haven't included password in your actual SQL query...
|
|
Hello,
I'm working on a simple hello world TCP/IP client server app in C# and am unable to get my client to connect. Can anyone offer any additional troubleshooting steps? I'm starting to run out of ideas...
Here are the relevant sections of code:
server...
Started by sweeney on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
This will effectively only listen to connection....
Try netstat -al on your machine (the exact command line varies between Windows and unix) and see if the server is listening on the port
The code above is listening to request coming from the loopback address .
|
Ask your Facebook Friends
|
I've been going through the screencasts here to learn how to write a table-based iPhone application, and it's been going pretty smoothly so far. Presently I'm halfway through the third episode, and it's starting to hit a snag.
In order to remove temporary...
Started by Kaji on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
- (NSArray *)recipes { return [data allKeys]; }
@property is "merely" a shorthand for method declarations... .
Since your accessor method is more complex, it can't be generated with @synthesize .
Synthesize generates a simple method to access the property.
|
|
I'm simply trying to get a percentage.
irb(main):001:0> (25 / 50) * 100 => 0
This should most definitely equal 50, as confirmed by my calculator (copied and pasted the same equation into gcalc). Why does Ruby refuse to do this?
Started by c00lryguy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
25 / 50 * 100 = 0.5 * 100 = 0 * 100 = 0
The better way to do it is to first multiply, then divide... .
Basically, 25 is an integer (a whole number) and so is 50, so when you divide one by the other, it gives you another integer .
It's doing integer division.
|
|
I am using the Maven (2) Cobertura plug-in to create reports on code coverage, and I have the following stub I am using in a method:
try { System.exit(0); } catch (final SecurityException exception) { exception.printStackTrace(); } System.err.println(...
Started by MetroidFan2002 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Code coverage is best used to find areas that you may have neglected to hit with your tests, but just focusing... .
Notice that the code really is getting covered and not worry about hitting 100% .
Double check my tests.
I would look at the coverage report.
|
|
I have a flash project; it has many source files. I have a fairly heavily-used class, call it Jenine. I recently (and, perhaps, callously) relocated Jenine from one namespace to another. I thought we were ready - I thought it was time. The new Jenine ...
Started by Ender on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If its compiled version is older than the source file, it will recompile... .
I have found one related behaviour that may help (sounds like your specific problem runs deeper though):
Flash checks whether a source file needs recompiling by looking at timestamps .
|
|
Trying to perform a very simple task here.
I have an <ol> that contains 4 rows of data in some handy <li> s. I want to add a delete button to remove the row from the table. The script in delete.php appears to have finished, but the row is ...
Started by chris on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Change:
"<input name=".$info['ID']." type=hidden>"
to
"<input name=ID value=".$info['ID']." type=hidden>"
because in delete.php you're trying to... .
It's refusing to stick because you're calling it one thing and getting it with another.
|
|
I have a partitioned table like so:
create table demo ( ID NUMBER(22) not null, TS TIMESTAMP not null, KEY VARCHAR2(5) not null, ...lots more columns... )
The partition is on the TS column (one partition per year).
Since I search a lot via the timestamp...
Started by Aaron Digulla on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you using any hints in your query that might be telling oracle to do a full scan?
Can you supply us with the full query and explain... .
Are your stats up to date? Invalid stats may mean that oracle believes a full table scan is faster than using the index .
|
|
On Mac OS X Leopard - when I try and access a remote repository from Terminal it always asks for: 1. Password 2. Username 3. Password (again)
with the message: "Authentication realm: http://svn.myserver.com:80 Subversion"
I've checked and my credentials...
Started by andybak on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Thus, authentication fails the first time you enter your....
I suspect that your account name on the Subversion server is different from your local account name .
By default, svn (and most Unix apps) pass your local username as the username for remote login .
|