Search results

  1. A

    Security - BlowFish 448bit Encryption

    Thanks I couldn't remember Where I got that it's been on my HD for a while, I originally used the c++ version!
  2. A

    Security - BlowFish 448bit Encryption

    This is fixed with the 'Monroeattorneys.net' download
  3. A

    Security - BlowFish 448bit Encryption

    If anyone is looking for simple security thats not dealt with by access then here'e what your looking for, I was looking for this for a couple monthes now that I found it I thought I should share incase anyone else is looking for simple database user security This I quickly put together but is...
  4. A

    Converting 97 to 2000 problems

    thanks I'll try
  5. A

    Not saving!!! Lost all my work today

    Uhhh make sure the database isn't read only And Updae your AV Definitions
  6. A

    Converting 97 to 2000 problems

    I recently converted a working Access 97 Database to Access 2000 but I am haveing problems debugging it it won't stop at all or if there is an error it won't let me know..... I created a blank 2000 db with a form with one button and it seems to stop correctly Please Help
  7. A

    easy way to execute SELECT sql? (via VBA)

    Sorry I thought it would work since we use a very similar vbs to "view" items here at work
  8. A

    Visual Basic Editor won't stop calls

    Ahhh Ha It won't even display errors.... So how do I change the Runtime Debugger????? it needs to be the msvba debugger
  9. A

    Generate Automatic Number

    you could have a simple query to ask the SQL database or Access DB that has WHERE invno= Like("RPI0306*") and count the returns! since your starting at 000 that means you next value would be how many you currently have (001)
  10. A

    easy way to execute SELECT sql? (via VBA)

    try this: Dim nameToFind As String Dim db As Database Dim rs As Recordset Dim vSql As String nameToFind = "ME" Set db = CurrentDb vSql="SELECT * FROM tblTable WHERE name = '"& nameToFind &"'" Set rs =...
  11. A

    Visual Basic Editor won't stop calls

    'breakpoints will not work anywhere in this code and I mean anywhere Private Sub Form_Timer() Dim db As Database Dim rs As Recordset Dim rs2 As Recordset Dim rs3 As Recordset Dim vsql As String Dim...
  12. A

    Sql??

    I have MySQL and want to know if there is a way to get MS Access to work with it?
  13. A

    Visual Basic Editor won't stop calls

    When I put a stop in a program MS VB Editor will not stop the Script it just keeps running is there a fix for this??
  14. A

    Outlook

    I have two calanders in microsoft Outlook one is in a Personal Folder and one is on the server is there any way to Syncronize them??
  15. A

    Adding Outlook tasks from Access

    I have a large database, if I want to give someone an assignment I send it through access... internal message system. I am wondering if there is a way to make access add the assignments in outlook
  16. A

    Windows / Access vs Linux /OpenOffice

    I currently have microsoft Windows 98 thru xp and office 97-2000 well My friend told me that linux has a free office program called open office and I was wondering which is better, and if Open office has a program like MS Access Thanks
  17. A

    Office Upgrade Corruption??

    I am slowly upgrading from Office 97 to Office 2000 but on the computers that have 2000 after converting the 97 access db to 2000, users can no longer see certain subform pages?? is there a way to fix this?
  18. A

    word macro help

    yes you can access the printer by \\IP address here
  19. A

    Deleting Record Error

    Yes thats a sub procedure it enters data into a log field with data on what is happening here! But without that I still get the error
  20. A

    Deleting Record Error

    I have a delete button on my form and every time I click on it, it gives me an error On Error GoTo cmdDeleteMessage_Error If IsNull([DataID]) Then Exit Sub If MsgBox("Are you sure you wish to delete this record?", vbQuestion + vbYesNo, "Confirm Delete") <> vbYes Then Exit Sub...
Back
Top Bottom