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 Mike Lewis 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. Snoozer654

    SMTP Usage in C#

    Thank You
  2. Snoozer654

    SMTP Usage in C#

    Here is the error: C:\Documents and Settings\User\My Documents\Visual Studio Projects\TravelResources\Form1.cs(8): The type or namespace name 'Mail' does not exist in the class or namespace 'System.Web' (are you missing an assembly reference?) and this is the offender: using System.Web.Mail...
  3. Snoozer654

    SMTP Usage in C#

    I have been trying to use the smtp server class but am unable to get even started. My problem is that the documentation states I must use: using System.Web.Mail This gives me a compiler error. This silly issue has been giving me heartburn for about a week now. Anyone have any ideas?
  4. Snoozer654

    Create graph in Excel with C#

    This is a small Excel Example that I've created. The user must have Excel installed on their computer. You, the developer, must have the Excel Com object 11.0 included as a reference. The code should be fairly simple to follow. Enjoy! using System.Reflection; Excel.Application oXL...
  5. Snoozer654

    Office Update Error

    Word does not function. When Word is executed the "Installing" message comes up and then errors out.
  6. Snoozer654

    Office Update Error

    Is detect and repair a seperate program on the CD's? Windows is currently up to date. SP2 included. The user cannot uninstall Office from the control panel as there is an package error. The Microsoft Office Update is where the problem started. FYI this is Office XP on the Windows XP Home...
  7. Snoozer654

    Office Update Error

    I get the error "Office Update is unable to check for office updates" when trying to update Microsoft Office XP. There are several suggestions but none seem to be true and applicable. Now when I try to run any office application I get an error message that states the office .msi files are...
  8. Snoozer654

    Convert string to integer..

    Good point: string strVariable = "3"; int intVariable = 0; if ( strVariable == "" ) { strVariable = "0"; intVariable = Convert.ToInt16( strVariable ); } else intVariable = Convert.ToInt16( strVariable );
  9. Snoozer654

    Convert string to integer..

    Try this string strVariable = "3"; int intvariable = Convert.ToInt16( strVariable );

Part and Inventory Search

Back
Top