Forum: C# Aug 4th, 2008 |
| Replies: 8 Views: 778 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,404 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,773 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,679 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: Computer Science Oct 27th, 2007 |
| Replies: 7 Views: 1,474 this might be insteresting - sign me up |
Forum: C++ Oct 27th, 2007 |
| Replies: 5 Views: 752 I have just read the whole thing and I am confused as to what do you have to do here. And I am getting sys. reqs from some crazy manages for a living. So you got to count unique vowels? Can we get... |
Forum: Website Reviews Oct 27th, 2007 |
| Replies: 1 Views: 1,110 Actually the theme works for me. I mean it is simple but that does not mean it is not good. Another thing is your choice of shopping cart. I wold not use it, personally, but it's your choice.
... |
Forum: VB.NET Oct 27th, 2007 |
| Replies: 5 Views: 4,309 Well, it depends on your exe's. You said that you already wrote bunch of stuff, so you do have executables - are you refferencing some COM objects? The dll has to come with the executables. There... |
Forum: C++ Oct 27th, 2007 |
| Replies: 4 Views: 974 Well, a student project but at least there was an effort to solve that.
#include <iostream>
#include <string>
int main()
{
double withdraw, deposit, balance, newBalance, amount;
... |
Forum: C# Oct 26th, 2007 |
| Replies: 2 Views: 3,340 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,008 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,278 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,231 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,853 if you are doing console, it should work like this: string _sAppPathName = Process.GetCurrentProcess().MainModule.FileName;
string _sDataFilePath = _sAppPath.Substring(0, _sAppPath.Length -... |
Forum: Website Reviews Aug 8th, 2007 |
| Replies: 4 Views: 922 Could not open it in FireFox for some reason, other then that, looks great. |
Forum: Website Reviews Aug 2nd, 2007 |
| Replies: 13 Views: 4,071 Well after the first time it loads fine, it's the first time that kills it. Here is what it does:
Connection Rate Download Time
4.4K 572.06 seconds
28.8K ... |
Forum: Website Reviews Aug 2nd, 2007 |
| Replies: 13 Views: 4,071 Hi, this looks nice, but takes forever to load on FF. Especially if you have "No Script" installed. As far as explorer goes, it's a bit faster but still too slow for my liking. Check out... |
Forum: C# Aug 1st, 2007 |
| Replies: 3 Views: 3,178 How about this:
string g = "12 + 3";
string[] MyInts = g.Split('+');
ArrayList RealInts = new ArrayList();
for(int i = 0; i < MyInts.Lenght; i++){
... |
Forum: Website Reviews Aug 1st, 2007 |
| Replies: 5 Views: 1,125 I would increase the size of fonts. And the link to the people who have created a logo for you opens up in the same page, maybe play around with "target" attribute? Sitemap is not there yet. Other... |
Forum: Website Reviews Aug 1st, 2007 |
| Replies: 2 Views: 840 Hi everyone. After about 3 years running a pretty successful site I have decided to switch from proprietary shopping cart to osCommerce. Took me about 1 month of work to do what I wanted and... |