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

Search:

Type: Posts; User: tha dingle

Search: Search took 0.05 seconds.

  1. Re: Procedure order of execution different when run compiled and not compiled

    Ok, that makes sense I guess, I just figured it would compile the same way it ran when executed in VB6. Oh well, Thanks

    ding
  2. Replies
    6
    Views
    919

    Re: go form by form

    This will open another form and you must close/unload that form before the first form will continue. The second form name is frmAbout and needs to be in the same project.



    Private Sub...
  3. Procedure order of execution different when run compiled and not compiled

    I already have a fix to my problem, but I am hoping someone could explain to me why the problem occured so I can better understand it.

    Here is a tidbit of code



    If GRP_GetUserGroup and If...
  4. Re: dim in loop or don't use option explicit?

    Great info! Thanks that is just what I needed.

    dingle
  5. dim in loop or don't use option explicit?

    Here is an easy question, it's not really a code based question, more of a logic question.

    Say I read a log (txt) file as binary, and then split each line out to a string array. Would it be best...
  6. Replies
    2
    Views
    986

    Re: Creating XLS w/o excel installed?

    Ah, that's exactly what I needed. Thanks WizBang!
  7. Replies
    2
    Views
    986

    Creating XLS w/o excel installed?

    I am working on an application that is going to create a XLS report every month. That part is easy enough (can find pretty much anything I need via search on here!). But... There is one thing I...
  8. Replies
    1
    Views
    44,399

    Difference between Module and Class Module

    I am going to add threading to my program and have been reading and studying this post http://www.codeguru.com/forum/showthread.php?t=316308&highlight=multiple+thread . I have my program complete,...
  9. Replies
    1
    Views
    635

    FileListBox inside Module

    Dim filHTML as FileListBox
    With filHTML
    .Pattern = "*.jpg"
    .path = "my path string"
    End With


    When it hits the pattern line I get the error "Object variable or With block variable not set". ...
  10. Replies
    2
    Views
    727

    Re: Isolate Integer from String [VB6]

    <disclaimer> I am a newb so I could be telling you the long way

    If you know the name comes first everytime, read each char until you find an integer, then do a split at the point. Bam, you got...
  11. Replies
    6
    Views
    846

    Re: Save Filename customisation help...

    Yea, that's how I have always saved to file, wheter logs or ini's. I learned that from here. :) Search is your friend, matter of fact, thats how I saw your post, came on here to do some research on...
  12. Replies
    6
    Views
    846

    Re: Save Filename customisation help...

    So you are using common dialog to allow the user to change the savefile name? I would do a seach of common dialog on here and see what you can find ( saw a bunch of stuff, just not sure what you...
  13. Replies
    6
    Views
    846

    Re: Save Filename customisation help...

    I'm a newb myself so I may be wrong, but BufferDate won't work, but CStr(BufferDate) & ".txt" should?

    Edit, oh yea, you may want to format Datetime.now too, I thing the default spits out time too,...
  14. Replies
    4
    Views
    497

    Re: program appears to hang when busy

    Crap, thanks for the quick response Darka.
  15. Replies
    4
    Views
    497

    program appears to hang when busy

    I have an app I created to backup files from one locaiton to another. When the app hits a big file it appears to hang. When I say appears to hang, I mean the form doesn't refresh and if you move...
  16. Replies
    1
    Views
    1,034

    Re: Changing IIS Virtual Directory Path

    Well, since no one replied I had to figure this one out on my own. It took me a few days and a lot of beer but here is what worked:



    'Open the folder in the filesystem
    Set...
  17. Replies
    1
    Views
    1,034

    Changing IIS Virtual Directory Path

    I have been all over the web (and here) looking for a way to change the path of an existing virtual directory points to. I have this code:



    Dim strPath as String
    Dim objIIS As Object...
  18. Re: Detecting if IIS is installed on local machine?

    Thanks, but I am trying to do this programmatically. I will see if I can find the uninstall Regentry.

    Dingle
  19. Detecting if IIS is installed on local machine?

    I have scoured this site and google for any hint on how to detect if the local machine has IIS installed on it. The only piece of info I found was to search the registry...
  20. Replies
    2
    Views
    590

    Re: program autostarting twice?

    crap, msconfig. I thought they did away with that from win2k on. But yea, that was it, for some reason it had two entries under the startup tab (only one showed up in the registry, and the windows...
  21. Replies
    2
    Views
    590

    program autostarting twice?

    I have a program I made to backup files to predetermined locations and this program has an option to start at boot up. The option works perfectly under normal circumstances but for some reason on...
Results 1 to 21 of 21





Click Here to Expand Forum to Full Width

Featured