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

    Automatically add initials, date & time to a notes field

    I have a form with the following fields: --------- - AcctNum - txtAppendField - btnAppend - txtNotes --------- Here's what I need to be able to do: 1) Have user type in comments/notes into the AppendField, 2) Then click the btnAppend button & have the text added to the top of the txtNotes. 3)...
  2. gbs01

    Access Module question. Run-Time error 2520

    Here is my code behind a command button: ------------------------------ Private Sub Command96_Click() Dim X As Variant X = InputBox("Please enter password to open this form:", "PASSWORD Prompt") If X = "5491632" Then DoCmd.OpenModule Module1.Appaoo Else MsgBox ("Sorry, you cannot update...
  3. gbs01

    Choosing Multiple items from a Table

    I know this is simple but I'm unclear how to.... ---------------------------- Have the following 2 tables: ------------------------------ tblBusinessAgreement BusinessID BusinessName FeatureID (linked to tblFeatures) tblFeatures ------------------------------ FeatureID...
  4. gbs01

    Trouble with Multiple Search Field on Form

    I have the following code behind the DblClick on frmSearch: -------------------------------------------------------- Private Sub SearchList_DblClick(Cancel As Integer) On Error GoTo Err_SearchList_DblClick Dim db As DAO.Database Dim rst As DAO.Recordset DoCmd.OpenForm "frmMainCustomerWTabbed"...
  5. gbs01

    Adding a Wildcard Searchto the Combo Box Wizard code.

    I have a Main form with NAME1 & ACCT. I currently have a LookUp box that allows you to start typing the NAME1 and it Finds the customer. When you click Enter, that Customer's information displays fully on the Main Form. This is the code created by the LookUp Wizard...
  6. gbs01

    Search a String & Return Top Values

    I have a text file that is pulled off my router. I would like to : 1)Query my data listed below and, 2)Return a Query that ranks the data based on the ip address in the string. For example, I need to know that this - ip address showed up 950 times - another ip address showed up 500 times, -...
  7. gbs01

    Making the & show up on my Report label ?

    I cannot get the & to show up on my report label? My label says: ------------------------------ Save to H:\Billing\Switch CDRs - Use fielnames 14&16IN & 14&16OUT ------------------------------ But on the Report it prints out: ------------------------------ Save to H:\Billing\Switch CDRs...
  8. gbs01

    Import text file using Wildcard ( *.csv )

    I have the follwoing code behind my command button: ---------------------------------- Function Appaoo() On Error GoTo Appaoo_Err DoCmd.OpenQuery "001qryDelOldRecords", acNormal, acEdit DoCmd.TransferText acImportDelim, "14&16IN Import Specification", "14&16IN0205Template", "H:\Billing\Switch...
  9. gbs01

    One Button Export of Query to Fixed Length Text File

    I have my qrySwitchDataExportToText ready to go. I can run the query, then choose File/Export/TextFile/ExportAll/ and choose my export spec called QrySwithDataExportToText and I get my text file sent to my desktop. This works great! , But I'm not having any luck adding it to my form buttons...
  10. gbs01

    If-Then-Else help needed in my Query

    I have the following field in my tblTest SS7 --- 2 2 2 1 1 1 Heres what I need for my query field: ------------------------------------- If SS7 = 2 then make OrigOCN = 0000 and TermOCN = 9915 Else make OrigOCN = 9915 and TermOCN = 0000 Note: OrigOCN and TermOCN do not exist in my...
  11. gbs01

    Strip off 4 characters at the end of a Text field.

    I import this text string into my text database field; Field Name : Call Arrival Date Value : 2005-02-28 08:29:14.107 How do I get rid of the .107 on the end? I would like to enter the formula in my query grid. Thanks in advance for your help! jalexander
  12. gbs01

    Date / Time Simple question.

    I have a csv import file with the following fields: Call Arrival Date: Call Completion Date: ----------------------- ------------------------ 2005-02-28 08:29:14.107 2005-02-28 08:34:19.503 How do I get Access to import this as a real Date & Time field so I can calculate...
  13. gbs01

    Help with Simple Update Query

    I have one table called EDIDB. It has 2 fields: ISBN & UPC. Some of the UPC fields are blank. How do I use the query grid to Update the UPC field with the ISBN when the UPC is null. Thanks in advance for your help! jlig
  14. gbs01

    How to Combine User Text Box data to my Hyperlink?

    I have the following hyperlink string: -------------------------------------- http://shop1.gospeland.com/e/advSearch.asp?mode=search&txtTitle= IF+I+COULD+HEAR &selQuickSearch=SongTitle -------------------------------------- I want the user to be able to type a Partial song title in my txtSong...
  15. gbs01

    Automating my Query and Import Specs with a Single button.

    I have an Inventory database that I manually update each week with .csv & .txt files. Here is my current procedure: ----------------------------- 1) Run "delQryAppaoo" - This deletes the old data first. 2) Import "edidb.txt" using Import Spec "APPAOO EDIDB Import...
  16. gbs01

    Automating my Query and Import Specs with a Single button.?

    I have an Inventory database that I manually update each week with .csv & .txt files. Here is my current procedure: ----------------------------- 1) Run "delQryAppaoo" - This deletes the old data first. 2) Import "edidb.txt" using Import Spec "APPAOO EDIDB Import...
  17. gbs01

    Invalid Use of Null ! A Simple Form Question Fix?

    My code below keeps giving me the ERROR 94 : Invalid Null. The debugger highlights : strSong = Me!txtSong -------- Heres my code -------- Private Sub OLEUnbound122_Click() Dim strPrefix As String, strSuffix As String, strSong As String strPrefix =...
  18. gbs01

    Adding a Search Button Image to my Form ?

    I have a Hyper-Link txtSong field in my Access Form that allows me to : 1) Type in a song title, 2) Then when clicked, it opens up my website 3) And displays the web search results for the txtSong entry I want to change this to a Search Button image, placed right below the...
  19. gbs01

    Setting up Data Entry Forms for Medical Database

    I have been given a bunch of Medical documents created in Word. My friend wants an "Electronic" version of these paper documents. Does anyone have suggestions (or sample database) to "convert" these for use in Access? Here's what I have thought so far: 1) Create tables...
  20. gbs01

    Cannot Print Correct Label Qty When Qty is 2 or More?

    I have an Access 2002 Inventory Database and want to print out Barcode Price Labels for each product on a recently received order. 1)I have a query called qryReceivedQtys to get the data 2)I created my Label Report based on my qryReceivedQtys 3)Heres my problem: Labels only print one for each...

Part and Inventory Search

Back
Top