| Thread | Last Post | Replies |
|
| Circular reference | 06 May 2007 23:48 GMT | 4 |
I Have a solution with about 50 projects and each project have References to 1 to n of the projects in the solution. I try go to a project and try to add a reference to another project and I get a Circular Reference" error and cannot reference the project.
|
| Cannot convert from byte* to byte[] | 06 May 2007 20:53 GMT | 2 |
The conversion shold be trivial -- no conversion copy. In essense, both types are pointers to byte array. The difference is purely semantical. unsafe { byte b = 1;
|
| Getting info from excel. | 06 May 2007 19:47 GMT | 3 |
I'm displaying an Excel spreadsheet using a data gird control in a winform using oleDB objects and so far Data is displaying correctly. I'm having difficulties getting cell style information for each cell in the xls file (Excel spreadsheet) .
|
| Inline SQL or stored procs for my C# windows app? | 06 May 2007 16:41 GMT | 15 |
I'm a stored proc guy, but a lot of people at my company use inline sql in their apps, sometimes putting the sql in a text file, sometimes hardcoding it. They don't see much benefit from procs, and say anyway they're are db specific- what if we change from SQL Server to Oracle
|
| XML: empty namespace? | 06 May 2007 16:25 GMT | 1 |
<GTM.Data:GRTMData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:GTM.Data="http://www.pippo.com/GTMData" xsi:schemaLocation="http://www.pippo.com/GRTMData GTMDataSchema.xsd"> w.WriteStartElement("GTM.Data","GRTMData","");
|
| Excellent money making program | 06 May 2007 16:24 GMT | 1 |
Do you want to work for 40 years or more to make $40,000 a year or less just so you can retire on 40% of what wasn't enough in the first place? Imagine owning a profitable home business that you could start TODAY
|
| Optional Parameters | 06 May 2007 15:37 GMT | 6 |
I take it Optional Parameters for functions are not supported in C#.NET. Is there a workaround of some type?
|
| confused abt what to choose! | 06 May 2007 15:30 GMT | 3 |
i want to learn a language and hav options between JAVA and DotNet languages.but i am totally confused abt what to do.as this forum is for DotNet only thats y i m askin y shud i preffer DotNet language like C#.net over JAVA.I am intrested in software and somewhat in game
|
| About foreach statement. | 06 May 2007 15:10 GMT | 6 |
I found these doesn't work: private void button1_Click(object sender, EventArgs e) { string[] tmpstr = new string[] { "david", "bill", "mike" };
|
| Arithmetic Division | 06 May 2007 12:18 GMT | 9 |
Hello, I am using VS2005. I am trying to convert a VB.NET app to C#.NET. The VB app uses a progress meter to indiate how far a file has been read. I use the following assignment statement in VB: Progress.Value = (lFileReadCount / fi.Length) * 100
|
| How to extract all links/url from web page? | 06 May 2007 10:13 GMT | 2 |
For a webcrawler, you need to extract all links from the web page. For normal html anchor tags or any of the src and href attribute on the tag can be easily extracted using ihtmldocument. What about links inside of javascript function like below??
|
| The INSERT statement conflicted with the FOREIGN KEY constraint "FK_ATM_Accounts" | 06 May 2007 07:26 GMT | 3 |
I have two tables accounts and ATM and i am trying to insert a tuple in ATM with accountId as foreign key. But even this simple work,I encounter the following error: The INSERT statement conflicted with the FOREIGN KEY constraint
|
| combo box populated but selectedItem returning system.Data.DataRowView | 06 May 2007 05:31 GMT | 3 |
I have a combo box that is populated by an ole db connection to a ms access table (Valuewave). The column that is used in the table is called waves. The combo box is populated with the correct values, but when I refer to the selectedItem value using WaveItem = cboWaves ...
|
| Newbie question | 06 May 2007 05:14 GMT | 2 |
I am trying to understand what the following code does. More specifically after the :base word I understand that it Creates an Object MembershipUserWrapper to which a parameter of type MembershipUser that will be named mu in the function is
|
| Miscellaneous Newbie questions | 06 May 2007 02:54 GMT | 6 |
No sense in putting each one in a different post. 1. What is the difference between String and string (upper- and lower- case)? 2. Which is preferable, IntVariable.ToString() or
|