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 Chriss Miller 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: VicRauch
  • Content: Threads
  • Order by date
  1. VicRauch

    Looking for a method to display a one year calendar driven by defaults and user input

    I have accomplished this using MS Access with a form and subform. Subform used for each individual month. But I have no idea how to do this in VB.net. I have written a couple of very simple programs in VB.net, but nothing that would give me a clue on how to incorporate 12 "items" (like the...
  2. VicRauch

    How to replace variable placeholder in Word doc with variable text

    I have multiple variable placeholders in a Word document that need to be replaced with variable information from an Access table. My Word document defines these variable placeholders with this syntax: "{mfld...}" The {mfld signifies the start of the variable placeholder, and the } signifies the...
  3. VicRauch

    Simple/Basic RTF Editor

    I'm looking for a simple or basic RTF Editor that will do font selection, bold, italic, underline, order list, and unordered list. Or point me to a simple one like this to buy. thanks!
  4. VicRauch

    Process single characters from a Word document

    I have a need to examine each character in a Word document, and then, depending on the context, remove a group of characters, change the formatting of the character or group of characters. But I'm not sure what the objects are to work my way through all the characters in a document. The code...
  5. VicRauch

    How To Read a Value From Windows Registry?

    I am trying to read a certain entry from the windows registry, but not having much luck. I have found a VB routine to read the entry, but I have not been able to find EXACTLY what entries to make in the parameters in order to get this routine to return the value from the registry. The VB...
  6. VicRauch

    Need function to return single value

    I'm trying to get a list of column names with their table name for every column in my database that is an Identity column. Where I have hung up is trying to figure out how to write a function that will return True or False (for IsIndentity) when given the TableName and ColumnName. I'm just...
  7. VicRauch

    dbSeeChanges with db.Execute qrytxt

    I have the following code in an Access DB (.mdb) that gives me an error now that all my tables have been upsized to SQL Server. Dim QryTxt as String Dim DB as DAO.Database Set DB = CurrentDB() QryTxt = "UPDATE tblJob SET BillingAmount = " & _ GetBillingAmount(JobID) & " " & _...
  8. VicRauch

    Inserting records from Access to SQL 2000 Gets error of "OVERFLOW"

    I'm using Access 2002 and I am using a query within an Access DB to insert records (the whole table) into a SQL 2000 table. All I'm getting is an error box that states "Overflow" Where should I look to fix this problem? I have checked the data in the Access table, and fixed some dates, but...
  9. VicRauch

    Open Word document that has a module without the security questions

    I want a macro within a Word document that will run when the document is opened. This macro will determine the path the active document is located in, then assign the mail merge data file name to the same path for this document. I have an Access database that will output various lists of names...

Part and Inventory Search

Back
Top