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

    Barcodes In Access

    Does anyone have experience in using Access to generate reports with barcodes in them? I want to be able to encode and print information from my application as a barcode (Probably code 128). I would also like to rig a scanner up to input information into this application. Any suggestions for...
  2. gnasher

    Refer to current selection of WordPro file from VBA

    Final code can be found here: http://www-10.lotus.com/ldd/ssforum.nsf/SortedAllThreadedweb/699d536ba1f88ccb85256e31004358ac?OpenDocument Cheers!
  3. gnasher

    Refer to current selection of WordPro file from VBA

    I have a VBA function which runs from an MS Access Application. The module opens a given file, highlights the first few lines of text and then closes the file. However, I want to store this selected text within a string variable - I have very little knowledge of lotusscript and need to know...
  4. gnasher

    Using Sum() in Report/Page Footer

    This link should help http://www.mvps.org/access/reports/rpt0004.htm
  5. gnasher

    Edit Existing Text with given handle

    OK, so far so good, I now have a tempObject refering to the existing text object: (strHandle is sent to this function from elsewhere) Dim tempObj As AcadObject Set tempObj = ThisDrawing.HandleToObject(strHandle) But how specifically can I now change the text contained in that...
  6. gnasher

    Edit Existing Text with given handle

    I am fairly new to AutoCAD VBA, so please bear with me. I have 4 / 5 existing lines of text (seperate AcadText entities, each of which I know the handles for) and would like to programatically change the text entry for each. How can I refer to these select each entity with in VBA and change...
  7. gnasher

    Rowsource from External Access Database

    Thank-you, for the record, here is the final code: Dim intColumnCount As Integer Dim strProjectDetails, strJobNumber As String intColumnCount = 0 Do Until recs.EOF strProjectDetails = IIf(IsNull(recs!projectdetails), &quot;<NO DETAILS ENTERED!>&quot;, recs!projectdetails)...
  8. gnasher

    Rowsource from External Access Database

    Thanks all - works like a treat!
  9. gnasher

    Rowsource from External Access Database

    Thank-you Scott, works like a treat, just one more question if you may; Do Until adoRs.EOF ComboBox1.AddItem adoRs(&quot;JobPK&quot;).Value adoRs.MoveNext Loop adoRs.Close If I have 3 fields in the recordset: JobPK JobNumber JobDescription How simple is it to add these 3 as...
  10. gnasher

    Rowsource from External Access Database

    Acad 2000: I would like to create us UserForm with a combo-box whos recordsource is based on data held in a secured MS Access 2000 database. I know how to create the form and place the combo-box on it I know how to connect to this db using adodb and can create a recordset using this method...
  11. gnasher

    2 odd problems

    Neither are life threatening, but troublesome all the same. 1. I have lost the ability to view source of web pages. It used to open notepad to view, not it does nothing. 2. when I click a link to d/l any mp3, I get a text file. I can right click and save as, but not directly click. Maybe...

Part and Inventory Search

Back
Top