Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DJKAOS

  1. DJKAOS

    Buttons/Text/Lables aren't showing up when I create a form?

    I'm trying to get Visual Studio to work right.. I installed IIS, and am now able to start a C# ASP.NET Web application.. but when I put buttons and text boxes and stuff on the form and try running it...nothing shows up...lables show up but they dont have any formatting that I put on them...
  2. DJKAOS

    Help with this code.. DELETE statement

    Nevermind, I'm a bozo.... I fixed it.. Private Sub DeleteRecordButton_Click() Dim dbs As Database, rst As Recordset Set dbs = CurrentDb dbs.Execute "DELETE * FROM BREAKS WHERE MainID = " & Me.MainID End Sub
  3. DJKAOS

    Help with this code.. DELETE statement

    Hi, I'm having trouble getting this delete statment to work. here is my function, when you press the button it is supposed to delete the currently selected record. Private Sub DeleteRecordButton_Click() Dim dbs As Database, rst As Recordset Set dbs = CurrentDb dbs.Execute...
  4. DJKAOS

    Need my form to refresh after another form closes

    I have a form and it shows a list of all the records, and there is a button to add a new record.(a new form pops up that allows you to add a new record.) But after the new record is added and the pop up form closes, I want the original form to automatically refresh so that it shows the new...
  5. DJKAOS

    Can't get Averages/Stdev to work in reports.

    Can you not use the Avg? function in reports? it works fine in my Form's but when I make a report with the averages in the footer, it just shows #error on every thing. Thanks for any help
  6. DJKAOS

    Selecting individual records to be in a query?

    Is there any way to put a check box next to a record, and run a query only on records that are checked? How would I do that on a form? Thanks for any tips.
  7. DJKAOS

    Excel Macros..Insert row at end of list?

    That Works Perfect, thank you very much.
  8. DJKAOS

    Excel Macros..Insert row at end of list?

    Thanks, that way seemed to almost work Application.Goto Reference:="ID" LastCell = [A65536].End(xlUp).Offset(1, 0).Address Range(LastCell).Select The problem is that I have my data, then some formulas..then a table below that, and the code you gave me seems to jump all the...
  9. DJKAOS

    Excel Macros..Insert row at end of list?

    Thanks, I just tried that..doesn't work the way I want though.
  10. DJKAOS

    Excel Macros..Insert row at end of list?

    How can I make a macro that will insert a new row at the end of my data? I am able to do it manually, but I want to automate it and add it to a button (the button part I can do I just dont know how to select the last row of my data) Thanks
  11. DJKAOS

    Security: only asks for password on my computer

    I sent you an email...I'm confused about mdw..I dont know what that file is or does or how I made it or anything.
  12. DJKAOS

    Security: only asks for password on my computer

    Here is what I did. I created the database on my computer..then I created a MDE file from that..then I copied it to the server and went to every computer and put a shortcut on their desktops that pointed to the MDE file.(I made the shortcut by right clicking and creating a shortcut.) When I run...
  13. DJKAOS

    Security: only asks for password on my computer

    I set up groups and user accounts and it works fine on my computer but when I copied the database over to the server..and everyone runs a shortcut to that database...I'm the only one that ever gets the username/password prompt...how can I make it so everyone gets the prompt? (also when other...
  14. DJKAOS

    No Object in this control.

    What is Pack it wizard? I can't find anything about it in the help files. I'm using Access 97..it it something new that 97 doesn't have? the file the control uses is COMDLG32.ocx I think and all the computers have it..so I'm not really sure whats going on...or why it works on 2 of my...
  15. DJKAOS

    No Object in this control.

    I'm having a problem with an active X control. its a common control for an Open File window. It works fine on my laptop and one other computer at work, but the other 2 computers I get an error "no object in this control" I dont know why because the ActiveX control is registered I...

Part and Inventory Search

Back
Top