Search results

  1. A

    HELP! Access size is ungodly!

    I have an access database front end I'm trying to shrink in size, it is 200MB on a good day! If I create one of the forms from scratch or copy and paste the content of the form the file increases by about 100K Max but if I import that form the file increases by 33MB, This also Happens if I try...
  2. A

    Smartcard/Certificates

    I'm working on creating a database that reads name/company information off a smart card/certificate. Has anyone used the PC/SC API in VBA before, if you have an example on how to do it this would be greatly appreciated!
  3. A

    Should Be Shot

    Dude My cell phone Sucks.... Sprint.... but the 240px x 380px screen is nice
  4. A

    DSUM output strange

    Because It needs to be versatile I'm going to need to add a total for it based on another field record called HourTypes I need to add OpenOffice Hours only and Client Hours in different areas
  5. A

    DSUM output strange

    I am using a DSUM in a report to calculate a total number of hours worked... This is the Data I'm trying to computate: ID FileNo Date Worker Hours 197708 1005F 6/1/2004 DJC 1.5 197709 1001F 6/1/2004 DJC 2.5 197710 20162 6/1/2004 DJC 1.5 197711 1004F 6/1/2004 DJC 1.5 197712 1002F 6/1/2004 DJC...
  6. A

    Store Multiple Booleans in an Integer

    I'm trying to store multiple booleans in one integer... thats easy Option 1 = 1 Option 2 = 2 Option 3 = 4 Option 4 = 8 Option 5 = 16, etc.. but I don't want to have to go though every single number in the known universe making sure that the third option of a 3 option integer is true so there...
  7. A

    Store Multiple Booleans in an Integer

    I need a way of retrieving multiple booleans from one integer and I wasn't sure if there was a better way then this: Dim totalOfOptions As Integer Dim currentOption As Integer Dim currentAmount As Integer Dim currentTotal As Integer Dim totalOptions As Integer While...
  8. A

    Screen White-out

    I have also experienced similiar problems.. I normally find out it is a problem with that subform or subreport. How I have fixed it is open the subform or subreport and look for any errors in opening if you don't get any goto the design view for that sub form or sub report and Look at where it...
  9. A

    Outlook 2000 Tasks/Schedule

    *bump* Help Please
  10. A

    Make MDE Error

    Thank you Yup that was it I had deleted an ole
  11. A

    Make MDE Error

    I have tried to compile a mdb into a mde but every time I do now I get an error: Microsoft Access was unable to create an MDE database. I have recently done two thing I just ran Ad-Aware and removed 47 pieces of ad software and I removed a RTF OLE from a form. Now I'm getting that error, Help...
  12. A

    Word OLE??

    is there a way to get an on key event from it?
  13. A

    Criteria Help?

    I have a query and it keeps saying it's to "Hard" for the computer So I added another column in the query and had it's value set to a [Forms]![mangReviewClients]![From] but how do I tell the Criteria to look in it's own query???
  14. A

    Outlook 2000 Tasks/Schedule

    We use a public folder with Schedules and would like are local tasks and public schedule to appear on the same page. like when you click on your local calender
  15. A

    Word OLE??

    is it possible to have a word ole in a form, so that you can type like in word?
  16. A

    Anybody use Rich TextBox Controls?

    Sorry 'bout that, I didn't know how to access the ascii values And 'bout the setting the boolean to false I figure better safe then sorry since I'm used to using C++ in which it equals whatever that empty memory contained sometimes true sometimes false oh yeah and bIgnore is a Integer thats...
  17. A

    Anybody use Rich TextBox Controls?

    hat last one had a couple lockup bugs heres the revamped code: Function decode(sStr As String) As String Dim sTemp, sChar, sChar2 As String Dim iCurrentPos, bIgnore, bCmdLine As Integer iCurrentPos = InStr(1, sStr, ";}}", vbTextCompare) + 3 sStr = Mid(sStr, iCurrentPos)...
  18. A

    one big report

    I'm not completely sure if appending will do the job... if you read the RTF data it uses a '}' character to signify the end of the display area so appending data after that may not work
  19. A

    Anybody use Rich TextBox Controls?

    Well I have a function that removes the tags I use it to store separate data for reports, unfortunitaly it has no formatting :| Just download it and try it
  20. A

    Delete Record Selected In Combobox

    If you want I could post some pure code that would delete the record but it involves using the Database and Recordset Variables
Top Bottom