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!

Search results for query: *

  • Users: jayy66
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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}...
  4. 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...
  5. 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...
  6. jayy66

    Problem with Crystal Report Viewer

    I have a crystal report viewer embedded in a .Net windows application. The ShowCloseButton, ShowZoomButton, and ShowPageNavigationButtons properties have been set to true. The close button, however, does not seem to be working properly. I have no problem with the other two buttons. They seem...
  7. jayy66

    Close button doesnt work on crustal report viewer

    I hope im in the right forum. I have a vb.net application with a crystal report viewer. The close button has been enabled but nothing happens when the button is clicked. Does anybody know why this is happening? Thanks.
  8. jayy66

    Unhandled Exception

    I have an .net application that will not run on a target machine. I keep getting an error saying "Application has generated an exception that could not be handled" The confusing part is that there is an earlier version of the application that was written by a different programmer that works on...
  9. jayy66

    Apply modifed settings from app.config in windows service

    This may be a lost cause but is there anyway to apply the changes made to an app.config file in a windows service without having to restart the service? I have a windows service that should not ever be stopped, however, one of the requirements is to be able to modify the settings. I tried...
  10. jayy66

    Windows Service Cant Stop!

    I created and installed a windows service on my machine using VS 2005. Well, I accidently set the OnStop property to false and now i cant stop the service. I tried uninstalling it and I recieved a "uninstall sucessful" message but the service is still there. the only thing that happened was...
  11. jayy66

    Keep system.threading.timer from being garbage collected

    Does anybody have any examples of how to keep my timer from being garbage colleted?? (System.threading namespce) 'global variable Dim checkInboxTimer As System.Threading.Timer 'In Class Dim timerDelegate As Threading.TimerCallback = AddressOf Me.SendFaxResponse checkInboxTimer = New...
  12. jayy66

    Alternative to do/until loop

    Hello everybody, I need help replacing a do..loop..until loop. I use the loop to login and out of an email inbox to check for a fax server response. I know I can easily replace it with a timer but the problem is that the loop resides in a thread. Im a little uneasy about putting a timer in a...
  13. jayy66

    POP3 problem

    Currently im using a pop3 component called qqmail. http://www.umailcampaign.com/mailcom.aspx It works fine but when I try to delete a message, it only deletes the most recent message or the one at the top of the inbox. Does anyone know of another pop3 component that I can use or have any...
  14. jayy66

    hit a fax server and check available lines

    Does anybody know how I would hit a fax server and check which lines are available and which are currently in use?? Any help would be greatly appreciated. Thankx
  15. jayy66

    using FaxCom.dll to monitor fax lines

    Hello everyone, Im trying to view ports on a fax server to determine if they are in free or being used. I tried using FaxCom.dll and faxcomex.dll with no luck. Here is my code usind faxcom.dll: Dim faxSvr As New FAXCOMLib.FaxServer Dim fs As FAXCOMLib.FaxStatus...
  16. jayy66

    windows service to monitor email server

    Hello everyone, I need to create a windows service that will monitor the emails on an exchange server. I really dont know where to begin. The service needs to check the server every 60 seconds and parse the text in each email to determine priority. I know how timers work...I've just never...
  17. jayy66

    How to loop through table to get all values?

    ok, I have a stored procedure that gets the dates of each time a document was last signed. It looks something like this: SELECT ISNULL(CONVERT(varchar (8),TreatAuth, 10),'') as TreatAuth, ISNULL(CONVERT(varchar (8),HipaaAck, 10),'') as HipaaAck, ISNULL(CONVERT(varchar (8),FinRespWRI...
  18. jayy66

    Error message "Login failed for user"

    I have a webservice set up that is suppose to access sql server and return a dataset, however, i keep getting the error message below: "Login failed for user ''. The user is not associated with a trusted SQL Server connection. [CLIENT: <local machine>]" The same code works fine in a windows...
  19. jayy66

    Pass dataset from websevice to pocket pc

    Hello everyone, I've been trying to return a dataset from a webservice to a client app on pocket pc emulator. The webservice works fine when i run it on the local host but when i try accessing it on Internet Explorer i get the following error when i hit the invoke button...
  20. jayy66

    using CASE WHEN statement within an INSERT statement

    I was wondering if anybody could help me. My boss wants me to get rid of my If Else statements and use a CASE WHEN statement to use a single Insert Statement to insert data into a table. This is the first time I've attempted to use a CASE expression within a INSERT statement. Here is my code...

Part and Inventory Search

Back
Top