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 Mike Lewis 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. cjLiteStep

    Query expression to include a <CR> and <LF>

    thanks link9 i gave it a quick try but no go; i'll be working on though cj
  2. cjLiteStep

    Query expression to include a <CR> and <LF>

    i am trying to write a query expression to put the name and address fields on an invoice report. i am writing an expression so blank fields won't take up a line ( i just use iif and isnull ) but i can't figure out how to add a carriage return and linefeed; it doesn't seem to like vbcrlf or...
  3. cjLiteStep

    query to find records where the date in a field is over 30 days old

    i guess it would be easier to know if you pasted the code from the SQL view cj
  4. cjLiteStep

    Designing an INVOICE system

    I am looking for some guidance in setting up an invoice system. I want it to be as maintenance free as possible. The products vary from courses (with different fee structures within each course) to simple physical products to conference registrations also with many variables to membership dues...
  5. cjLiteStep

    Problems with dates... 13/01/2000 does not equal 01/13/2000

    also note with access when you enter a date such as 1 13 00 instead of 13 01 00, because there is no 13th month, access automatically enters it as jan 13 so sometimes it will autocorrect an input error, leaving you with an incorrect date
  6. cjLiteStep

    When i click on a LABEL, what code can i use to determine which label

    jerry thanks for your reply labels in fact do have click and mouse up/down events i trigger however, because a label cannot take the focus it doesn't become the active control i'm saying there must be a way (other than identifying the active control) to determine which control has has generated...
  7. cjLiteStep

    When i click on a LABEL, what code can i use to determine which label

    hi i have many labels on a form, and would like to have a piece of code which determines which label was clicked so i can highlite the text in the label on mousedown and return it to normal on mouseup on each event i would like to run a function which passes the name to a procedure to change the...
  8. cjLiteStep

    Random acts of Access!

    rafe good call so far so good, and even better, if assume i did something i can fix that is causing these things(instead of random happenings) chances of fixing are sure better thanks cj
  9. cjLiteStep

    Random acts of Access!

    After making great strides today, i had an old foe visit. i have numerous fields on a main form and on a sub form that trigger a requery of the subform to reflect changes in a calculation works great except every now and then, the controls on the main form don't trigger the update .. so i have...
  10. cjLiteStep

    "Type mismatch" with recordset

    Well God .. oopps .. i mean Gord that was it, i had mixed up the 2 expamples (one using the with statement, the other not) and my hybrid code didn't work! i won't gush here in a public forum, but you have just opened up the rest of this project for me, as i will be automating a lot of record...
  11. cjLiteStep

    "Type mismatch" with recordset

    here i go again after changing the pecking order of the reference libraries to look like gord's (*** thanks gord ***): VB for Apps Ms 9.0 Object library Ms DAO 3.6 ... OLE Automation... Ms VB for apps Ext..5.3 my little bit of code like this: Dim DB As Database, RS As...
  12. cjLiteStep

    "Type mismatch" with recordset

    hey gord thanks for replying again this time though, i get an error saying cannot find object that looks for an object named "Select tblCourseReg.* FROM tblCourseReg" i like to look at things from different sides, but i'm really perplexed over this "type mismatch" error...
  13. cjLiteStep

    "Type mismatch" with recordset

    holy cow! i finally get to declare a database as a database (thanks) and follow examples to a "T" i think and i get a "type mismatch" error that i just don't see here is the code: Dim DB As Database, RS As Recordset, strTableName As _ String strTableName =...
  14. cjLiteStep

    Dimension as DATABASE

    thank you folks .. both, it magically appears as a valid object!
  15. cjLiteStep

    Dimension as DATABASE

    i am having difficulty dimensioning as database on access 2000; it refuses to accept database as an object type, yet i see it done in examples all the time. what is it that i don't get? thanks for any help cj
  16. cjLiteStep

    Lookup tbl value based on variable set on form

    that looks like the ticket alright thanks gord
  17. cjLiteStep

    Lookup tbl value based on variable set on form

    by way of a form, i obtain a string(strField) value equal to the field name (i.e. [MemNoBook]) in a lookup table ([tblCourseFees]) ... i need to find the value of this field based on the [recordID] in the table. the table is in the open database, but is not open itself. i don't understand the...

Part and Inventory Search

Back
Top