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 SkipVought 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: *

  1. Boxster1987

    Automatic Text Box Scrolling

    Thanks johnwm, I cant believe the answer was that obvious. Now i feel stupid, lol. thanks anyway --------------------------------------------------------------------------------------------------------------------------------- "Those who think they know everything are very annoying to...
  2. Boxster1987

    Automatic Text Box Scrolling

    In a program that my friend made, he has a text box that keeps adding text to the bottom of it, but when it fills up with text and has to go below, the text box doesn't automatically scroll down to view it. Any help...
  3. Boxster1987

    How to use a TabStrip?

    Thanks for helping, Andy.
  4. Boxster1987

    Toolbar Button & Button Menu

    If you go to properties of the Toolbar, and go to the Buttons tab, change the Style option to 5-tbrDropdown Good Luck!
  5. Boxster1987

    How to use a TabStrip?

    I've been trying to make a program for some time now that utilizes a TabStrip, but I can't figure out just how to use it. Could somebody please help me?!?!? Thanks
  6. Boxster1987

    Create Word Document from VB

    If you want to just open Microsoft Word, use this code: Private Sub Command1_Click() spath = &quot;<path to MS Word>&quot; whatever = shell(spath, vbNormalFocus) End Sub You can just type &quot;whatever&quot;, you don't have to replace it with anything. Hope this helps As a circle of light...
  7. Boxster1987

    ?? about Splash form

    Visual Basic has a Splash Form creator Go to &quot;Add Form&quot; And then click on &quot;Splash Form&quot; It comes up with a pre-made splash form, all you have to do is edit the labels. As a circle of light increases, so does the circumfrence of darkness surrounding it. -Albert Einstein
  8. Boxster1987

    Saving Files For Later Use

    Thanks Behzad
  9. Boxster1987

    Stopwatch Program is Messed Up

    Thanks for the advice.
  10. Boxster1987

    Stopwatch Program is Messed Up

    I'm making a stopwatch program but when the timer gets to 30 seconds, it says 00:29, 01:31, 01:32.... Does anyone know what is wrong? Here is the code that I wrote: Dim totalsec As Integer_________________ Private Sub Timer1_Timer() totalsec = totalsec + 1 minutes = Format(totalsec / 60...
  11. Boxster1987

    Saving Files For Later Use

    Is there a way to save files in registry to be called back when you run the program again? Thanks.
  12. Boxster1987

    Saving a lot of text files in a single file and load different lines!!

    Thanks for helping, It really worked except that you forgot to have &quot;Dim MyString As String&quot;. Thanks again!!
  13. Boxster1987

    VB - Interwindow communication.

    Are you trying to send information between forms in the same program you made, or communicate with another application?
  14. Boxster1987

    carrage return within a textbox

    something a little less confusing: PrivateSub Command1_Click () Txtold.Multiline = True Txtold.Text = Txtold.Text & vbCr & txtnew.text End Sub See if this works.
  15. Boxster1987

    Control Panel/Display Settings

    Is there a way to create a program that will access the Control Panel or the display settings? Thanks
  16. Boxster1987

    Running the Run Command

    thanks guys
  17. Boxster1987

    Running the Run Command

    Does anybody kno how to make a program that will execute the run command?

Part and Inventory Search

Back
Top