Search results

  1. supercharge

    using a barcode scanner

    Fire the AfterUpdate event of your input box to perform the "enter key" operation. Hope that helps.
  2. supercharge

    Website opens twice

    Don't get a thing! Rephrase please.
  3. supercharge

    Interview Help

    I'd like to learn Cobol too. Any recs on where to find info about it? Thanks
  4. supercharge

    Require answer for option group on form

    Wow, haven't been in here for several days. If you use my previously attached sample, you won't have any problem adding a Close button just to close the form without saving any data. Just a simple DoCmd.Quit will exit Access. The form I have on there is unbound to any table so it won't save...
  5. supercharge

    Opening a Form with a label

    Whenever you're ready, just PM me of it if you refer not to go public.
  6. supercharge

    Opening forms directly (instead of Opening MS ACCESS)

    Yes, one is to create the form in VB and compile it to an .exe application or go here if you like to stick with Access. http://www.access-programmers.co.uk/forums/showthread.php?t=100545
  7. supercharge

    Opening a Form with a label

    Is it possible to strip off all the data and attach it here?
  8. supercharge

    Opening a Form with a label

    I'm not sure what you mean by "working fine". As I'm understanding of what you're trying to accomplish is that you want to display an hourglass, then launch the Search form. When the search is done, change the mousepointer back to normal. At least that's the logic. The original code you...
  9. supercharge

    Restricting Access via Comand Buttons

    You don't even need to ask for password or anything, upon loading the form, get the Windows userID and enable the relevant form for that user only. Of course, this is assuming the db is a shared one.
  10. supercharge

    Opening a Form with a label

    Now try this - Private Sub Option2_Click() 'DoCmd.Hourglass True 'Changes pointer to an hourglass Screen.Mousepointer = 11 ' 0 is normal DoEvents Dim stDocName As String stDocName = "FrmSearchAssembly" DoCmd.OpenForm stDocName 'DoCmd.Hourglass false 'Resets it to...
  11. supercharge

    Opening a Form with a label

    Private Sub Option2_Click() DoCmd.Hourglass True 'Changes pointer to an hourglass DoEvents Dim stDocName As String stDocName = "FrmSearchAssembly" DoCmd.OpenForm stDocName DoEvents DoCmd.Hourglass False 'Resets it to the arrow pointer End Sub
  12. supercharge

    How to startup my form only without Access's default form

    Hi SM00000, Here is what you neeed, go here: http://www.access-programmers.co.uk/forums/showthread.php?t=100545
  13. supercharge

    Viewing All Records

    Have you checked its Cycle property? Is it Current Page, Current Record or All Records?
  14. supercharge

    List Box Question

    Good! now if you can figure out how to embed pictures in a table then there you go.
  15. supercharge

    Viewing All Records

    A form can only display one record a time. To show all records, you can set its Default View to Continous Forms or Datasheet. Continous forms will give you multiple identical forms showing each record on it. Datasheet is like a table-view of your table. Hope that makes sense.
  16. supercharge

    List Box Question

    I'm brainstorming this, how about using a table with two columns and base your combobox on it. One column contains pictures of different colors and the other column contains the descriptions or numbers or whatever you want. Again, just brainstorming. Haven't tried it. I will try later on.
  17. supercharge

    Return Column Header Text on Right Click of listbox

    IMO, You can only accomplish that programmatically. There's no such setting in its property for something like that. A multiple-column listbox only returns its bound-column's value and in turn only is able to give you the header of that column programmatically by using an if-then statement...
  18. supercharge

    Help - Advice Needed

    Still don't get it!!!!!
  19. supercharge

    Opening a MDB via VB

    I'm sorry but open for what, I'm wondering? Tried hyperlink?
  20. supercharge

    How to write to text file instead of viewing data in listview?

    Private Sub cReg_SearchFound(ByVal sRootKey As String, ByVal sKey As String, ByVal sValue As Variant, ByVal lFound As FOUND_WHERE) Dim lvItm As ListItem Select Case lFound Case FOUND_IN_KEY_NAME sTemp = "KEY_NAME" Case FOUND_IN_VALUE_NAME sTemp...
Back
Top Bottom