| Thread | Last Post | Replies |
|
| helpp | 10 Jun 2007 15:12 GMT | 2 |
I'm new to .net technology learning asp.net 2.0. I need a c# code with paging,session,cookies and caching features. please explain the above things with simple login, 2-3 forms. any help in above would be appreciated.
|
| how to break apart regexoptions? | 10 Jun 2007 14:55 GMT | 1 |
I got a bunch of check boxes to represent regexoptions. converting that to one single regexoptions for storing in the database is easy. what about the other way, from database int to regexoptions checkboxes on the form?
|
| restrict field access and force property access | 10 Jun 2007 08:53 GMT | 4 |
This might be a weird one ;0) I want to lazy load some member fields in a class. I had planned on handling this in the Property for the field, think; if(field == null) // load field data.
|
| what is wrong with this? | 10 Jun 2007 08:20 GMT | 4 |
the procedure when executed from c#, it does update or insert but I got result code of -1 return to c# is not successful execution of stored proc 0 or number rows affected? connectionString ="....whatever";
|
| Load DLLs compiled using Mingw | 10 Jun 2007 01:38 GMT | 6 |
Yesterday I just started using Visual C# 2005 Express Edition and I'm trying to load external DLLs. I started out with trying to load just one like so: [DllImport("libtest.dll")]
|
| Properties | 10 Jun 2007 00:18 GMT | 7 |
I have a Queston about Properties vs Public / protected ive read alot where people say dont use public or protected members always use Properties.... i kinda dis-agree with that.
|
| Function for Factorial. | 09 Jun 2007 23:56 GMT | 3 |
How to write a function that will return me the factorial (say in a string) for the any positive integer it takes? When we find a factorial of even say 2000 or a higher number, it will be very big to be accomodated in int or long datatype.
|
| simulating low-bandwith, latency on web service | 09 Jun 2007 23:52 GMT | 3 |
I'd like to create a service-locator\proxy type service that I can use to simulate low bandwith situations and latency issues on the service under test. The request comes from the client, is processed through the proxy to the
|
| How can I reset the contents of my array? | 09 Jun 2007 23:35 GMT | 5 |
I have several arrays that look like this: string[] productsString0 = new string[1000]; After they are no longer needed, How can I reset them as though the program were just started?
|
| using SMO to detach a database | 09 Jun 2007 23:05 GMT | 2 |
so I notice to detach a database you use Server svr = new Server(); svr.DetachDatabase("MyDatabase"); but is there a way you can set where its saved after detaching ? thansk
|
| Bill gates please donate me some money!!!! | 09 Jun 2007 22:42 GMT | 2 |
For a donation, please send money to: BIC bank: PSTBNL21 IBAN code: NL79PSTB0007087561 Other details:
|
| Want to read the information from socket into a struct object directly instead of char buffer | 09 Jun 2007 22:06 GMT | 3 |
I am a newbie in CSharp. In C++ if we want to read from socket into the struct object we directly type cast it as recv(socketid,(char*),&struct_object,sizeof(struct object))
|
| Casting to double in C# | 09 Jun 2007 21:33 GMT | 14 |
Hi guys, I am having a problem with the following code snippet:- double x = (myReader["TimeStamp"]); double y = (myReader["YAxis"]); Resulting in the follwing compilation error:
|
| i need an example | 09 Jun 2007 21:24 GMT | 3 |
does anyone have anything similar to the following that i can use as a sample to get up to speed? tia - mcnewsxp Requirement - Create a system where user will login. There will be two user
|
| Getting the default printer in 64-bit Vista | 09 Jun 2007 20:07 GMT | 13 |
I have used the code below to return the default printer in 32-bit WinXP Pro, but now that I am running 64-bit Vista Business I'm getting an error: using System.Drawing.Printing; using (PrintDocument objPrintDocument = new PrintDocument())
|