Search results

  1. MsLady

    "#Error" shows up on txtbox instead of "nothing"

    Thanks Banana :) I tried this onCurrent, but no luck, still same thing Private Sub Form_Current() On Error Resume Next 'Dim myGT As String 'myGT = Form_subfrmWorkDone.txtGrandTotalTime.Value If IsNull(subfrmWorkDone.Form!txtGrandTotalTime) = False Then Me.GrandTotalTime.ControlSource =...
  2. MsLady

    "#Error" shows up on txtbox instead of "nothing"

    Hello friends :D Can anyone direct me no how to get rid of the text "#Error" showing up on my form field when there's no value. This is the txtbox on my main form and it's looking up its value from another txtbox on my subform. The main form textbox produces #error when there is no record on...
  3. MsLady

    Database corruption Error "AOIndex is not an index in this table"

    Thanks all, i had to spend about 2days trying to figure out the changes i made and redoing them again. thankfully, i always try to keep documentation on big changes. I'll keep your suggestions in mind if i ever the error again...hopefully not. Thanks again
  4. MsLady

    Database corruption Error "AOIndex is not an index in this table"

    Hi Rural Dude :D thanks for replying. Im still looking around online for help files :o
  5. MsLady

    Database corruption Error "AOIndex is not an index in this table"

    I would really appreciate any suggestions. Thanks in advance!
  6. MsLady

    Database corruption Error "AOIndex is not an index in this table"

    I got this "AOIndex is not an index in this table" error with Access 2000 after replicating a database and storing it in the same network folder. I am not able to open my database now, i am afraid 2days work on my forms is lost. I usually have backup, but the last backup i have is 2 days ago i...
  7. MsLady

    what's the best way to start learning .NET

    I have some experience with vba and vb.
  8. MsLady

    VBA code to change the background of a form?

    never mind. got it. Form_frmSearchResults.Detail.BackColor = 13893544
  9. MsLady

    VBA code to change the background of a form?

    what's it? I want to open the same form with different buttons (cos different criteria are attached to those buttons). When i click i want the background to change based on the button. So im asking for just one line of code: What's the vba to change background property of a form dynamically...
  10. MsLady

    Setting criteria for my form (in VBA), why isn't this working?

    ok coool!! that does it. thanks baldy :D
  11. MsLady

    Problem setting a Date range on my query criteria

    Hi Wayne, I get alot of syntax errors. Perhaps i forgot to mention that the query above is being done in the Access query design window?
  12. MsLady

    Setting criteria for my form (in VBA), why isn't this working?

    Does anyone have any idea what to do here, cos i am stuck. I am trying to get a To and From Date as a criteria for my resultsform from this form, and it doesn't seem to work. When i comment out the date criteria (see color red), the form searches fine with the other criteria. Some please help me...
  13. MsLady

    Problem setting a Date range on my query criteria

    I have this criteria which should collect a date range (cboDate and cboDate2), it works well in collecting the date range if i put separate days (like 6/17/2006 and 7/18/2006, it'll collect the data matching those dates), but if i put the same day, say i want to get all the data for 6/17/2006...
  14. MsLady

    TimeElapsed function gives #error on new record only

    LOL... found it!!! qryAlltime :D That was brilliant THANKS GUYS!!!
  15. MsLady

    TimeElapsed function gives #error on new record only

    hmn....still looking so i guess u guys kicked my ElapsedTimeString aside :o RG, still can't find ur secret function ottay..! ;) =IIf(IsNull([timeStart]) Or IsNull([timeStop]),"",IIf(Format([Elapsed],"h")="0",Format([Elapsed],"n") & " mins",Format([Elapsed],"h") & " hours " &...
  16. MsLady

    TimeElapsed function gives #error on new record only

    I love you guys!!! Both solutions work accurately. thanx alot :D RG, even tho it works. u mind if i ask. how you got [elapsed] in there. I don't have a function called "elapsed" and u didn't use my [elapsedTimeString] :eek:
  17. MsLady

    TimeElapsed function gives #error on new record only

    Hi Rural guy, Ive come again :o I am trying to fillin the Grandtotal of all the timeElapsed to show up in the format of Hours, Minutes, seconds... into the txtGrandTotalTime (box at the very top right) can you help me take a look or work ur magic on it? ;) I thought simply making the control...
  18. MsLady

    3 comboxes on form to update subform with data?

    Oh i see! makes sense. thanks for the explanation I think i'll just leave it the way it is since it works perfectly, scared of breaking things here :D...Anyways, it's good to know. Thanks quality guru!! :)
  19. MsLady

    My questionaire table design-normalization! Your thoughts please?

    Okay then, the idea sounds perfect! One table it is! I guess i can do a self join query on the table itself to get the guest for each client. Thanks workmad3 and KenHigg :)
Back
Top Bottom