You have got to be kidding me. Iraq gets billions in aid from all over the world. His priorities with all that money are protecting himself, building weapons, building palaces, protecting himself... The embargo nothing to do with children dying. Saddam lets that happen so he has a reason to blame the US/UN for all his countries problems. Bill F
bfarley
Posts
-
Iraq to Accept Weapons Inspectors -
HOW TO: Pass Optional Method Arguments from C#Hey, I didn't say it was perfect - just that it could be done. Bill F
-
help me pleazzzzz!!!!!!!!!!!!!!!!!!!!!!!!Wrong forum aside, anytime I see a juvenile subject like "help me pleazzzzz!!!!!!!!!!!!!!!!!!!!!!!!", its the last thing I want to do. To me it means - "My school project is due next week and I just started it, so..." Bill F
-
new line in labelNo multiline property for a label. I think your ref is for a text box. Did you try putting a newline in the string to see what happens? label.Text = "Text" + Environment.NewLine + "More Text"; Not sure if that will work. Bill F
-
HOW TO: Pass Optional Method Arguments from C#Not quite true. C# supports the params keyword, which allows an object[] of user-defined size to be passed as a method parameter. This could be used to implement optional args in a sense. Bill F
-
WorkPlace EthicsMust go to the bathroom to masturbate. Can you believe it? Bill F
-
White House report on Sadam HusseinYou are kidding me right? The UN inspection team in 1999 was about two weeks away from issuing a report stating Saddam had no WMD program and had complied with all UN sanctions. Then his son-in-law defected and told the details of the REAL story about how he had effectively hidden all the evidence and basically made the inspections team look like fools. Time to stop f****** around with this guy. You want a "smoking gun" - it will be a mushroom cloud. Bill F
-
Serial PortThere is an example on MSDN - but I don't have the link handy. No ActiveX, a complete Win32 wrap. It is written in VB however, so you would have to translate it to C#. I'm considering doing that myself, but I'm not sure I could get it right Bill F
-
Accepting TabDid you try KeyDown instead of KeyPress? Are you canceling the event in your handler with SystemEventArgs.Cancel? Bill F
-
Windows Application Design QuestionInteresting article. While I agree there is little point in optimizing for optimization's sake, the real opportunity here is code reuse. Separating your business logic from the interface makes it easier to reuse the code. One has to weigh the benefits against the added complexity Bill F