Forum: C# Aug 4th, 2008 |
| Replies: 8 Views: 784 Your method takes 8 parameters, and you are trying to call it with just two params. Either give it all 8 or override the UpdatePatientDetails() to take 2 parameters |
Forum: C# Jan 31st, 2008 |
| Replies: 2 Views: 1,413 Another thing would be to switch to IE. I know IE fingers owls, but if you switch your default browser, it will show you the page, providing you have IIS running |
Forum: C# Jan 31st, 2008 |
| Replies: 3 Views: 1,779 Ok, sounds simple but how about a child form having a read only property that can hold a string.
Once the child form closes, this property should still be available immediately after.
change
... |
Forum: C# Oct 28th, 2007 |
| Replies: 14 Views: 19,710 Just a suggestion - I code stuff that puts data into MS Office apps - PowerPoint, Excel and Word. You are better of doing it with VB then C#. We do all processing in C# and then use VB to create... |
Forum: C# Oct 26th, 2007 |
| Replies: 2 Views: 3,353 ok, here is an example: data is stored in xml and represents the table, need array list of array lists of xml nodes to do some intelligent sorting
ArrayList _arrMaster = new ArrayList
... |
Forum: C# Oct 26th, 2007 |
| Replies: 3 Views: 3,022 Lets just keep in mind 3.0 is still beta, right? Why would you code on beta?
Infraction is right on the money |
Forum: C# Oct 26th, 2007 |
| Replies: 3 Views: 2,283 ok, in your GetProductsColor() you are populating the combo cmbProductColor - right? I would suggest doing cmbProductColor.Items.Clear(); before adding new stuff or you will append the values... |
Forum: C# Oct 26th, 2007 |
| Replies: 2 Views: 7,251 ok, quick and dirty, to be removed before building release - used to help me in my student years. Last line of code is :
Console.ReadLine();
that will wait until you kill the console. |
Forum: C# Oct 26th, 2007 |
| Replies: 2 Views: 7,875 if you are doing console, it should work like this: string _sAppPathName = Process.GetCurrentProcess().MainModule.FileName;
string _sDataFilePath = _sAppPath.Substring(0, _sAppPath.Length -... |
Forum: C# Aug 1st, 2007 |
| Replies: 3 Views: 3,191 How about this:
string g = "12 + 3";
string[] MyInts = g.Split('+');
ArrayList RealInts = new ArrayList();
for(int i = 0; i < MyInts.Lenght; i++){
... |