Click here to Skip to main content
15,909,437 members
Home / Discussions / C#
   

C#

 
GeneralRe: Random.next(min,max) Pin
Luc Pattyn9-Apr-10 2:39
sitebuilderLuc Pattyn9-Apr-10 2:39 
Questioncopi image from picturebox to scalablepicturebox control Pin
aasif aslam9-Apr-10 0:07
aasif aslam9-Apr-10 0:07 
AnswerRe: copi image from picturebox to scalablepicturebox control Pin
OriginalGriff9-Apr-10 0:26
mveOriginalGriff9-Apr-10 0:26 
QuestionHow to filter two columns in bindingsource Pin
crisjala8-Apr-10 23:44
crisjala8-Apr-10 23:44 
AnswerRe: How to filter two columns in bindingsource Pin
OriginalGriff9-Apr-10 0:04
mveOriginalGriff9-Apr-10 0:04 
QuestionAbout the Pop3 Pin
Omkaar8-Apr-10 23:42
Omkaar8-Apr-10 23:42 
AnswerRe: About the Pop3 Pin
OriginalGriff9-Apr-10 0:06
mveOriginalGriff9-Apr-10 0:06 
AnswerRe: About the Pop3 Pin
yu-jian9-Apr-10 2:24
yu-jian9-Apr-10 2:24 
Questionsouth african phone number validation Pin
Morgs Morgan8-Apr-10 23:01
Morgs Morgan8-Apr-10 23:01 
AnswerRe: south african phone number validation Pin
Keith Barrow8-Apr-10 23:11
professionalKeith Barrow8-Apr-10 23:11 
GeneralRe: south african phone number validation Pin
Morgs Morgan8-Apr-10 23:38
Morgs Morgan8-Apr-10 23:38 
AnswerRe: south african phone number validation Pin
OriginalGriff8-Apr-10 23:23
mveOriginalGriff8-Apr-10 23:23 
GeneralRe: south african phone number validation Pin
Morgs Morgan8-Apr-10 23:37
Morgs Morgan8-Apr-10 23:37 
GeneralRe: south african phone number validation Pin
Morgs Morgan9-Apr-10 0:19
Morgs Morgan9-Apr-10 0:19 
GeneralRe: south african phone number validation Pin
OriginalGriff9-Apr-10 0:28
mveOriginalGriff9-Apr-10 0:28 
AnswerRe: south african phone number validation Pin
O.Phil8-Apr-10 23:30
O.Phil8-Apr-10 23:30 
GeneralRe: south african phone number validation Pin
Morgs Morgan8-Apr-10 23:42
Morgs Morgan8-Apr-10 23:42 
QuestionCapture AJAX calls (or data) from webpage Pin
kaytrance8-Apr-10 21:03
kaytrance8-Apr-10 21:03 
AnswerWrong Forum Pin
Keith Barrow8-Apr-10 23:07
professionalKeith Barrow8-Apr-10 23:07 
QuestionSmooth scrolling scrollbars Pin
jabbawok8-Apr-10 14:27
jabbawok8-Apr-10 14:27 
AnswerRe: Smooth scrolling scrollbars Pin
Gaurav Dudeja India8-Apr-10 20:13
Gaurav Dudeja India8-Apr-10 20:13 
GeneralRe: Smooth scrolling scrollbars Pin
N a v a n e e t h8-Apr-10 20:59
N a v a n e e t h8-Apr-10 20:59 
AnswerRe: Smooth scrolling scrollbars Pin
Ravi Bhavnani8-Apr-10 21:43
professionalRavi Bhavnani8-Apr-10 21:43 
Questioncreate public variables at run time Pin
Jassim Rahma8-Apr-10 13:36
Jassim Rahma8-Apr-10 13:36 
I am using the following to save and use public variables:

<pre>private static int? _system_id;
public int? system_id
{
get { return _system_id; }
set { _system_id = value; }
}
</pre>

but now I have many fields from my system_parameters sql server table and i want to save it as public variable.. is it possible to get the field name as public variable name and field value as public variable value so it can be created at run time?
AnswerRe: create public variables at run time Pin
PIEBALDconsult8-Apr-10 14:01
mvePIEBALDconsult8-Apr-10 14:01 

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.