all groups > c# > november 2007 > threads for sunday november 11
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
VS.2003 and /win32res
Posted by Blue Streak at 11/11/2007 11:36:07 PM
Hi, Folks!
Is there a way to configure VS.2003 to add the parameter "/win32res"
when it is compiling a project so that you can specify your own Win32
resource file? I know that VS.2005 has this setting under project
properties but can it be manually added to VS.2003 somehow?
TIA...
... more >>
Custom Thread Pool in c#
Posted by Venkat at 11/11/2007 10:50:38 PM
Hi,
I am working on an application (developed using c#2.0) which needs to do a
big job and when you start the job in a single thread it takes long time to
complete. So, we want to break the job and run in multiple threads. I heard
about .Net Thread pool class but it has some limitations like ... more >>
How to open a command prompt using c# coding?
Posted by Priya at 11/11/2007 10:22:01 PM
Hi,
I know that we can open Visual studio command prompt from start menu. But i
have been assigned a task in which i have to do that in coding. So that when
i run the c# program, the visual studio command prompt should open. I have
seen a syntax for opening the windows command prompt.That Goe... more >>
Getting directory
Posted by Rinaldo at 11/11/2007 4:00:46 PM
Hi,
I have a problem to get the directory.
I've tryed:
public void WriteWeb(DirectoryInfo directory)
{
DirectoryInfo[] subDirectories = directory.GetDirectories();
string Map = currentMap; // Global string to local string
string Web = currentWeb; // Global string to ... more >>
VS Upgrade ?
Posted by Jeff Louie at 11/11/2007 3:45:09 PM
Does anyone know if I will be able to upgrade from Visual Studio Pro
2003 to
2008 and will VS 2008 run OK on Windows XP Home SP2?
Regards,
Jeff
*** Sent via Developersdex http://www.developersdex.com ***... more >>
Writing serial port does not work
Posted by Nasif at 11/11/2007 12:38:07 PM
Currently I am writing a program which sends and receives messages
through serial port to a device. I am using C# and Microsoft Visual
studio 2005 for windows program. But my problem is when i try to write
in serial port from my windows a Timeoutexception is thrown. I use
SerialPort class in Sys... more >>
WPF grid sample
Posted by Andrus at 11/11/2007 12:24:40 PM
In VCSE 2008 B2 I created WPF form, added grid an ran it.
Form does not show grid.
Where to find sample which allows to edit object collection returned by
Linq-SQL in WPF grid ?
Andrus.
... more >>
services
Posted by Analizer1 at 11/11/2007 12:20:19 PM
i have some services im finishing up
during there operation 24/7
should there be some doevents() so the garbage collector
can do its thing...
Im not sure how all this works
tks
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Bezier curve
Posted by Peter Morris at 11/11/2007 10:37:54 AM
Hi all
I want to draw a line as if it were being drawn in real-time by a person.
To save lots of data I think that storing 4 points in memory and drawing a
bezier curve would be efficient. What I need to know is, how can I
determine each of the required pixel positions so that I may loop t... more >>
wrapping text in datagrid
Posted by ireallyneedtoknow2007@yahoo.com at 11/11/2007 10:36:34 AM
hello I am trying to wrap the text in the contact_email cell of a
datagrid in asp.net 2.0 and tried many variations of the code below.
the asp:TemplateColumn HeaderText="Email" wraps as expected but I
cannot get the asp:BoundColumn Visible="False"
DataField="contact_email" field to wrap at all.
... more >>
MaskedTextBoxColumn properties cannot be set using visual editor
Posted by Ali at 11/11/2007 6:23:19 AM
Hi,
In the sample presented by Microsoft for "DataGridView Custom Column"
that represents a MaskedTextBoxColumn, it seems it has a problem in
setting properties of maskTextBox using visual tools(Editing
DataGridview's columns visually), that it stores null values after
changing the properties... more >>
How to read exchange inbox with c#
Posted by DavidE at 11/11/2007 5:31:00 AM
Hi,
I have to write an application that run once a day that can read all new
mails on an exchange special inbox. Then I have to get the
subject,attachments,date etc from each email .
How can I do it ?
I use vs 2005. We have exchange 2003 .
Thanks,
David ... more >>
Passing an array of structs to unmanaged dll
Posted by Alexanderfe at 11/11/2007 5:11:01 AM
Hi, I have a C# program that uses an unmanaged dll that has a function
similar to the signature below :
void f(out MyStruct[] arr, out int num); // num = actual array length returned
The array must be allocated (with known max length = 10) before the call to
the dll function (the dll just ... more >>
Exposing C# functions as COM interface
Posted by Sharon at 11/11/2007 4:29:00 AM
Hello Gurus,
I need to expose some function to accessed via COM interface.
I know the .NET/C# but I don't know enough about COM.
How do I expose some C# functions as COM interface?
Any code sample will be very much appreciated.
---------
Thanks
Sharon... more >>
getting menu items
Posted by Adam Right at 11/11/2007 1:23:24 AM
is it possible to get the all MenuStrip, ToolStrip and all sub menu items,
without using reflection?
... more >>
|