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 Wanet Telecoms Ltd 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: jjones100
  • Content: Threads
  • Order by date
  1. jjones100

    Question on Left Join Query Results

    I have two tables, PendingOrders and SubformTbl. Here is the join: LEFT JOIN SubformTbl ON PendingOrders.PONumber = SubformTbl.PONumber. I would like for the orders in the PendingOrders table to be displayed just once for each of the SubformTbl records. PONumber, Custname, FMS# come from...
  2. jjones100

    Need Help With Subform

    I have a form and 1 subform. Subform has a checkbox that when clicked, will trigger an email to be sent with several of the fields that are located in the subform table. The code is simply: Email = "J.R.J@yahoo.com" Copies = "SJ.R@yahoo.com" SiteName =...
  3. jjones100

    VBA Date-Field keeps displaying 12/30/1988

    Having a problem with this code: Mydate = VBA.Date SQLUpdate = "UPDATE CustomerImports SET SentToBeKeyed =" & Mydate Looks simply, but after I run this code the database table has the value of 12/30/1988 and then when i actual click inside the cell in the table it shows 12:00:07 AM. I have...
  4. jjones100

    Creating Tables

    I am wondering which design would be better for my new tables. In the past I have just had one table with ALOT of fields. I am creating a new db and am wondering if I should split the info into multiple tables. I have a ckt id field that all other fields relate to, such as customer address, ckt...
  5. jjones100

    Accomodating apostrophe in update statement

    Notes are read in from the form: Notes = request.form("notes") I am using the following asp code to update my table: strSQL = "UPDATE Tasks SET " _ & "Notes='" & Notes & "'," _ & "where RecNo like '" & RecNo & "'". I get missing operator when someone enters text containing apostrophes in the...
  6. jjones100

    Help on asp connection string

    Can someone tell me what the problem is with this connection string: <% Set adoCon = Server.CreateObject("ADODB.Connection") adoCon.Open = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("Project.mdb") Set rs=Server.CreateObject("ADODB.RecordSet") rs.open...
  7. jjones100

    Syntax for Updating table

    I am currently updating my db via a form using the following code: Forms!FMSUpdate!Message.Value = "Here it is". What is the syntax to update the table directly instead of going through the form. Thanks
  8. jjones100

    Syntax for updating table CIS = Forms!CISUpdate!CIS#.Value

    I use a screen scraping program to update Access and am currently updating my table via the form with the following code: CIS = Forms!CISUpdate!CIS#.Value. What is correct syntax for updating the table directly? Thanks
  9. jjones100

    Problems with Date Function Displaying previous date

    I am having problems using the Date function. At times it displays the previous date. I have tried using the Now function, but I do not need the time that it includes. The Now function will display the correct date while the Date function displays the previous day. My system date appears to be...
  10. jjones100

    closing access database automatically

    I need to FTP my access database to a webserver several times a day. My problem is that for the upload to work I need everyone to close down the database.It never fails that someone is away from their desk and the ftp will fail because they have left the db up. Is there a way to set a macro etc...

Part and Inventory Search

Back
Top