Search:

Type: Posts; User: Giraffe Frenzy

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    2,482

    Re: Script to Trap Findstr Output

    Hi edrichard,

    You may need to specifically tell the script to use the 'cmd.exe'.

    For example:

    GetLogicalPathCMD ="c:\windows\system32\cmd.exe /K c:\temp\getstoragearray subtarget=port...
  2. Replies
    5
    Views
    583

    Re: Parsing Text

    LaVolpe, thanks for your help!! I'm good to go.
  3. Replies
    5
    Views
    583

    Re: Parsing Text

    LaVolpe,

    That works great for the first two lines, excellent idea! Do you propose anything for the third line where the "space" then "letter" must be applied to the same array object?

    For...
  4. Replies
    5
    Views
    583

    [RESOLVED] Parsing Text

    Hi All,

    I really need your help on parsing the below three lines of text:



    Dirs : 1225 0 1225 0 0 2
    Files : 9996 18 9976 ...
  5. Replies
    1
    Views
    477

    Re: Create Email + Outlook

    I figured it out. I capitalized on a flag MS incorporated into the outlook.exe file.

    For this example, I have a text file with emails listed within it:

    Example of data within the text file:

    ...
  6. Replies
    1
    Views
    477

    [RESOLVED] Create Email + Outlook

    Hi All,

    I am looking for a vb script that opens the compose a new email window within Outlook, but has the "TO" field populated with a predefined list of recipients.

    Is there is simple script...
  7. Replies
    1
    Views
    478

    File Name Sorting

    Hi All,

    I have a drive (lets call it "H") that will have a dynamic list of folders within it. The folders will work off of a date naming convention, example 20071105.

    I need to be able to sort...
  8. Replies
    1
    Views
    450

    Sorting Folder Contents

    Hi All,

    I have a drive (lets call it "H") that will have a dynamic list of folders within it. The folders will work off of a date naming convention, example 20071105.

    I need to be able to sort...
  9. Replies
    5
    Views
    537

    Re: String Function Help

    Very cool. Thank you all for your help.

    I tried all the suggestions given, and everyone worked great. Much appreciated!
  10. Replies
    3
    Views
    506

    Re: String Function Help

    Awesome, thank you guys!

    Your explanations and help is why I love coming to this site. Thank you both very much.
  11. Replies
    5
    Views
    537

    [RESOLVED] String Function Help

    Hi All,

    I have a string that I need to extract only a certain part of the data from:

    SMTP:Mike.Smith@abc.com

    I need to extrapolate "Mike.Smith" from the above string.

    I have about 1,000...
  12. Replies
    3
    Views
    506

    [RESOLVED] String Function Help

    Hi All,

    I have a string that I need to extract only a certain part of the data from:

    SMTP:Mike.Smith@abc.com

    I need to extrapolate "Mike.Smith" from the above string.

    I have about 1,000...
  13. Replies
    1
    Views
    412

    [2005] Adding an image to TreeView

    Hi Everyone,

    How do I use an image from an ImageList within a TreeView tree? I have figured out how to populate a TreeView, but adding images to the tree is eluding me.

    Any help would greatly...
  14. Re: [2005] Distinguishing if data is a string

    Thanks bmahler,

    It works perfectly.
  15. [RESOLVED] [2005] Distinguishing if data is a string

    Hi Everyone,

    I am pulling data from a text file on my local machine. My problem is that is each line of data could be an alphanumeric string, or just a pure integer string. (I only want to import...
  16. Re: [RESOLVED] [2005] Closing threads when program closes

    jmc and Atheist,

    thank you. I tried IsBackground as you suggested. This also worked. Based on what you said Atheist, I will use the IsBackground. Thank you all.
  17. Re: [2005] Closing threads when program closes

    I figured it out.

    On the _FormClosed event, type
    End
  18. Re: [2005] Closing threads when program closes

    Does anyone know how to kill this thread on the _FormClosed event?



    Dim t As New Thread(AddressOf runContactThread)
    t.Start()
  19. Re: [2005] Closing threads when program closes

    On the _FormClosed event, how would I stop a thread that is started like the below code?



    Dim t As New Thread(AddressOf runContactThread)
    t.Start()
  20. [RESOLVED] [2005] Closing threads when program closes

    Hi Everyone,

    I have an application that has threads continually running in the background monitoring different settings. When the end users x's out of my program, the threads remain as a process...
  21. Replies
    14
    Views
    608

    Re: [2005] combobox question

    bah, I am still trying to get this thing to work. Thank you for your help though stimbo, much appreciated.

    Does anyone have any ideas about this? :(
  22. Replies
    14
    Views
    608

    Re: [2005] combobox question

    Sure,

    The below code works if the combo box is set to "DropDown". If it is set to "Simple" (the style that I need) then it does not work.




    Private Sub ComboBox1_KeyDown(ByVal sender As...
  23. Replies
    14
    Views
    608

    Re: [2005] combobox question

    the Key Up event does not work either. When I press "Enter", the all the text is cleared from the box.
  24. Replies
    14
    Views
    608

    Re: [2005] combobox question

    stimbo,

    My dropdownstyle is set to "simple". This is the monkey throwing the wrench. Can you think of a work around for this?

    Thank you for you help :wave:
  25. Replies
    14
    Views
    608

    Re: [2005] combobox question

    robertx,

    stimbo's code returns nothing even when I have text in the combo box
  26. Replies
    14
    Views
    608

    Re: [2005] combobox question

    talkro and robertx,

    When I use your code, I get a blank message box.
  27. Replies
    14
    Views
    608

    [2005] combobox question

    Hi All,

    I hope you are able to help me with this.

    When you type text into a combo, I want to be able to hit "enter" and get a message box with the text I just entered into the combo box. Below...
  28. Re: [2005] Calling a .bat file from within vb.net

    thank you for your suggestions. they really helped me out.
  29. [RESOLVED] [2005] Calling a .bat file from within vb.net

    Hi Everyone,

    How do you execute a .bat file from within VB?
  30. Re: [2005] Writing text from a text box to a .txt file

    thanks everyone,

    the code provided works like i needed it.

    Asgorath, I will also dload your suggestion. Thanks!
  31. Re: [2005] Appending data into a text box

    thanks everyone. both your suggestions work great!
  32. [RESOLVED] [2005] Writing text from a text box to a .txt file

    Hi Everyone,

    How do you export all the text in a text box to a text file?
  33. [RESOLVED] [2005] Appending data into a text box

    Hi All,

    I have a text box that I have set to a multi-line box. How do I code my application so that I append to the next line within the text box.

    Currently when I have multiple things writing...
  34. Re: [2005] Forcing Uppser Case in a text box

    oh cool. Thanks Ideas Man. That is even better. Thank you.
  35. Re: [2005] Forcing Uppser Case in a text box

    Hi talkro,

    I entered your code, but now when I enter data into the text box the data is being entered reversed.
  36. [RESOLVED] [2005] Forcing Uppser Case in a text box

    Hi Everyone,

    How do you force all text being inputed (by a user) into a text box to be uppercase?
  37. Re: [2005] SetFocus on a text box?

    excellent, thank you for you help.
  38. Re: [2005] SetFocus on a text box?

    Hi robertx,

    How do I set focus on a text box and also highlight the text within it?
  39. [RESOLVED] [2005] SetFocus on a text box?

    Hi all,

    How do you set focus on a text box programiticaly in vb.net 2005?
  40. Replies
    22
    Views
    1,214

    Re: WebBrowser control help

    OK I figured it out,

    The below code shows how to check the URL:



    If WebBrowser1.Url = New System.Uri("http://www.google.com") Then
    End If
Results 1 to 40 of 253
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width