CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: M Owen

Page 1 of 53 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    2,350

    Re: __missing_type__ ***???

    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...
  2. Replies
    3
    Views
    2,350

    __missing_type__ ***???

    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...
  3. Replies
    2
    Views
    3,649

    Re: ADODB.Recordset Find method Help

    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...
  4. Replies
    15
    Views
    2,964

    Re: Help with an SQL join.

    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...
  5. Replies
    2
    Views
    929

    Re: Urgent - Interview

    WAY too late now ... You won't be learning VB with only 2 hours before the interview ...
  6. Re: Strange Behaviour in ADO, any ideas why this happens?

    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...
  7. Replies
    6
    Views
    2,694

    Re: Replace Chr(32) or "*" with ""

    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 ...
  8. Replies
    6
    Views
    2,694

    Re: Replace Chr(32) or "*" with ""

    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...
  9. At which time it's not worth my time to do so...

    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.
  10. Luth, AWESOME!!!! That get's me half way there...

    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
  11. Printing a label vertically in Access 2000 ...

    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!
  12. Replies
    3
    Views
    734

    Re: How to Update Access ?

    I believe that's called replication and reconciliation ...
  13. Replies
    3
    Views
    554

    Re: Access has comments?

    What do you mean by comments?
  14. Replies
    1
    Views
    581

    Yes. "UPDATE MyTable SET MyYesNoField=False;"

    Yes.

    "UPDATE MyTable SET MyYesNoField=False;"
  15. Replies
    6
    Views
    944

    Yes ... For the most part we're talking common...

    Yes ... For the most part we're talking common sense here ... The interesting part is when you start getting into relating disparate data together ... Then the data design comes in handy. HOW TO...
  16. Replies
    6
    Views
    944

    Re: Database design before starting

    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...
  17. Replies
    5
    Views
    697

    # signs ... Date literals need to be surrounded...

    # signs ... Date literals need to be surrounded by # signs ...
  18. Replies
    1
    Views
    645

    Numerous ... Depends on the database in question...

    Numerous ... Depends on the database in question ...
  19. Replies
    1
    Views
    718

    Check your record locking ... Is it table level?...

    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"...
  20. Try: (D_f_a_orl & '' = '')

    Try: (D_f_a_orl & '' = '')
  21. Replies
    12
    Views
    1,258

    Too true Ahmed. You have sinned to the other side...

    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...
  22. I agree ... And further, this kinda project is...

    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)...
  23. Replies
    1
    Views
    898

    You have to have the proper MDAC installed ...

    You have to have the proper MDAC installed ...
  24. Thread: Access Query

    by M Owen
    Replies
    2
    Views
    1,079

    SELECT * FROM MyTable WHERE IsNull(MyField);

    SELECT * FROM MyTable WHERE IsNull(MyField);
  25. Thread: design question

    by M Owen
    Replies
    3
    Views
    759

    That depends on your purpose ... What normal form...

    That depends on your purpose ... What normal form are you looking to get to? Oh, what database is this to be in?
Results 1 to 25 of 1320
Page 1 of 53 1 2 3 4





Click Here to Expand Forum to Full Width

Featured