Chad Smith
Posts
-
Can I do iPhone development with Windows (Visual Studio) -
Developing software? What's your job title?subatomic particle interaction engineer - Designs schema for interactions between electrons in doped silicone.
-
Software And StuffATI has a DVD Decoder pack that you can install, then use Media Player for DVD playback https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/atiCDwiz.exe[^]
-
Has Anyone Created C# Classes for Win32 API? -
Messenger 8 Beta and the Orange -
which RACK should I buy?I like APC's Netshelter[^]
-
FileStream help! :(If the path is specified by the user then use Image img = Image.FromFile ( @foto );
-
moon junk...Can't find it on ebay, but here's a link to the company performing this stunt http://www.orbdev.com/mooncrash.html?source=OrbDev[^]
-
My new Sprint PCS PCMCIA card!!!Verizon Wireless allows unlimited transfer/time for $99 a month.
-
How do i find if user clik "ok" on my Modal Dialog?Set the OK button's DialogResult property to OK. Then use this code in the main/calling form. frmInput dlg = new frmInput(); if(dlg.ShowDialog(this) == DialogResult.OK) { // Code to run on OK }
-
Print Word DocumentThere is a great example of printing Word Documents to a Fax Device or other specific printer on www.gotdotnet.com. The site is currently down or I would provide you with a direct link. When it is available again just search for SendMSWordDocumentViaFaxExample.
-
Automating Word application in C#object isVisible = false; object missing = System.Reflection.Missing.Value; Word.ApplicationClass WordApp = new Word.ApplicationClass(); WordApp.Visible = false; WordApp.ScreenUpdating = false; WordApp.DisplayAlerts = Word.WdAlertLevel.wdAlertsNone; Word.Document aDoc = WordApp.Documents.Add(ref fileName, ref missing, ref missing, ref isVisible); aDoc.Activate(); WordApp.ActivePrinter = _DeviceName; // Office 2000 format WordApp.ActiveDocument.PrintOut(ref bool_true, ref bool_false, ref missing, ref newFileName, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref bool_true, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing);
-
I need to add an Outlook toolbar to a .NET form?Take a look at this project http://www.codeproject.com/cs/miscctrl/outlookbar.asp