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 bkrike 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 Dherrera

  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...

Part and Inventory Search

Back
Top