| Thread | Last Post | Replies |
|
| win2003 server IIS | 12 Oct 2006 02:38 GMT | 1 |
ihave setup a windows 2003 sever in my pc and when he ask me for a user name and passsword i didn't give him an password and let the name as administrator . ---> when i try to instal a MVS2003.Net in my pc he ask me to setup(
|
| entering hex format into datagrid backed by int | 12 Oct 2006 01:47 GMT | 2 |
I have the need to enter a hex value IE: 0xffff into a datagrid column that is backed by an int property for a custom object. in other words, I have a class like this: class MyEntity
|
| How to use a class from one assembly into another | 12 Oct 2006 01:09 GMT | 6 |
I want to create a class in a library: public class GetHello { private string aa = "Hello world";
|
| Repetitive XML comments -- what's the point? | 12 Oct 2006 00:24 GMT | 98 |
I often see code like this: /// <summary> /// Removes a node. /// </summary>
|
| SerialPort | 12 Oct 2006 00:07 GMT | 4 |
I am using C# 2005 and System.IO.Ports. private void SendData() { SerialPort m_Com;
|
| Security in windows forms apps | 11 Oct 2006 22:45 GMT | 4 |
I have tried multiple methods of encrypting the connection string. Everyone has made it sound easy. I have encrypted the connection string in the app.config file, code behind, etc.
|
| Accessing DataSet values easily | 11 Oct 2006 22:31 GMT | 4 |
I am wanting to populate several treeviews, one for the <TRs> group and one for the <TGs> group. Is there a simplier way to populate the Treeview than the one I did below? It seems difficult to get to the correct DataSet values.
|
| Script Engine | 11 Oct 2006 21:31 GMT | 1 |
Anybody knows where can I find some information about script engine theory? I have the requirement: Our product has some template files, and there placeholder/variabled embedded inside template (like %CurrentTime%, %HoursRemaining% and so on).
|
| Scale value using double.ToString() | 11 Oct 2006 21:13 GMT | 1 |
Is there a way to get 1000000 to display as 1,000k using double.ToString()? -Joe
|
| Htmp parser | 11 Oct 2006 19:59 GMT | 3 |
I'm developing a information extraction from web, i'm use HTML --> DOM tree - >> information blocks. Do ayone suggest me about idea ? Anyone have resource about HTML Parser (Documents, source, samples...)
|
| getting Token privilages using C# | 11 Oct 2006 19:55 GMT | 1 |
I want to get the list of privilages set on process token using C#. Please let me know. Thanks Ramesh
|
| Problems with code execution on Mobile devices | 11 Oct 2006 18:32 GMT | 2 |
Hello fellow developers, I'm hoping someone out there can steer me down the right path with this little conundrum I have, because I am getting frustrated more and more by the minute. I have a feeling it has something to do with
|
| Place of BeginTransaction in code | 11 Oct 2006 18:08 GMT | 20 |
Consider this code SqlConnection oConn = new SqlConnection(AccountsConnectionString); SqlCommand cmdInsert = new SqlCommand("UpdateQuery");
|
| Need design for calling a method at regular intervals | 11 Oct 2006 17:50 GMT | 4 |
In our app, we need to collect data at regular intervals (4, 8 or 16 seconds - user settable). The collection happens in a background thread. My first approach was to do the collection, which takes about 0.5 seconds, then calculate how much time to sleep until the next
|
| serialPort not works? | 11 Oct 2006 16:09 GMT | 4 |
Iam trying to send AT commands to the device. if (serialPort1.IsOpen) serialPort1.Close(); serialPort1.Open(); byte[] buffer = ASCIIEncoding.ASCII.GetBytes("AT");
|