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

    Setting variable having found it in a HashTable search

    OK. I understand I can change the value in the hashtable, but how can I change the original variable 'Price', using the reference in the hashtable?
  2. tobriain

    Setting variable having found it in a HashTable search

    I'm connecting to an external program to register for some updates to some values. The external program periodically returns updates to a method in my class. I submit a reference id when registering for all the different updates, and the external program returns the reference id I submitted and...
  3. tobriain

    Throughput/Design Problem

    Hello, I hope one of you have found a solution to the following problem before. . . Thanks in advance if you have. I have to implement an interface defined in an external program - I must have a method Notify() in my object toimplement that interface. When there's an update, the Notify()...
  4. tobriain

    Event Firing

    Hello, I hope one of you have found a solution to the following problem before. . . Thanks in advance if you have. I'm receiving events from an external dll (an RTDServer - set up like an observer pattern), and i've a Notify method that's called when there's an update to be collected. I can...
  5. tobriain

    Email through Gmail in C#

    I'm sold on port 587 - it works. Good man, TipGiver. Thanks again, Tom.
  6. tobriain

    Email through Gmail in C#

    Hi AlexCuse, Have tried <user>, rather than <user@gmail.com>, but still no go. Will have to try something else.
  7. tobriain

    Email through Gmail in C#

    Hi AlexCuse, I'm trying to send the mail through SMTP, but I don't think there's any problem with the code, so I'm trying to troubleshoot it. If it'll work in Outlook, at least the port will be correct etc. Alas, it doesn't. I'll have to check if SMTP is blocked for some reason. I'll try it...
  8. tobriain

    Email through Gmail in C#

    I tried a few different ports, but no luck. I think I have gotten somewhere though, because if I try to set up Outlook Express to send or collect mail from my account, I'm getting an error message. . .. The connection to the server has failed. Account: 'pop.gmail.com', Server: 'smtp.gmail.com'...
  9. tobriain

    Email through Gmail in C#

    I have this in the Form_Load method: System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage("sender@gmail.com", "recipient@gmail.com","This is the mail subject", "Just wanted to say Hello"); MyMailMessage.IsBodyHtml = false; System.Net.NetworkCredential mailAuthentication =...
  10. tobriain

    Email through Gmail in C#

    Anyone have any luck sending emails through gmail accounts in C# applications? I can't get it to work. . Thanks in advance, Tom.
  11. tobriain

    Calculations &amp; Events on Array

    I'm storing values in a series of arrays that are updated continously. I'll create a GUI with a series of custom controls to display all the different types of data for each entry. If I want to run some kind of continuous scan or loop, checking for a certain conditions and then update my...
  12. tobriain

    Parent/child controls

    Thanks for your help, guys. So if I was creating an array of groupboxes and an array of textboxes in each of them, that would explain why I could only reference the textboxes in the last created groupbox. So that idea is scrapped. Would I be better off using some kind of dataList or...
  13. tobriain

    Parent/child controls

    I'm setting up a GUI to display data from an RTD server. I have a series of GroupBoxes with some textboxes to display the data that I'm creating in a 'for' loop. The problem is that when I receive an update from the RTDServer, I want to be able to send the data straight back to the...

Part and Inventory Search

Back
Top