Search results

  1. U

    Use older Quickcam software with Logitech Orbit

    If you have a Logitech QuickCam Orbit you might notice the bundled QuickCam software is some how different from it's older versions. I don't know why Logitech had taken away many useful functions from their higher end and newer product. But fortunately the older version software still works...
  2. U

    Code to return domain name?

    Hi, Does anyone know how to return the network name with VB code? I wish I can restrict the use of my application in a special network. I think this is the only way to ensure that my mde file is not copied and used on other places than our company. I can't use user group control because I...
  3. U

    Unknown access behind Skype

    I have been using Skype for voice chat for quite a while. I have my Skype Privacy setting set to "only people whom I have authorized can call / start chat". But to my supprise when I opened the Zone Alarm log file one day I discovered there had been a lot of attemps to access my computer thru...
  4. U

    How would you want your kitten look like?

    Take a look at the website - bonsaikitten.com. They said that is some sort of oriental art. What would you say about it?
  5. U

    Error 2486 on all Docmd

    Here is a strange problem I had never encountered before. I have a form with a few command buttons. One button runs a Docmd.RunSQL code which append some records to a table. Another button runs a Docmd.RunSQL code that delete some records from the same table. The table is a simple table...
  6. U

    Trying to update the records in a continuous form

    The purpose of my code is to update the records that follow the edited one in a continuous form, but I could not make it work. Here is the code simplified: ----------------------------------------------------- Private Sub Adjust_AfterUpdate() Dim rst As Recordset Dim n as Interger...
  7. U

    Check-in / check-out time problem

    I am presently trying to setup a Check In - Check Out system for a factory with about 100 employees to replace the old time-punching machine. I put barcoded stickers onto the old time cards. The old time-punching machine will be replaced by a computer that runs only a Access mde ap. An employee...
  8. U

    Using Barcodes with access

    Barcode is a very efficient tool in database applications, it helps to read and enter data much faster and accurate. Therefore I would like to recommend it to other Access application builders. Here is my experience in using barcodes with Access (Comments are welcome.): There are 2 stages to...
  9. U

    ControlTip Text, some don't show up

    I have in a form 8 command buttons, all have ControlTip Text. 4 of them show Contol Tips when mouse stays over the button, others don't. Anybdy have any idea why this happens? Peter
  10. U

    Cursor won't move when Input Mask is used.

    I had searched several forums but could not find any Inut Mask question similar to mine. Could it be problem in my system only? I am running Access2000 in Windows2000. Here is what's happening, and I don't think it is normal: When I enter data in the text box with Input Mask the cursor stays...
  11. U

    Unexpected validation error message

    I have a text box in a data entry form bound to an NON-INDEXED field. I have put in codes to check for duplicates and to prevent input of duplicate data: If (Eval("DLookup(""[TicketNo]"", ""[TS_Collect]"", ""[TicketNo] = FORM![TicketNo]"") Is Not Null")) Then Beep MsgBox "This ticket has been...
  12. U

    An alternate to pivot table form

    In my attached file I use a report with sub-report to display the stock of garments in different colors and sizes. I have tried using pivot tables and crosstab queries, at last I choose this way because it is formatable. Originally I wished to use a form to do so but could not succeed. I post...
Top Bottom