Click here to Skip to main content
15,892,059 members
Home / Discussions / C#
   

C#

 
GeneralRe: Disable write in comboBox C# Pin
shaunAustin2-Sep-04 23:48
shaunAustin2-Sep-04 23:48 
GeneralThanks Pin
adnanh752-Sep-04 23:50
adnanh752-Sep-04 23:50 
GeneralC# Accessors Pin
carradus2-Sep-04 21:57
carradus2-Sep-04 21:57 
GeneralRe: C# Accessors Pin
leppie3-Sep-04 1:10
leppie3-Sep-04 1:10 
GeneralRe: C# Accessors Pin
carradus6-Sep-04 23:33
carradus6-Sep-04 23:33 
GeneralRe: C# Accessors Pin
leppie7-Sep-04 1:59
leppie7-Sep-04 1:59 
QuestionHow to get information of User? Pin
I am kai2-Sep-04 21:47
I am kai2-Sep-04 21:47 
AnswerRe: How to get information of User? Pin
Sebastian Schneider2-Sep-04 22:44
Sebastian Schneider2-Sep-04 22:44 
string mystring = Environment.UserName;

As for the group: I have no clue.

Try Win32-API or find out if it is in here:

class Sample // MSDN-Sample
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine("GetEnvironmentVariables: ");
IDictionary environmentVariables = Environment.GetEnvironmentVariables();
foreach (DictionaryEntry de in environmentVariables)
{
Console.WriteLine(" {0} = {1}", de.Key, de.Value);
}
}
} // MSDN-Sample

AnswerRe: How to get information of User? Pin
shaunAustin2-Sep-04 23:58
shaunAustin2-Sep-04 23:58 
Questionhow to use datatable Pin
PrasadVarma2-Sep-04 20:04
PrasadVarma2-Sep-04 20:04 
AnswerRe: how to use datatable Pin
sreejith ss nair2-Sep-04 20:50
sreejith ss nair2-Sep-04 20:50 
GeneralRe: how to use delegates? Pin
mav.northwind2-Sep-04 20:35
mav.northwind2-Sep-04 20:35 
GeneralRe: how to use delegates? Pin
mcsbzu2-Sep-04 20:45
mcsbzu2-Sep-04 20:45 
GeneralRe: how to use delegates? Pin
mav.northwind2-Sep-04 21:31
mav.northwind2-Sep-04 21:31 
GeneralRe: how to use delegates? Pin
sreejith ss nair2-Sep-04 20:48
sreejith ss nair2-Sep-04 20:48 
Generaldraw a dynamic polyline join line Pin
luming11223344552-Sep-04 16:43
luming11223344552-Sep-04 16:43 
QuestionCan I draw my system cursor in Direct3D? Pin
redleafong2-Sep-04 16:27
redleafong2-Sep-04 16:27 
AnswerRe: Can I draw my system cursor in Direct3D? Pin
LongRange.Shooter3-Sep-04 7:00
LongRange.Shooter3-Sep-04 7:00 
Generalcapturing keydown events Pin
jtmtv182-Sep-04 12:38
jtmtv182-Sep-04 12:38 
GeneralRe: capturing keydown events Pin
Heath Stewart2-Sep-04 14:47
protectorHeath Stewart2-Sep-04 14:47 
QuestionHow do I unload an assembly Pin
khariv2-Sep-04 11:46
khariv2-Sep-04 11:46 
AnswerRe: How do I unload an assembly Pin
Charlie Williams2-Sep-04 12:45
Charlie Williams2-Sep-04 12:45 
GeneralSingle instance app, file extension problem HELP! Pin
cdengler2-Sep-04 11:15
cdengler2-Sep-04 11:15 
GeneralRe: Single instance app, file extension problem HELP! Pin
Heath Stewart2-Sep-04 11:42
protectorHeath Stewart2-Sep-04 11:42 
GeneralRe: Single instance app, file extension problem HELP! Pin
mav.northwind2-Sep-04 20:31
mav.northwind2-Sep-04 20:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.