Search results

  1. A

    Open Report Macro from subform with subreport

    Would you be able to post a copy of the database??
  2. A

    Open Report Macro from subform with subreport

    I know this might seem like a silly question but.. you never know. If you go back to your original line that worked to open the report without prompts but caused "Error" to be displayed. When you run that macro, is your form open?
  3. A

    Password protect a sheet

    You need to have the code in sheet 2, not sheet 1. This way sheet 1 is always visible but sheet 2 will be useless without the password. (See image for location of where to paste code)
  4. A

    Open Report Macro from subform with subreport

    Does this fix it??? [Reports]![rptCasenoteEntry]![srptCasenotes].[CaseID]=[Forms]![frmMain]![sformCasenotes].[CaseID]
  5. A

    Date/Time Format issue

    FORMAT([DateAdded], "HH:MM") Should show just the time
  6. A

    Limit 'Detail' Lines in Multi-Grouped Reports

    In the query you can use a SELECT TOP n in place of a regular SELECT Would this meet your needs?
  7. A

    Question mde in access 2010

    Under File --> Save & Publish --> Make ACCDE or Make MDE if your opening a file made in A2003
  8. A

    Password protect a sheet

    hmmm.... Private Sub Worksheet_Activate() Dim MYpassword As String Sheets("Sheet1").Select 'here We Move to Sheet1 (Or whatever sheet you want, just change the name) MYpassword = InputBox("EnterPassword") If MYpassword = "123" Then Sheets("Sheet2").Select 'Put the name...
  9. A

    Password protect a sheet

    If you go into the VBA and place this code on the sheet you want protected NOT A MACRO it should do what your asking Private Sub Worksheet_Activate() Dim MYpassword As String MYpassword = InputBox("EnterPassword") If MYpassword = "123" Then ' Else...
  10. A

    Geeting more out of a lookup table

    I agree, I think this would be beneficial to assisting you. (And maybe making some of the concepts a little more clear and understandable)
  11. A

    Geeting more out of a lookup table

    If my Understanding is correct, You are using a lookup table to duplicate data that should actually be it's own table. your "lookup" table should work like this: (not a true lookup table) "Main table" MainID <= Primary Key Species ID <= Forign key Links to lookup Table Species Table Species...
  12. A

    Auto Incrementing Numbers!

    What field type is ID? is it an autonumber field? If it is, this can't work on a record that hasn't been created yet.
  13. A

    Cant beleive they shut down Lime wire....

    Torrents can be Problematic... as with most Pirate software, it comes with an inherent amount of risk. UTorrent might be worth a look. I know many people who have had good success with that. I can’t say that I’m surprised that LimeWire was shut down. It’s the same story as Napster…. It’s only a...
  14. A

    Listbox items selected visual but not via code

    Thanks for all the help, I tried to add to your reputation, but you help me too much. lol :P
  15. A

    Form Design

    You could put a nice little picture there.....
  16. A

    Listbox items selected visual but not via code

    I used a Subroutine in which i passed the parameters and made the record through a DAO recordset.
  17. A

    Listbox items selected visual but not via code

    Oh, and so far is seems to be working. :) thanks!
  18. A

    Listbox items selected visual but not via code

    Yep, I created a New shell, and imported everything as you suggested. And i'm Compiled my code, I was missing some "dim I as integer" lines. So that was nice to get that cleared up. Is there an advantage to using your Execute SQL statement over my Subroutine that I call and pass too????
  19. A

    Listbox items selected visual but not via code

    Sorry for the delayed resposne, I've been sick. Question With Me.List26 For Each varItm In .ItemsSelected db.Execute "INSERT INTO Link_RentalShoes (RentalID, ShoeID) " & _ "VALUES (" & Me.txtRentalID & ", " & .ItemData(varItm) & ");" '...
  20. A

    Listbox items selected visual but not via code

    The Front End should be relativly easy to follow. Just a couple notes... Start By opening the Main form. Then go to Check availability, Select A date and a return date then click on the "Book 'em Dano" (Hawaii 5-0 reference....) button. It will ask you for a customer name, just be sure to put a...
Back
Top Bottom