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

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

    How to use a form to insert data in a table?

    I have created a form. I want to add a button so that if the button is clicked the values in the fields of form insert into a table of my database. Can someone help? My database name is database and table name is purchase_invoice.
  2. talhamoin

    Getting index of a word or sentence in Word document

    How can I get index of a word or sentence when using Document.Words. Consider the following code snippet: UserSelection = InputBox("Enter a word") For Each LookupWord in Document.Words Next The code will run on below paragraph. A quick brown fox jumps over a lazy dog. The dog was sitting...
  3. talhamoin

    Changing font color in dropbox

    I have a drop box with option of colors: cboColorList.AddItem "Aqua" cboColorList.AddItem "Blue" cboColorList.AddItem "Bright Green" cboColorList.AddItem "Dark Green" cboColorList.AddItem "Indigo" cboColorList.AddItem "Lavender" cboColorList.AddItem "Orange" cboColorList.AddItem "Red" I want...
  4. talhamoin

    Dialogue box at page load

    I want that if user is not logged in on my site, he will be presented with a dialogue box that should ask the user to select okay or cancel. if he selects okay he is redirected to login page. if he selects cancel he is redirected to main page of the site. How can I do this? I want this behavior...
  5. talhamoin

    OpenOffice Macro Creation for formatting

    I want to create a macro in OO writer. I want it to format text as per the tags I assign while editing the file. For example: A quick brown fox jumps. The macro should go through the document and format all the text that's within these tags and format them as bold. Any hints or help?
  6. talhamoin

    Using Document.Words Object in VBA Word

    Hello I have written the below code to write all words from MainDocument.doc to ChangeLog.txt. It should bypass the punctuation marks. But it isn't working. I don't know why. Any idea? Sub DictionaryCompare() Dim docCurrent As Document Dim LookupWord As Object sMainDoc =...

Part and Inventory Search

Back
Top