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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Dherrera

    Running javascript function from a link in an asp.net calender

    Thanks for replying. Yes, the link will popup a new window with data from the DB. I have the popup working fine with links that not in the calendar but i cant get it to work with the links that are IN the cells of the calendar. i can get it launch the popup from: link.NavigateURL =...
  2. Dherrera

    Running javascript function from a link in an asp.net calender

    Can someone please shed some light on this for me, I have tried using RegisterStartupScript and I cant get it to work. The purpose of this is that the calendar is displaying info from a db and when a link on the calendar is clicked it will open a popup window displaying that info. Thanks...
  3. Dherrera

    setting printer

    yeah, i tried printing and it prints to my desktop printer instead of the network printer. when i stepped through it i think i might have picked up where it going wrong. in the SetDefaultPrinter function the IF statement just automatically goes to the ELSE portion. i dont think that it is...
  4. Dherrera

    setting printer

    i used the code but its not setting it to the correct printer. i keeps the current default printer instead of changing it to what is shown in txtSetPrinter.
  5. Dherrera

    setting printer

    how would i set the default printer to specific printer that i have listed in a text box. the point of this is to force the user to print to our network printers only.
  6. Dherrera

    Instant Messenger Problem

    We've got a win 2000 server with xp pro clients. we have set up the instant messenger server on the 2000 server and for some reason only a few are able to log on to the service. a lot of users are getting the error message stating that their password is incorrect or their username doesnt...
  7. Dherrera

    Need ADO help.

    this is what i have so far but its not working. Private Sub txtExpenseID_Enter() Dim rsa As ADODB.Recordset Dim rsb As ADODB.Recordset Dim DateNow As Date Dim strMonth As String Dim strYear As String Dim temp As Integer Set rsa = New ADODB.Recordset Set rsb =...
  8. Dherrera

    Need ADO help.

    Can someone help me convert the following code to ADO. Im moving my database to sql server. 'This procedure generates the Expense ID with the last two digits of the current year 'and increments each time. The year counter does roll over at the end of the year. Private Sub...
  9. Dherrera

    setting printer

    the error message im getting is: "Invalid procedure call or argument" on the first "Set" line. Could i be missing a reference?
  10. Dherrera

    setting printer

    i dont want the user to have a choice of which printer they print to. users are in different branches and i want they to print to default network printer.
  11. Dherrera

    setting printer

    does the "Set printer" procedure not work in office 2k3? i have this procedure coded that will set the printer to network printer and it worked fine in 2k2 but when i upgraded it stopped working. what gives? here is the code in question Dim tempPrinter As Printer Set tempPrinter =...
  12. Dherrera

    Need to stop form from auto-saving records.

    yes i have a 1-m relationship between the Expense and Notes table. as far the counter on the button i have that coded in the OnLoad event of that form and in also on OnClose event of the frmViewNotes form. ive tried setting the modal property on but that doesnt seem to help. i dont know what...
  13. Dherrera

    Need to stop form from auto-saving records.

    here is "frmExpSnapShot" Its record source is the following sql query: SELECT tblExpenses.ExpenseID, tblExpenses.TotalExpenses, tblExpenses.SubmittedBy, tblExpenses.ApprovedBy, tblExpenses.TotalReimbursement, tblExpenses.Today, tblExpenses.Status, tblEmployees.userLevel, * FROM tblEmployees...
  14. Dherrera

    Need to stop form from auto-saving records.

    TheAceMan1, here is the information you asked for. what actually happens is that the very first time that the frmViewNotes form is opened it creates a blank record but stores the FK in that record. Then when another record is opened and the ViewNotes form is opened it assigns the FK of that...
  15. Dherrera

    User profile is not loading or saving to the server. Please Help.

    the profile was already created and it was roaming and then all of a suddden it stopped working and went to local. the weird thing is that i tried to log on to a different pc with that users logon and it loaded his profile just fine. im completely stumped.
  16. Dherrera

    User profile is not loading or saving to the server. Please Help.

    We have a mulituser environment running xp pro and the server running server 2000. the user's profile status will not switch to roaming even after i changed it manually. i tried deleting the user's profile from the local machine but that didnt work either. has anyone had this problem before?
  17. Dherrera

    Need to stop form from auto-saving records.

    the notes is on a seperate table and has a 1-m relationship with the expense table. im not sure what you mean by the danger when synchronizing the two forms. i thought when opening a form that has related information there is no problem since it is an event that is generated by the access...
  18. Dherrera

    Need to stop form from auto-saving records.

    ive noticed that the first record in the Notes table will always get associated with the current Expense ID when ever the ViewNotes form is opened. so its always changing its related record.

Part and Inventory Search

Back
Top