Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: OzzieBloke
  • Content: Threads
  • Order by date
  1. OzzieBloke

    opening other exe files

    how do you open other exe files, such as a setup file or something, so that it can be used??
  2. OzzieBloke

    Changing Home Page

    Hi, is there a way to write a code that will change my home page??
  3. OzzieBloke

    Moving Files

    Is there a way to move a file from one folder to another?? I tried using shell("move " & FilenameandPath) but the filename has to be very basic. The files that I want to move contain -'s and a few other symbols.
  4. OzzieBloke

    RemoveItem Troubles

    Hi, I am having trouble with RemoveItem. This is what I have so far: For N = 0 To List1.ListCount - 1 If List1.Selected(N) = True Then List1.RemoveItem List1.ListIndex End If Next I have also tried: For N = 0 To List1.ListCount - 1 If List1.Selected(N) = True Then...
  5. OzzieBloke

    Loading a file for viewing

    Sorry if this question has been asked before, but I was unable to find it. I have created a help file, but i don't know how to open it so that the user can see it.
  6. OzzieBloke

    List box and txt data

    Hi, I have a list box, called List1. This list box is filled with information gathered from a file, called source.txt. My problem is that i want to edit a piece of data without messing up the order. My solution would be to copy all of the data above the selected item to one file, copy all of...
  7. OzzieBloke

    Creating Help Files

    Is it possible to create your own help files?? If so how is this done??
  8. OzzieBloke

    Numerical value required in text box

    I have a text box which strictly requires a numerical value. If any character other than a number is entered, the program performs an error. Is there a way to prevent the user from entering anything other than a number??
  9. OzzieBloke

    Looping a certain amount of times

    Is there a way to repeat a command a certain amount of times?? Basically, I want the user to set how many times that a command is executed. However everything that I try doesn't work. I have tried i = 0 Do Until i = Int(Repeat.Text) string i = i + 1 Loop String is the code which...
  10. OzzieBloke

    Copying lines from 1 txt to another

    I have a program which can have multiple users. I have created it so that extra users can be added. This is done by creating a txt document which I have called source and placing the users name and ID number within. However I am having some trouble removing the users from the text document...

Part and Inventory Search

Back
Top