| Thread | Last Post | Replies |
|
| ComputeHash on large stream | 27 Dec 2006 12:37 GMT | 1 |
I saw that when I use ComputeHash on large file stream the ComputeHash method don't read all the stream first and than hash it , it's read it in chunks (memory performance?) How can I know the chunk size in each read ? and how can I control it?
|
| Converting RAW data to MetaFile | 27 Dec 2006 11:48 GMT | 2 |
I am using a library which returns a byte[] containing RAW data, ie all pixels' color values coded in a byte array without header. I would like to save those data into a JPEG file so I tried to use the MetaFile class. byte[] data;
|
| Adding line to a template word document with C# | 27 Dec 2006 11:15 GMT | 1 |
I've a C# windows application that open a word document (a ready template), and I've a list of customers. I know how to open the document and how to type a line into it, but i can't find how to write the line in a specific location. for example, my doucment looks like this:
|
| avoid easy decompiling | 27 Dec 2006 10:41 GMT | 3 |
Using the .NET reflector tool, i know that a DLL or EXE developed in .NET platform can be decompiled and therefore code is available for all. I would like to know if exist a way how to avoid tools like .NET reflector to decompile your code or at least to avoid people to see
|
| datagridview row background color based on column value in data va | 27 Dec 2006 10:03 GMT | 1 |
I'm populating a datagridview from a data table. I would like to set the back ground color of each row based on a column value in that row. If the value of a column for a particular row is set to 1, then the color of the row is red, 2 color of the row is green, 3 color yellow, ...
|
| comboBox & data binding | 27 Dec 2006 08:13 GMT | 2 |
What is wrong with this code? The values don't show up. private void Form1_Load(....) {
|
| security Exception | 27 Dec 2006 05:43 GMT | 3 |
I am using vs2005 on xp pro machines and i have a variable that is declared as: public string user = SystemInformation.UserName.ToString(); On one of my computers this works well and allows the variable 'user' to be
|
| image resouce not found | 27 Dec 2006 02:49 GMT | 2 |
I'm getting an error when I try to load a form in the designer: <rest of namespace>.Properties.Resources' has no property named 'SearchGo_icon'. When I look at the list of image resources I see the resource VS2005 is
|
| DataAdapter.Update method problem. | 27 Dec 2006 00:19 GMT | 5 |
I've created a very simple data base in Microsoft Access 2003. It consists of only one table called "Students" and it contains 2 information about each student: id-student and name. When I try to manipulate data in database I get an error, here's a sample:
|
| How to make as single execute file | 26 Dec 2006 23:30 GMT | 4 |
I used vs2005 to develop a winform project. How can I make my project as a single executable file?
|
| Reading arguments | 26 Dec 2006 22:35 GMT | 5 |
I am reading a line of arguments from command line,here is an example of such line: convert -d 01/01/07 -n New File 3 -p C:\MyDocuments What is the best way to read it if for example New File 3 (which can
|
| Best method for C in C# | 26 Dec 2006 22:12 GMT | 8 |
So, I am writing an application in C#, and I have some old C code that I want to use. Now, i tried to convert it to a DLL, and while I easily got it working, it didn't work like it was supposed to. The problem, is that there are global structures, with values that change as you ...
|
| dismiss a listbox when mouseclick outside boundaries | 26 Dec 2006 22:10 GMT | 4 |
I have a listbox on my form and I set it to invisible. When a particular button on the form is pressed, I make the listbox visible and allow the user to select from it. When the selection occurs, the listbox is made invisible again.
|
| how to use Store Procedure in VC# 2005 and SQL 2005 ? | 26 Dec 2006 21:45 GMT | 2 |
i want to use Store Procedure for Insert,Update and Delete operation in my c# app, but how to do ?? please give me an example,source or article or ... thanks
|
| Casting a string to float | 26 Dec 2006 21:34 GMT | 5 |
I am rather new to C# and have a problem that will probably seem trivial to most of you... but I hope you can still help me nevertheless.. Via the comport, I read the result of a digital scale... the result is sent as a string like "+0000.23kg", representing the weight in ...
|