Forum: C# Jan 8th, 2009 |
| Replies: 13 Views: 146,084 Hmmm, perhaps I'm mistaken but there are no 'Excel databases.' I think you simply wish to read from an Excel file > that is, a spreadsheet. In which case, there are probably (or rather must be) API's... |
Forum: C# Dec 13th, 2007 |
| Replies: 5 Views: 781 Is your program the same as the flash application link you provided? |
Forum: C# Dec 13th, 2007 |
| Replies: 5 Views: 781 Hehe okay I'm not sure how to describe this algorithm but of course each of your buttons will have a Click event on it - in this event you'd do the following for the up button:
upCount++;... |
Forum: C# Dec 13th, 2007 |
| Replies: 2 Views: 1,543 Aww man you rock! Thank you so much!!! You're my C# Hero :icon_biggrin: |
Forum: C# Dec 12th, 2007 |
| Replies: 8 Views: 1,499 This was taken from the msdn (http://msdn2.microsoft.com/en-us/library/14akc2c7(VS.71).aspx) site. Hmmm but after looking at your code again perhaps you don't need to use ref :icon_cheesygrin: I... |
Forum: C# Dec 12th, 2007 |
| Replies: 5 Views: 781 Is it the logic you're having trouble with or the C# GUI calls? A ratio can simple be expressed as a faction and thus a real number (i.e. the double data type). So 4:1 is really 4.0/1.0 = 4 and 1:4... |
Forum: C# Dec 12th, 2007 |
| Replies: 2 Views: 1,543 Hey guys, I was wondering: suppose I created a standard console application and but I now want to make the program (well the code behind the program) into a dll file or some other reference object... |
Forum: C# Dec 12th, 2007 |
| Replies: 8 Views: 1,499 I'm new to C#, but it seems to me that surely you'd be able to pass those objects as reference parameters so that changes in your method can reflect on the original object where it is needed. I... |
Forum: C# Dec 11th, 2007 |
| Replies: 4 Views: 756 I'm not sure I fully understand Ramy; so all my classes have a Type. This Type is unique to a class and is similar to the ClassName.class attribute in Java? Except that a Type is implicately... |
Forum: C# Dec 10th, 2007 |
| Replies: 4 Views: 756 I was thinking I'd have to use the Type class but I wasn't sure how I'd get the 'type' of the class into the array. Thanks Remy!! :icon_smile: I was wondering, would the following situation be... |
Forum: C# Dec 10th, 2007 |
| Replies: 4 Views: 756 Hey guys,
I was wondering, in Java the following is allowed:
Class[] classList = new Class[10];
classList[0] = System.class;
Can this be done in C#? |
Forum: C# Dec 8th, 2007 |
| Replies: 4 Views: 2,906 Oh gosh, it's moments like this that I wish I could just use Java. Thanks for the help Ramy! |
Forum: C# Dec 7th, 2007 |
| Replies: 4 Views: 2,906 I'm still a bit lost. I've read that Reflections allow users to read and modify application assemblies and its metadata but I'm still uncertain as to how I would load a class dynamically...
On the... |
Forum: C# Dec 7th, 2007 |
| Replies: 4 Views: 2,906 Hi all, I was wondering, is there also a classloader in C#? I know that Java has it; if there isn't a classloader in C#, how would one load classes during runtime? If there is a classloader, how do I... |
Forum: C# Dec 5th, 2007 |
| Replies: 13 Views: 146,084 Well I've finally figured out how to get Ngpsql to work!! I downloaded the beta version and that came with the correct version of the Mono.Security.dll file. A piece of advice to those that plan to... |
Forum: C# Dec 5th, 2007 |
| Replies: 13 Views: 146,084 I've tested the above connection and there's an error in the detection of a SQLServer... which makes sense since I'm using the wrong provider... I think that 'Network Library=DBMSSOCN' specifies the... |
Forum: C# Dec 4th, 2007 |
| Replies: 13 Views: 146,084 Hi, I'm trying to gain access to a postGres database. I've tried to use Npgsql but I get an error with the Mono.Security.dll file (the version is incorrect > but I can't find v2). So I thought I'd... |