Search results

  1. M

    query lookup

    does the final price show up on the form.. after you run the first query.. if yes then run the second pass the field from the final price on the form as a paramter that should work i think
  2. M

    Update Query

    Have status field in that table call Sold Status & set it as a bit field everytime an ordered is placed & a turkey is sold... run the update query which would say somethin like this UPDATE tblNAME SET soldStatus = 1 where Id = "get the ID from the Order Form" And when you retrieve data from...
  3. M

    Update bit Field in Access using SQL linked Table

    Here's what i found out....if you change the compatability options under SQL 2000 to SQL Server70 instead of 80 then it works fine.... to get there right click on a data base, then properties, then options & under that u will see a drop down called Compatability Level hope this helps if anyone...
  4. M

    Query wont work unless I copy and past into new one

    Your strSQL_String is empty..enter some select, insert,update or delete statement..then try it.. it should work
  5. M

    Query wont work unless I copy and past into new one

    Your strSQL_String is empty..enter some select, insert,update or delete statement..then try it.. it should work
  6. M

    Update bit Field in Access using SQL linked Table

    thanx Epic There is no bit field with Null Value.. & also i have the default value saved as 0
  7. M

    Update bit Field in Access using SQL linked Table

    Update tblTest set process = 0 where process = 1 or if try Update tblTest set process = 0 where process = -1 both of these queries fail the SQL datatype is a bit thanx M
  8. M

    Update bit Field in Access using SQL linked Table

    also my data type in SQL2000 is a bit
  9. M

    Update bit Field in Access using SQL linked Table

    Yea it works when i use true or false in the query but in all my applications I use 1 and 0 or -1 and 0 for true or false. coz SQL7.0 translates the boolean just fine... but SQL 2000 fails to do the translation So if i start using true or false.. i will have to change all the update queries in...
  10. M

    Latest Date

    I'm sure u set a flag somewhere in the table which tells u if a vehicle was serviced or not..so for ur report just call all the vehicles that have a not serviced flag & those vehicles will have the next service date on them!! hope it makes sense!!!
  11. M

    Update bit Field in Access using SQL linked Table

    Bit Fields are true (-1) in Access but in SQL server i think its 1..but even if it is -1 it still does not work?.. the data translation from Acess to SQL 2000 is not happening!! thanx M
  12. M

    Multiple Instances of Access

    Solution!!! Hi Doc Man, I found the soultion to my problem in this Microsoft Knowledge Base article http://support.microsoft.com/default.aspx?scid=kb;en-us;210111 thanx guys Manoj
  13. M

    Update bit Field in Access using SQL linked Table

    Hi Guys, I need some help to understand this... I have an application in Access 2000(front end) & I use linked tables from SQL 2000(Back end). I have a table test.. I'm tryin to update a bit field from 0 to 1 using an update query. It does not perform the update. "Update tblTest set process =...
  14. M

    Multiple Instances of Access

    Appreciate ur help Doc!!!
  15. M

    Multiple Instances of Access

    Pat Thanx Doc, I'm new here..dunno who Pat is..can u give me his user name so that i can probably email him??
  16. M

    Multiple Instances of Access

    Thanx Doc Man.. for ur reply..here's what i'm havin a problem with... I'm able to open an mde on a machine that has access2000 runtime..when i try to execute the following piece of code i get an error Set myApp = New Access.application myApp.OpenCurrentDatabase("Path") The error is as follows...
  17. M

    Multiple Instances of Access

    Hello Everyone!! Has anyone tried opening multiple instances of Access from within an Access program that is currently in use?? thanx Manoj
  18. M

    Access 2000

    Yea I used my copy of Access 2000!!!
  19. M

    Access 2000

    What does this error mean in Access 2000 runtime "The expression On Click you entered as the event property setting produced the following error:License information for this component not found. You do not have an appropriate license to use this functionality in the design environment" thanx...
  20. M

    open another instance using access 2000 runtime

    Hi guys, this might sound confusing, I have a mde that i created called CS.mde. I open this mde with access 2000 runtime. from within CS.mde i'm tryin to open another access app called NB.mde..which when i try to execute the application bombs on me.. the error that i get is as follows "License...
Back
Top Bottom