all groups > c# > march 2007 > threads for saturday march 24
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 31
What is a .vcproj?
Posted by Anil Gupte at 3/24/2007 11:33:22 PM
I have recently installed VC#, VC++ and VB 2005 Express Edition. Someone
had sent me the sln file to load it into C# and so I tried, and I get an
error saying:
"The application for project "C:\...\fbridge.vcproj" is not installed."
"Make sure the application for the project type (.vcpro... more >>
Drag/Drop onto Picture Control
Posted by Jeff Williams at 3/24/2007 10:30:14 PM
I am trying to get the following to work so would like some guidance on
how to achieve what I need.
1. I have a form which has a tab control.
2. On the 4th TabPage I have 5 picture boxes.
3. These picture boxes are normally populated from a file(s) with a set
path and filename.
I have th... more >>
Reflection Design Help
Posted by admin NO[at]SPAM venturetraders.com at 3/24/2007 10:13:37 PM
I am trying to get reflection to work and have been spending today
trying to understand it better. I am stuck and hoping someone could
point me in the right direction (maybe a different way of doing this).
I have several different types (classes) and all have an IsValid()
function. (ie. Coke.... more >>
Pass IMG Number
Posted by Thom Little at 3/24/2007 6:11:43 PM
I need a C# (aspx or asmx) that I pass a string and it returns the string
formatted as an image. It would be something like ...
<img src="http://www.domain.com/sample/123456">
.... where 123456 would be rendered as a graphics image.
Can you point me towards an an example/sample?
___... more >>
Event on an item in a collection
Posted by meyousikmann NO[at]SPAM yahoo.com at 3/24/2007 5:58:53 PM
This will be difficult to explain so bear with me. If anyone is
familiar with Tibco Rendezvous and/or Microsoft Messaging, this may
make more sense.
I've created a hierarchy of objects that looks something like this:
Tibco-->Transports-->Transport
Where Tibco is the overall component tha... more >>
new rows are added to top of DataGridView
Posted by craig.wenger NO[at]SPAM gmail.com at 3/24/2007 4:30:07 PM
I am using a DataGridView to display information stored in classes. I
am linking to the information with the Tag property of the
DataGridView rows. Unfortunately, whenever I set the Tag property,
update all its associated cells, and then add a new row, it adds the
blank row to the top of the gri... more >>
need little help with using multiple threads
Posted by Milsnips at 3/24/2007 3:09:32 PM
hi there,
i created a little test application to send out multiple emails to
addresses, but using threads.
So anyway, what i've got is 1 form with a START button, and a multiline
textbox for recording log output of sending results.
I use the code:
System.Threading.Thread t = new System... more >>
casting WebService TreeNode to C# Client App TN
Posted by djp at 3/24/2007 2:55:59 PM
Hi
I add web reference to my C# client app and call web method that returns
TreeNode.
I tried to cast WebService TreeNode to Windows Forms TreeNode, but without
any effect.
Any ideas?
Thanks
PK
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Windows Form DataGrid Contol, Cell text color problem
Posted by sameerd74 NO[at]SPAM yahoo.com at 3/24/2007 1:16:00 PM
I have a DataGrid with 3 Columns.
I want to change Cell text color of only first Column. How I do that?
Thanks!
... more >>
kill process in .net
Posted by Vinki at 3/24/2007 12:49:05 PM
Hello Everyone,
I am using service controller class to start, stop services on my remote
machine. Is there any way I can also do the kill command for the services
that hung up when I issue the service.stop command.
I know I can use System.diagnostics process, but its giving me error "Acc... more >>
Add new users to SQL Server mdf
Posted by weird0 at 3/24/2007 11:19:44 AM
How can i add new users to the sql server mdf. Since, when i try to
access the mdf it gives me
the following error under the setting "Windows Authentication":
" Could not open default database.Login failed for user AMIRDIWAN
\Administrator"
Alternatively, i tried the other way by keepin... more >>
create a new ActiveDirectorySchemaProperty
Posted by zimmys at 3/24/2007 10:54:20 AM
hello,
i want to create a new active directory schema property. for testing,
i use the following simpy function:
[CODE]
public void createProperty()
{
string cn = "leo8";
DirectoryContext dc = new
DirectoryContext(DirectoryContextType.DirectoryServer,... more >>
Is this a bad design?
Posted by John Jackson at 3/24/2007 7:57:44 AM
Hello all,
I have written a user control for the purpose of displaying certain
data from a data source. Instead of having the control to have access
to the data source directly, the control will raise an event to the
hosting page whenever it needs to refresh the data (e.g. user choose a
diffe... more >>
html to jpg converter
Posted by Grey at 3/24/2007 12:30:47 AM
i have to write a tool to convet html page to jpg. the html have words and
graphic inside. i have no idea to do that. is there any free tool for doing
this or any api i can call because i have to convert many html files in
batch. thanks.
... more >>
Changing "true" and "false" with Enum?
Posted by Jamey Bon at 3/24/2007 12:00:00 AM
As a newbie to C#, I am not sure what I can do about this. I would like to
do something like an Enumeration to use "constants" like Yes to indicate
true and No for false. But since there seems to be no underlying 0 or non-
zero for boolean values in C#, I am not sure how to handle this. Any ... more >>
Newbie: In what order do events happen?
Posted by Jamey Bon at 3/24/2007 12:00:00 AM
So far I have not been able to find a comprehensive listing of in what
order events fire and exactly what they are (with adequate descriptions for
a newbie like me) for C#. I have many questions, like what is the
differnce between a click event and a mouse click event for a given
control. ... more >>
Newbie Q Re: Escape Characters
Posted by Jamey Bon at 3/24/2007 12:00:00 AM
I am using "\n" in string literals and displaying them in a multiline
TextBox Control. I do get a new line, as expected, but every line displays
with a little box like symbol at the end. What is this about and how can I
avoid it?
Thanks,
JB... more >>
C# Newbie has threading problem...
Posted by Christian Stapfer at 3/24/2007 12:00:00 AM
I am in the process of porting a Java program
(a distributed whiteboard) to C# that reads
messages from a socket, and hands received
messages to a Windows Form.
It is multithreaded: let me call the thread
that handles the network side the "networking
thread".
Since I am not allowed to ca... more >>
Newbie to C# with question about signals, interrupts, etc.
Posted by Jamey Bon at 3/24/2007 12:00:00 AM
Here is what I am trying to do:
A button's click event contains some code that does some stuff and takes
about 3-4 seconds to complete. I want to be able to interrupt that code
(and branch to some different code) with a subsequent click of that same
button. As far as I can tell, a new cli... more >>
|