February 7th, 2007 02:07 PM
Perhaps others have had this missing type happen to them ... and solved it. Right now, I have no idea of why, or under what circumstances this missing type gets substituted ... I do know that some...
February 7th, 2007 07:13 AM
Yee Haw ... I'm Back. 5+ long years since working with VC++ ... Now for the headache :D ...
I keep getting this damned compile error on __missing_type__ ... This object is a placeholder for the...
March 10th, 2006 01:56 PM
Obviously you have a type mismatch trying to compare a date type using a string comparison operator ... A solution would be to have a "match" column that formats your date as a string for this...
October 24th, 2005 11:51 AM
MyCombobox.RowSourceType=Table/Query
MyCombobox.RowSource=SQLCode
#1 : Where is the ClientID? In which table?
#2 : Not really. I wouldn't advise it ... What I would do is populate the Account...
March 22nd, 2005 01:04 PM
WAY too late now ... You won't be learning VB with only 2 hours before the interview ...
November 3rd, 2004 04:07 PM
If you think about this: "The funny part is that if I remove the parantheses (like sp_StoredProc2 'N'), then the second Query works fine!" the answer should be apparent - Do you have any kind of...
September 30th, 2004 11:49 AM
Mike,
Replace works fine for me also ... Yaeh, the backslash was a bad idea ...
Cathy: Try recompiling your app and look to see if there are any invaid or missing references ...
September 30th, 2004 10:54 AM
Hmmm ...
Dim TmpString As String
TmpString="ABCD*EFGH*JIKLM*NOPQR*STUV*WXYZ*"
TmpString=Replace(TmpString,"/*","")
Should work ... I think it may have to do with VB treating the "*" as...
April 27th, 2004 06:57 AM
At which time it's not worth my time to do so unless forced to ... Right now they're happy to have it vertical ...
Thanks again Luth.
April 26th, 2004 09:00 AM
Luth,
AWESOME!!!! That get's me half way there ... Now all I gotta do is have it print vertical from right to left (bottom to top) ... :D
April 23rd, 2004 09:33 AM
This is somewhat of a VBA question .... Anyone know of a way to get a label to print/display "sideways" (vertically)? I know of no fonts available ... Thanks!
March 31st, 2004 01:59 PM
Talk about open ended ... Think about what kind of data you want to capture/track/hold/make/etc ... Then break it down into related bits of info. Create table structure from that. Normalize. Build...
March 31st, 2004 01:55 PM
# signs ... Date literals need to be surrounded by # signs ...
March 31st, 2004 01:53 PM
Numerous ... Depends on the database in question ...
March 31st, 2004 01:51 PM
Check your record locking ... Is it table level? Page level? Row level? Ideally you should be using row level ... Also you should have error trapping such that you can go into a "holding pattern"...
March 25th, 2004 09:11 AM
Try: (D_f_a_orl & '' = '')
March 25th, 2004 09:09 AM
Too true Ahmed. You have sinned to the other side tho ... A way to handle both issues at the same time is:
If rs.Fields("withdrawnprize").value & "" <> "" Then
...
Remember IsNull will fail on...
March 25th, 2004 09:03 AM
I agree ... And further, this kinda project is VERY involved ... Something that most programmers/developers would not part with for nothing (or attempt to write for nothing for that matter either)...
March 11th, 2004 09:52 AM
You have to have the proper MDAC installed ...
February 24th, 2004 02:14 PM
SELECT * FROM MyTable WHERE IsNull(MyField);
February 23rd, 2004 01:22 PM
That depends on your purpose ... What normal form are you looking to get to? Oh, what database is this to be in?