Search:

Type: Posts; User: phinds

Page 1 of 13 1 2 3 4

Search: Search took 0.89 seconds.

  1. Re: size of array returned by split function

    yeah, I AM going senile --- thanks
  2. [RESOLVED] size of array returned by split function

    OK, I've gone senile apparently --- I can't figure out how to get the number of elements in the array returned by the split function. Any help would be appreciated.
  3. how to get Access query "description" text using VB6

    In MS Access databases, queries have a "description" field (text) that you can get at in design mode. Using VBA (~VB6) I can get at just about everything having to do with an Access query (the name...
  4. how to get Access query "description" text using VB6

    In MS Access databases, queries have a "description" field that is available under properties when you are in design mode. Using VB6, I can get at just about everything associated with a query (the...
  5. Replies
    2
    Views
    473

    There might be a simple, elegant, way to do it in...

    There might be a simple, elegant, way to do it in toto but if you don't find one, there's an Excel/VB tutorial project at the link below my name that will show you how to do it by brute force with...
  6. Thread: Convert to vb

    by phinds
    Replies
    27
    Views
    1,582

    www.rentacoder.com

    www.rentacoder.com
  7. Replies
    1
    Views
    493

    there's an excel/VB tutorial project at the link...

    there's an excel/VB tutorial project at the link below my name that will show you how to do this
  8. Replies
    4
    Views
    567

    planet source code. There's a link at the site...

    planet source code. There's a link at the site below my name
  9. Replies
    3
    Views
    718

    that's all explained quite well in the on-line...

    that's all explained quite well in the on-line help
  10. Replies
    1
    Views
    552

    do a forum search --- this question gets answered...

    do a forum search --- this question gets answered frequently
  11. Replies
    3
    Views
    455

    probably like this: xlApp.DisplayAlerts = False

    probably like this:

    xlApp.DisplayAlerts = False
  12. Replies
    7
    Views
    815

    do a forum search --- this topic comes up at...

    do a forum search --- this topic comes up at least once a month
  13. Replies
    21
    Views
    2,703

    read the ADO tutorial at the link below my name. ...

    read the ADO tutorial at the link below my name. Check the on-line help for the connection string necessary for Oracle instead of Access
  14. Replies
    6
    Views
    659

    Public Declare Function GetUserName Lib...

    Public Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long

    retVal = GetuserName(uName, 255)

    if nName= "Admin" then do your...
  15. Replies
    1
    Views
    433

    it is very rude to post the same question twice...

    it is very rude to post the same question twice in a row with different thread subjects
  16. Thread: word automation

    by phinds
    Replies
    1
    Views
    474

    it is very rude to post the same question twice...

    it is very rude to post the same question twice in a row with different thread subjects
  17. Replies
    6
    Views
    3,844

    VB source code is a text file so you can see it...

    VB source code is a text file so you can see it from DOS or any other operating system. Running a program written in VB requires the VB run-time modules, and those ONLY run under windows, so no you...
  18. That's just silly. Of course the code you...

    That's just silly. Of course the code you reference changes the access time to whatever you want it to be, and then as soon as it has done so, windows changes it AGAIN to be RIGHT NOW, because the...
  19. Replies
    16
    Views
    829

    I don't know that it is necessarily your problem,...

    I don't know that it is necessarily your problem, but the fact that you say other people have access to the DB's lead me to believe it might be --- what happens in some conditions is that the newwork...
  20. Thread: RTB coloring

    by phinds
    Replies
    1
    Views
    385

    the sandbox project at the URL below my name has...

    the sandbox project at the URL below my name has a section color words in RTF boxes.
  21. think about what you're asking --- you want to...

    think about what you're asking --- you want to access the file without accessing the file, yes?

    Actually, there IS a way, but you most likely don't want to go there. You can use an API call...
  22. Thread: Ocr

    by phinds
    Replies
    5
    Views
    521

    try www.planetsourcecode.com

    try www.planetsourcecode.com
  23. Thread: Free database

    by phinds
    Replies
    4
    Views
    822

    do a forum search --- I've seen this question...

    do a forum search --- I've seen this question answered before
  24. Thread: progress bar

    by phinds
    Replies
    2
    Views
    687

    your question is very vague --- study the on-line...

    your question is very vague --- study the on-line help about how to use a progress bar
  25. Replies
    13
    Views
    977

    you'll have to learn how to use late binding ---...

    you'll have to learn how to use late binding --- early binding is faster but is not very portable
  26. Replies
    1
    Views
    411

    there's an encryption tutorial project at the...

    there's an encryption tutorial project at the link below my name that might be of interest
  27. Replies
    2
    Views
    498

    false is held as a zero and true is held as a...

    false is held as a zero and true is held as a minus one, so as brucevde has shown, there are numerous ways to use standard VB functions to obtain flavors of the numeric values.

    you could also do
    ...
  28. Replies
    3
    Views
    496

    I'm not sure what you mean by "eceed" since that...

    I'm not sure what you mean by "eceed" since that is not a word in English. If you mean you want to increase (make bigger) the size of the form, then just use the form properties "height' and "width"
  29. Replies
    2
    Views
    459

    save rtbResults.text to the file instead of...

    save rtbResults.text to the file instead of rtbResults.rtbText which is what you're saving now
  30. Thread: HTML Content

    by phinds
    Replies
    2
    Views
    471

    planet source code has numerous examples of URL...

    planet source code has numerous examples of URL data sucks and I've used several of them successfully
  31. Replies
    1
    Views
    637

    you'll need to use an API call to catch ALL mouse...

    you'll need to use an API call to catch ALL mouse movement, not just the movement in your VB forms, and use that mouse movement capture to reset a variable that gets incremented by your timer. Then...
  32. Replies
    3
    Views
    741

    there is an FTP sample project at the link below...

    there is an FTP sample project at the link below my name and I've used it very successfully to upload files to my web site.
  33. Replies
    4
    Views
    523

    no, the eBay login page is not an SSL page and...

    no, the eBay login page is not an SSL page and besides, I'm looking for a generic solution for filling out page queries programatically --- I just used eBay as an example.

    So ... any suggestions?...
  34. Replies
    4
    Views
    523

    internet form box submission

    How does one get a VB app to fill out an internet form? That is, I want, as an example, to have my program log onto eBay and tell eBay my userID and password so that I can establish a session that...
  35. Replies
    4
    Views
    514

    UNIX file permissions --- do an internet search...

    UNIX file permissions --- do an internet search for details
  36. Thread: HTML Content

    by phinds
    Replies
    1
    Views
    449

    planet source code has numerous examples

    planet source code has numerous examples
  37. Replies
    2
    Views
    420

    see on-line help

    see on-line help
  38. Replies
    2
    Views
    504

    muddy, the ZIP file format is well known and...

    muddy,

    the ZIP file format is well known and available and yes, you can figure out by the presence of some internal tags whether a file is in fact a ZIP file (regardless of its extent)
  39. your worry is baseless. VB6 files cannot be...

    your worry is baseless. VB6 files cannot be decompiled.
  40. Thread: Cube Problem

    by phinds
    Replies
    3
    Views
    634

    your problem has nothing to do with VB and would...

    your problem has nothing to do with VB and would be better posted in a maths forum
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width