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. onetomany

    Error!Bookmark not found Error but bookmark is there

    I am getting an error in a word document that says Error!BookMark Not Found. However the book mark has been found and the data from the book mark is displayed right in front of the error message. For example I have a bookmark that pulls an address (i.e.1234 Main St) This appears on the word...
  2. onetomany

    Get NT UserName Not Working on Certain Servers

    I am using the following function to get the NT user name. I am using PWS. It works fine on some servers but not on others(the one I need it on ). Am I doing something wrong or is there another way to get the Windows NT UserName that I can try Function NTUserName() on error resume next...
  3. onetomany

    Startign other programs from Visual Basic

    try this add a reference to excel and word through project|references Sub openExcelWord(Doc, DocType) If DocType = "WORD" Then Dim WD As New Word.Application Set WD = CreateObject("word.Application") WD.Application.Visible = True WD.Application.Documents.Open...
  4. onetomany

    Webbroswer object and Frames

    I am trying to fill in a HTML form in an asp page that I have loaded into the webbrowser object on a VB form. I have no problem getting it to work unless there are frames. Here is the code I am using that works in a page without frames. frmSBrowse.SBrowser.Document.Forms(0).MIDDLE_NAME.Value...
  5. onetomany

    Testing to see if a field in an Access table is empty or null

    have you tried using the isnull() function Do Until isnull(rstDAO.Fields(2))
  6. onetomany

    Accessing IE form elements from vb

    thanks for responding. That is not exactly what I am looking for. I think my question was not very clear. I am looking to fill in the text fields of a web application that was written by third party through a vb application that I will write.I cannot edit the ASP pages. I basically want to...
  7. onetomany

    accessing IE form elements through VB

    I am looking to fill in information on a web application from a database. The web application is not something that I have created or have control over. I would like the vb application to function like AI cyberforms (which fills in your info on the forms of websites that you are visiting)one of...
  8. onetomany

    Accessing IE form elements from vb

    I am looking to fill in information on a web application from a database. The web application is not something that I have created or have control over. I would like the vb application to function like AI cyberforms (which fills in your info on the forms of websites that you are visiting)one of...
  9. onetomany

    filling in data on html form from vb

    I am looking to fill in information on a web application from a database. The web application is not something that I have created or have control over. I would like the vb application to function like AI cyberforms (which fills in your info on the forms of websites that you are visiting)one of...
  10. onetomany

    How do I hide a VB6.0 application from the Task Manager

    Try Posting in the one of the visual basic forums you might get more responses.[thumbsup] One way to do it is: App.TaskVisible = False
  11. onetomany

    Dbase Update Statement

    Are you using ADO or DAO. ADO does not support updates or deletes to dbase IV you have to use DAO version 3.51 or before.I have had the same problem.
  12. onetomany

    Update DBASE IV Through VB6 ADO2.5

    The Table already exists. I am very new to dbase and have not been able to find very many resources to learn from. This code was actually working and adding the records however they were not visible until I reindexed the table. Do you need to create the table in order for the records to be...
  13. onetomany

    Update DBASE IV Through VB6 ADO2.5

    I am trying to update a Dbase IV table with vb 6 using ado 2.5. I thought that everything was going ok no vb errors no ADO errors. However when I searched the Dbase table for the record that I had inserted it was not there. I have include my code. I am baffled at how the code can execute without...
  14. onetomany

    Detect Version Number of Program

    Is there a way to detect the version number of another executable through your vb app. I am trying to have my app automatically prompt the user to install a new version if there is one available and if I could detect the version of the exe in the setup folder on the network and compare it...
  15. onetomany

    Passing Parameters to Crystal 8.5 from VB 6

    I am developing an application using vb 6.0 and cr 8.5 I have a report that has parameter fields. I am trying to figure out what the best method to pass a parameter to the crystal report. Right now I am using a the crystal reports ocx control. If there is a better way to use crystal 8.5 with vb...
  16. onetomany

    Launching a .bat file from VB

    You could use the windows scripting host also. Dim MyObj As WshShell Set MyObj = CreateObject("WScript.Shell") MyObj.Run "PathToYourBatchFile.bat", 0
  17. onetomany

    proper case string conversion

    thanks to the both of you. that is exactly what i was thinking of fenris.
  18. onetomany

    proper case string conversion

    Is there a VB function that will convert a string to proper case i.e. "holly grow" is converted to "Holly Grow". similar to the ucase and lcase functions. I am almost positive that I have used this before but I cannot remember the function name. thanks
  19. onetomany

    Using VB to Insert GIFS and format Header/footers in MS WORD

    This is actually two questions. 1.I need to insert a gif file into a word doc before I print it out.Is this possible. 2.I would like to use the header and footer features of word but I cannot figure out how to access them. I have a program that that opens word writes out a letter adding in...
  20. onetomany

    Wireless Text Messaging

    I am looking into writing an application thta will send out text messages to the pagers of managers of a call center when call volumes reach a certain level. I am not sure what is needed to send text messages. Can this be done using CDONTS or will I need to purchase specialsoftware or write a...

Part and Inventory Search

Back
Top