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

    Database (Access 2000) works find at home but doesn't open with 1997

    You can't open a access 2000 version database in access 97
  2. shreked

    Update records from unbound fields

    lachesis here is an option dim dbs as database dim rst as recordset set dbs = currentdb() set rst = dbs.OpenRecordset("SELECT * FROM YourTable WHERE FieldName = '" & me.UnboundTextBox & "'") 'test if it a new record if the recordset is EOF then ADD else UPDATE if rst.eof...
  3. shreked

    access violation (0xc0000005) ? ?

    I seen this before to fix it you require service pack 2 for office 97 you should be able to download it for microsoft site if you have not got service pack 1 you will need to install this first. Cheers Shrek
  4. shreked

    Multiple active copies: "The Save action was canceled"

    Joshua I think your problem is your trying to save the form. Is this line of code for saving your record you have updated if so all you need to do is move the recordset to save a record not the form DoCmd.GoToRecord , , acNext DoCmd.Save acForm, "Transfer NCR"
  5. shreked

    Word File becomes Read-Only on it's own, but

    rokerij I have seen this before it happens when the file is not closed properly like a machine crash or CTL+ALT+DEL. If you shut down the machine that has the file located on it should reset the file let me know if this doesnt help Shrek
  6. shreked

    Linking Tables and create a running total

    mommom what you need to do is refernce the other form here some sample code Private Sub Form_Open(Cancel As Integer) Dim Frm As OLDFORM Set Frm = OLDFORM Me.EndingBalance = frm.EndingBalance End Sub OLDFORM is the form you are coming from Me.EndingBalance is the the textbox name on the new...
  7. shreked

    Null "value" ???

    Amadea, Have you tryed a repair & compact on the database If the code has been working fine i would be looking at the database itself. let me know if this helps Shrek
  8. shreked

    Saving Data After Updating

    Ron If you can't understand the code goto the help file in access and look for "MSGBOX" then click on example click on the example "MsgBox Function Example" this should explain how the code works Shrek
  9. shreked

    Multiple active copies: "The Save action was canceled"

    Joshua can you post the code for how you are editing the records so i can have a better understanding of what you are doing Shrek
  10. shreked

    Using macro in excel, can I delete a worksheet w/out the "click OK"

    Ryan This is how you do it you need to turn them back on after you delete the sheet or you won't get any alerts Sub DeleteMacro2 Sheets("Macro (2)").Select Application.DisplayAlerts = False ActiveWindow.SelectedSheets.Delete Application.DisplayAlerts = true End...
  11. shreked

    list box changed to datasheet form

    smiley what you have to do is refernce the sub form here some sample code for you this should be in the detail form Private Sub Form_Open(Cancel As Integer) Dim Frm As Form_address_subform Set Frm = Form_address_subform DoCmd.ApplyFilter , "Name = '" & Frm.Name1 & "'" End...
  12. shreked

    Deleting from SQL table using a list box as reference

    Here is microsoft fix for the problem http://support.microsoft.com/support/kb/articles/Q190/6/20.asp
  13. shreked

    Missing Lines in Reports

    try reloading to print driver or do a compact & repair on the database see if this helps
  14. shreked

    SQL Help

    What version is the database in?
  15. shreked

    AutoNumber Incrementation

    You can also do it this way delete all the records in the table open the table in design view delete the autonumber field save the table open the table in design view again add the autonumber field back in save the table Your autonumber will be set back to 1
  16. shreked

    Help Excel 97 printing problem

    I have a formatted spreadsheet on my computer in a print preview everything fit on the page. when i open the same spreadsheet on someone else computer on the network it doesn't fit all the columns on the page. We can use the fit to page command as when i do that it comes out to small to fax...

Part and Inventory Search

Back
Top