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 strongm 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. michelleDub

    Creating an exe VB application

    Hi I have finished the coding of the VB application. I'm not too familar with VB I'm wondering what the story is with creating the installable files to allow for it to be used on any computer. I'm thinking of something similar to a "make" file in C. Thanks in advance. M
  2. michelleDub

    Printing a HTML string

    Hi. I have the webbrowser printing the HTML file properly now, but only when I place a message box in between the following lines: WebBrowser1.Navigate "Print.html" MsgBox "Printing ..." WebBrowser1.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_PROMPTUSER When I remove the...
  3. michelleDub

    Printing a HTML string

    The path is right with the message box. The webbrowser is "Behind" the main form so I can't move/ delete it to see what's inside. Also, I created another webbrowser, pointedf the html file at it to see what's inside it, but I can only place webbrowsers on the toolbar part and, as...
  4. michelleDub

    Printing a HTML string

    Hi. Thanks for the help. The application no longer shows any run time errors. I'm using the code: WebBrowser1.Navigate App.Path & "\" & "Print.html" WebBrowser1.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_PROMPTUSER Where WebBrowser1 is the inserted webbrowser and Print is...
  5. michelleDub

    Printing a HTML string

    Hi. Thanks for the help. The application no longer shows any run time errors. The only problem is that it prints a blank internet page "The page cannot be displayed" It says on the page that it "Cannot find the server or DNS Error" Any ideas, D
  6. michelleDub

    Printing a HTML string

    Hi. My application opens up a HTML file and writes a srting to it. Does anyone know the command to print the contents of the HTML file to the printer. My code is: Dim ff As Integer ff = FreeFile Open App.Path & "\" & "myFile.html" For Output As ff Print #ff...
  7. michelleDub

    printing from a HTML String

    hi, I am trying to print a string which is a html table. I've been trying to use Printer.print string1 and variety of that without any success. It just gives the string, is there any way I can get the application to recognoise the HTML before sending it to the printer? I am taking the string...
  8. michelleDub

    Taking String from file without ""

    Hi When storing a string of HTML in the file there are "" around it. Is there any way of storing the string without these or getting rid of these in the .html file. I am writing the HTML string to a file saved as a .html file and the "" are coming up before the HTML table...
  9. michelleDub

    Saving files in different format depending on filter chosen

    hi, I'm trying to save details from a VB application in two ways. Firstly as a .txt file which stores variable valuse which can be reloaded to the application from the text file. however I would alos like the user to be able to choose to save the file as a html file which will save a table of...
  10. michelleDub

    Selecting item from list box from file info

    Hi I'm trying to get the contents of a file to fill out the fields in an application. I'm having alot of trouble with selecting the item which had been previously chosen from a list. For example the database values chosen I store by saving the integer representing its position StoredInt =...
  11. michelleDub

    Calling a Private Sub from another fmr

    Thanks, Do u mean to call the private sub from the public function in the form it is defined in. thanks
  12. michelleDub

    Calling a Private Sub from another fmr

    Hi I want to call a Private Sub from another frm. I'm pretty new to VB. I'm wondering if there is anything in VB like friend functions in C++ or if there is any other way around this problem. Thanks in Advance Michelle
  13. michelleDub

    NSG SRV 32 Error on Labtop

    Hi Having problem with my labtop, It continually crashes. It's a toshiba with Windows ME. I keep getting the NSG SRV 32 Error. Wondering if anyone else has had this problem and can make any suggestions as to how to fix it. Thanks in Advance Michelle
  14. michelleDub

    Adding Save and load Capabilities

    Hi, I'm currently trying to add a Save and load Capability to a rather large application, each file for a save will require approximately 80 variables. I've been looking at writing each save to a file allowing the user to input a filename. I was looking at using a FileListBox to allow the...
  15. michelleDub

    VB Command Buttons on multiple tabs

    Hi I'm trying to get VB command button to appear on ever tab of an already created VB application. There are 10 tabs and I want the same code to be used for the button on each tab with same button appearin gon each. Any advice would be really appreciated. Thanks in advance

Part and Inventory Search

Back
Top