| Thread | Last Post | Replies |
|
| Combine byte[]'s | 28 Dec 2005 17:46 GMT | 3 |
What is the simplest way to combine one byte[] with another? for example if i have byte[] header = Encoding.ASCII.GetBytes("this is the header"); and
|
| Control breaks when calling it from another class | 28 Dec 2005 17:44 GMT | 1 |
I am trying to contola progress bar on a form from a method that is located in annother class. when I try and instantiate the form Form1 frm = new Form1;
|
| Simple While statement | 28 Dec 2005 17:27 GMT | 9 |
Hi again, I have this simple peace of code... When xpos or ypos reaches x or y the loop stops. My question is the "while" doesn't support && or & ? If thats the case Imo its a big flaw. I thought I was doing it incorrectly
|
| playing mpeg4 or displaying jpegs using C# | 28 Dec 2005 17:01 GMT | 3 |
What I have is a camera that can either be in mpeg4 format or jpeg format. This camera is hooked up to my router and I can verify that the camera is working using the provided software. What I want to do is play the mpeg4 video using a homemade C# program
|
| Giving user ability to cancel a print job. | 28 Dec 2005 17:00 GMT | 1 |
I am using a PrintPreviewDialog to show a document. Via the BeginPrint event, I open a PrintDialog to let the user choose what pages (and other settings) to print. However, I can't find a way to allow the user to cancel the print command if the 'Cancel' button is pressed from ...
|
| How to get a random long number ? | 28 Dec 2005 16:40 GMT | 1 |
How can I get a random long number ? (nb: Random class allows me to generate only int number, I would like number possibly greater than int.MaxValue)
|
| Thread.Sleep | 28 Dec 2005 16:39 GMT | 12 |
If you want to keep reading the value of a property (10 seconds) that keeps changing, how would you do it. I tried this, but it did not work Thread th = new Thread(new ThreadStart(ReadMe));
|
| ListBox / Typing | 28 Dec 2005 16:18 GMT | 1 |
when user types 012 should go for the 012 and not for the 200 ? listbox: 010 011
|
| "path to executable" of a windows service from a c# application | 28 Dec 2005 16:16 GMT | 4 |
how can I get the "path to executable" of a windows service from a c# application ? I have tried the ServiceContoller class, ServiceBase class with no results...
|
| OleDBConnection.Open() Problem | 28 Dec 2005 15:47 GMT | 2 |
Hello NG ! I would like to open a MS Access Db by C#. I use the following code: string strConnectionText = @"Provider=Microsoft.Jet.OLEDB.4.0; Data
|
| Email application | 28 Dec 2005 15:26 GMT | 1 |
Does anyone have any sample code for sending a simple email message (from Yahoo.com) with no attachments? If not, can you direct me to some site where I can find some sample code.
|
| How to update .net components in an XML Service N-Tier app? | 28 Dec 2005 15:02 GMT | 3 |
I choose windows application mode. Business Layer are written as components .And Use Web Service to contact with database. My question is:When there are new versions of Business components on web server, how can I update the Business components in the clients' machine?
|
| adding control programmatically | 28 Dec 2005 14:40 GMT | 4 |
am trying to add controls (e.g. radio buttons, group boxes) to a windows form in a method which I call from the constructor. However, when I do things like; RadioButton rb= new RadioButton();
|
| Attributes of a file | 28 Dec 2005 14:05 GMT | 2 |
Is there a way to add Comments (right click on a file, in the summary tab this information will be present) to a file in C#. I searched through FileInfo class, but I could not find any properties or methods to add comments.
|
| setting html control property in javascript and page behind code | 28 Dec 2005 13:40 GMT | 2 |
I have a div control on an aspx page. I toggle the display property between 'block' and 'none' client side using the following javascript: function toggleDivOnOff(divID) { var x = document.getElementById(divID)
|