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 TouchToneTommy 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: RSH
  • Content: Threads
  • Order by date
  1. RSH

    Closing an Application in VB

    The following code works very nicely to activate an application but now how does one get rid of it. Alt F4 works only from the keys not from code. Private Sub Command1_Click() RetVal = Shell("C:\Program Files\HomeConnect\VidCap.exe", 1) End Sub Thanks...
  2. RSH

    Dialing ISP

    Once again I pose the question as to how one dials up an ISP prior to sending an e- mail. The Mscom control does a nice job of dialing but what I need is the link between the dialing and the actually sending of a message with the MAPI control. Somewhere one has to enter a password and username...
  3. RSH

    Dialing ISP

    Can someone give me an example of iterfacing an Mscom control with a MAPI control so that the ISP can first be dialed up and then the message sent. 73 RSH
  4. RSH

    (Save As) Common Dialog Box

    Could someone share the code for saving an image file such as jpg or bmp to another file named by the (Save As) Common Dialog box. No problem generating the Common Dialog but having problems with SavePicture. Thanks RSH
  5. RSH

    Modifying a Compiled program

    Somewhere I'm missing somthing. One can make an exe file with a desktop ICON using Make??? exe under the file menu. Now,if one wants to modify that application there is no longer a Make???exe but rather Make???... and the Desktop Icon becomes a file not an application. Where am I going wrong...
  6. RSH

    Printing MSChart

    Can anyone tell me how to print a graph generated by MSChart on real paper. PrintForm works but is limited to the vertical height of the screen. and cannot be used to print on the bottom of an 8.5 by 11 sheet Thanks and 73 RSH
  7. RSH

    Unloading the SoundRecorder

    Ive been using the following code to bring the sound recorder onto the screen and it does so just fine. Shell "c:\windows\sndrec32.exe", vbNormalFocus The only problem is I have to get rid of the sound recorder when shutting the program down, or with a command button because if I...
  8. RSH

    Recording Wave Files

    Need VB Code to audio (wav files). This could either use the multimedia control or preferrably not. Playing is not a problem.
  9. RSH

    Playing Wav files

    Can anyone share the code necessary to play the wav files that come with windows. That is the various clicks and pops that lend somthing to a program. 73 RSH
  10. RSH

    Ascii Nos.

    Can anyone pass along the code necessary to send Ascii control numbers out the comport. Comport works fine for keyboard characters but somthing is needed to send the ascii numbers that are above and below the keyboard. Perhaps Chr$ or some such...
  11. RSH

    About the com. port

    We are using the learning edition of VB and wish to use the comport to send data to another computer but not for web developement. It looks to me that we are shot down with this version of vb. Can bring up the telephone Icon but it is not transferrable to the template. Does this mean that...
  12. RSH

    Need some code for (form1.printform)

    I am using the form1.printform to print out my program data. To prevent the screen from dumping we use a for next timing loop with vast numbers. This works fine except for the following. When the windows box indicating that printing is in progress comes up of course it is dead because there is...
  13. RSH

    Need code for background colors

    I find a background color property listed for code and assume that this property should equal some number. Looping it through 1 to 10000 all I come up with is red and black sequentiallly. What am I missing. 73 RSH
  14. RSH

    Bringing up a running program

    Currently when I bring up a VB Program from a shortcut it comes up on code and then has to be started. I would like to bring up the program running and ready to use but still have access to code for later changes. Probably a dumb question but not to me...
  15. RSH

    How to recover a lost VB Program

    This may be more of a Win 98 question than VB6. A months worth of work has gone into a VB6 program and with one click of the mouse it is gone. I made the mistake of Right clicking the program to " MY DOCUMENTS". Though I can find the icons It cannot be opened at my level of expertise...
  16. RSH

    Controlling objects using a loop?

    If one has a series of objects such as Command buttons and wishes to clear the screen of same, or to make them visible can this be done without writing code for each object. The use of a for next loop would seem ideal but VB doesnt seem to like this. There may be a secret to turning all off or...
  17. RSH

    Text Box Question

    I am using several text boxes in a program. One of them is a column of numbers which are totaled with the total showing on the bottom. The difficulty is trying to draw a line under the column of numbers and over the total. The text is the double spaced New Times Roman. The underline key draws...
  18. RSH

    Comm1 object

    I am attempting to open Comm1 to send data. However at runTime an error message tells me that an object is required. Is there a Comm1 object and if so is it included with the learning edition of VB. I sure do not find such an object. Probably a dumb question but so be it...
  19. RSH

    Input Past End

    I needed to get rid of the (Input past end) error which of course crashed the program. I chose to use an error trap like in basic for mac some years back, (ON ERROR GOTO). Is there a problem doing it this way? All my VB traps still work, and it gets rid of the annoying past end problem. One...
  20. RSH

    SAVING STRINGS AND ENTERED DATA ON DISC.

    Can anyone out there share code for saving strings and data <br>entered into a program on the confuser hard drive. This can be done quite easily in Basic for Mac but we havent discovered the secrete in...

Part and Inventory Search

Back
Top