Search:

Type: Posts; User: AussieJim

Search: Search took 0.02 seconds.

  1. Replies
    15
    Views
    2,582

    Re: Using 3rd party DLL from IDE

    Please excuse my possible ignorance (little experience with DLLs).
    Could the DLL be added to the project references??
  2. Re: strange problem in reversing a number

    Original prob was X2 = X2 / 10
    Should be X2 = X2 \ 10 (integer divide stops rounding)

    StrReverse() is good too!!
  3. Replies
    10
    Views
    1,041

    Re: IsNumeric Code Error

    The number should be -5 NOT 5-
  4. Re: Difficulty adding quotes around a variable in an excel formula

    TEXT() in excel
  5. Re: Difficulty adding quotes around a variable in an excel formula

    What type of value is in G1?
  6. Re: Difficulty adding quotes around a variable in an excel formula

    Just a thought

    Is the value of cell G1 in excel the type expected by ItemValue function?


    Edit
    What I mean is, make sure that there some value in G1 which suits the data expected by G1
  7. Replies
    6
    Views
    1,325

    Re: saving checkbox value

    Why not cover ALL values
    RS("FieldName").Value=check1.value
  8. Re: Counting WeekDays (business days) only

    On re-reading an earlier post it seems that you may OR may not wish ti include the first and last dates.
    This has options

    Public Function BusinessDays(ByVal FirstDay As Date, ByVal LastDay As...
  9. Re: Counting WeekDays (business days) only

    Try this

    Public Function BusinessDays(FirstDay As Date, LastDay As Date) As Long
    Dim lngCtr As Long
    Dim TestDate As Date

    TestDate = FirstDay
    Do While TestDate <= LastDay
    ...
  10. Replies
    4
    Views
    513

    Re: Wait till Shelled (other Process) loads

    This may be a bit simplistic but doesn't the Shell Function return a value other than zero if the shelled prog executes?
  11. Re: [RESOLVED] How to clear Immediate Window in IDE

    Also noticed that the current active form also gets a paint event fired
  12. Re: How to clear Immediate Window in IDE

    JCIS that works fine for me. Just one spelling change for my location --- Immediate for Inmediate.

    Many many thanks

    Jim
  13. Re: How to clear Immediate Window in IDE

    Thanks for replies. Looked at the old thread. Damn!! Wouldn't Debug.Cls be handy!!!
    I do not think that the Immediate window can be disabled while running a project, after all Debug.Print still...
  14. [RESOLVED] How to clear Immediate Window in IDE

    Can this be done with code from within the current project?

    Jim
  15. Thread: vsFlexgrid8

    by AussieJim
    Replies
    0
    Views
    1,733

    vsFlexgrid8

    Does anyone have a LICENCED copy of vsFlexgrid8 surplus to their needs that
    they wish to sell?

    I need to update 1 VB6 prog to run on Win7 but find ComponentOne price is
    prohibitive.

    I...
Results 1 to 15 of 15



Click Here to Expand Forum to Full Width