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 dencom 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 jayy66

  1. jayy66

    Unable to relay error

    Im not sure about the first question. The pc is not on a different subnet, outlook is configured to use the relay and it does work, the anitvirus is also configured to use the relay and the email address is spelled correct. basically, the user can email anybody from outlook without problems...
  2. jayy66

    Unable to relay error

    I dont know if im in the right forum because i believe this is a configuration issue. I have a VB.NET application that sends emails out to a given email address. the application works fine on all company computers except for one which throws the following error: The server rejected one or...
  3. jayy66

    Time Fields

    Wrong Forum, but if your getting your data from a stored procedure (which im assuming you are) you can format the date from there. Something like 'CONVERT(VarChar(8), TIMESTAMP, 1)' should work. "Bugs are good for building character in the user
  4. jayy66

    Update and Delete Data to and from the Sequel Server

    How are you connecting to the database? "Bugs are good for building character in the user
  5. jayy66

    Duplex printing in crystal report

    I need to set up a crystal report for duplex printing. The printer supports duplex printing and the crystal report was previously set up to print in duplex. Even if the printer settings for that particular computer was not defaulted to print in duplex mode, the report would still print in...
  6. jayy66

    VB6 to VB.NET api call to access registry not working

    I would look into establishing a WMI connection and reading the registry from there. You would still have to pass the admin credentials even though your account has admin rights. "Bugs are good for building character in the user
  7. jayy66

    ASP Redirect After Page Processing

    CreswellNet is right. Ive used Iframes in the past for similar situations "Bugs are good for building character in the user
  8. jayy66

    vb.NET Timer not firing Elapsed time event

    I might be wrong but didnt you forget to call start() in sub main? Public Shared Sub main() Qtimer.Interval = 15000 Qtimer.Enabled = True Qtimer.Start() End Sub
  9. jayy66

    expand or move a field

    Thanks for the reply. Yes if both fields are not null I want to display both fields side by side.
  10. jayy66

    expand or move a field

    I have a crystal report that has two fields loaded from a database onto the report like so: [ {field1} {field2} ] I need to write a formula that will move or expand field2 in the place of field1 if field1 is null. For example if field1 is null the report would look like this: [ {field2}...
  11. jayy66

    Different cpu on Stack Trace

    One more thing, do i have to rebuild the servive in release mode or can I simply remove the .pdb file? Thank you for your wisdom
  12. jayy66

    Different cpu on Stack Trace

    Thanks, for your quick responses. 2005 does create a .pdb file.
  13. jayy66

    Different cpu on Stack Trace

    debug, should I have deployed a release build?
  14. jayy66

    Different cpu on Stack Trace

    I created a windows service on VS 2005. I successfully installed it on a different server but whenever an error is thrown the stack trace returns the location of the computer that the service was built on. Heres what the stack trace looks like: at System.IO.__Error.WinIOError(Int32...
  15. jayy66

    Monitor.TryEnter Error

    I keep getting the following error in my applictaion: "Object synchronization method was called from an unsynchronized block of code." Heres the part of code the error is occurring at: Public SuccessFax As New SuccessFaxCheck If Monitor.TryEnter(SuccessFax, 1000) = True Then...

Part and Inventory Search

Back
Top