Click here to Skip to main content
15,923,083 members
Home / Discussions / C#
   

C#

 
GeneralRe: Parsing text Pin
BLaZiNiX26-Aug-02 18:20
BLaZiNiX26-Aug-02 18:20 
GeneralRe: Parsing text Pin
James T. Johnson26-Aug-02 18:47
James T. Johnson26-Aug-02 18:47 
GeneralRe: Parsing text Pin
BLaZiNiX26-Aug-02 18:51
BLaZiNiX26-Aug-02 18:51 
GeneralRe: Parsing text Pin
James T. Johnson26-Aug-02 19:02
James T. Johnson26-Aug-02 19:02 
General2 Question related to Socket Pin
BLaZiNiX26-Aug-02 17:01
BLaZiNiX26-Aug-02 17:01 
GeneralRe: 2 Question related to Socket Pin
James T. Johnson26-Aug-02 18:51
James T. Johnson26-Aug-02 18:51 
GeneralRe: 2 Question related to Socket Pin
BLaZiNiX26-Aug-02 18:56
BLaZiNiX26-Aug-02 18:56 
GeneralRe: 2 Question related to Socket Pin
James T. Johnson26-Aug-02 19:29
James T. Johnson26-Aug-02 19:29 
GeneralRe: 2 Question related to Socket Pin
BLaZiNiX26-Aug-02 18:57
BLaZiNiX26-Aug-02 18:57 
GeneralRe: 2 Question related to Socket Pin
Sijin26-Aug-02 19:20
Sijin26-Aug-02 19:20 
GeneralRe: 2 Question related to Socket Pin
jparsons27-Aug-02 3:49
jparsons27-Aug-02 3:49 
GeneralRe: 2 Question related to Socket Pin
Daniel Turini27-Aug-02 6:37
Daniel Turini27-Aug-02 6:37 
Questionhow to set component's ico?? Pin
fftongzhi26-Aug-02 15:24
fftongzhi26-Aug-02 15:24 
AnswerRe: how to set component's ico?? Pin
leppie26-Aug-02 21:29
leppie26-Aug-02 21:29 
GeneralRe: how to set component's ico?? Pin
fftongzhi27-Aug-02 16:44
fftongzhi27-Aug-02 16:44 
GeneralPrevent multiple app instances... Pin
Boris Yankov26-Aug-02 14:36
Boris Yankov26-Aug-02 14:36 
GeneralRe: Prevent multiple app instances... Pin
Nish Nishant26-Aug-02 15:01
sitebuilderNish Nishant26-Aug-02 15:01 
GeneralRe: Prevent multiple app instances... Pin
Richard Deeming27-Aug-02 3:19
mveRichard Deeming27-Aug-02 3:19 
QuestionHow do you set a ComboBox to upper case selections? Pin
Zombies with Coffee, LLC26-Aug-02 12:07
professionalZombies with Coffee, LLC26-Aug-02 12:07 
AnswerRe: How do you set a ComboBox to upper case selections? Pin
Nnamdi Onyeyiri26-Aug-02 12:13
Nnamdi Onyeyiri26-Aug-02 12:13 
GeneralRe: How do you set a ComboBox to upper case selections? Pin
James T. Johnson26-Aug-02 12:16
James T. Johnson26-Aug-02 12:16 
GeneralRe: How do you set a ComboBox to upper case selections? Pin
Zombies with Coffee, LLC26-Aug-02 13:44
professionalZombies with Coffee, LLC26-Aug-02 13:44 
GeneralProperties & and | Pin
Christian Graus26-Aug-02 11:48
protectorChristian Graus26-Aug-02 11:48 
I am working on a wrapper for the XML stuff in C#, and I want to add the ability to easily declare common namespaces. What I'd like to be able to do is have an enum called Namespaces, and do this

MyDoc.Namespace |= Namespaces.XSL & Namespaces.dt;

The question is, if I define a property and make it an int, will my set method get called, will this expand to

MyDoc.Namespace = MyDoc.Namespace |( Namespaces.XSL & Namespaces.dt);

or would I be better to define operator | and operator & for my enum ?




Christian

We're just observing the seasonal migration from VB to VC. Most of these birds will be killed by predators or will die of hunger. Only the best will survive - Tomasz Sowinski 29-07-2002 ( on the number of newbie posters in the VC forum )

Cats, and most other animals apart from mad cows can write fully functional vb code. - Simon Walton - 6-Aug-2002
GeneralRe: Properties & and | Pin
James T. Johnson26-Aug-02 12:15
James T. Johnson26-Aug-02 12:15 
GeneralRe: Properties & and | Pin
Christian Graus26-Aug-02 16:35
protectorChristian Graus26-Aug-02 16:35 

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.