Click here to Skip to main content
15,895,538 members
Home / Discussions / Database
   

Database

 
AnswerRe: use mySQL with c# applications Pin
enjoycrack16-Sep-05 1:32
enjoycrack16-Sep-05 1:32 
GeneralRe: use mySQL with c# applications Pin
Sasuko16-Sep-05 4:05
Sasuko16-Sep-05 4:05 
AnswerRe: use mySQL with c# applications Pin
André Ziegler17-Sep-05 11:55
André Ziegler17-Sep-05 11:55 
GeneralRe: use mySQL with c# applications Pin
Sasuko17-Sep-05 23:20
Sasuko17-Sep-05 23:20 
GeneralRe: use mySQL with c# applications Pin
André Ziegler18-Sep-05 1:14
André Ziegler18-Sep-05 1:14 
QuestionConsolidation of database Pin
utsav_verma15-Sep-05 23:07
utsav_verma15-Sep-05 23:07 
AnswerRe: Consolidation of database Pin
Hesham Amin16-Sep-05 2:49
Hesham Amin16-Sep-05 2:49 
QuestionMSDE not connecting in windows 98 Pin
Nilesh Gambhava15-Sep-05 21:28
Nilesh Gambhava15-Sep-05 21:28 
QuestionMSDE client tools Pin
Ahsan Askare15-Sep-05 18:48
Ahsan Askare15-Sep-05 18:48 
AnswerRe: MSDE client tools Pin
enjoycrack15-Sep-05 22:46
enjoycrack15-Sep-05 22:46 
AnswerRe: MSDE client tools Pin
Michael P Butler16-Sep-05 1:54
Michael P Butler16-Sep-05 1:54 
QuestionFastest way to copy table in SQLServer 2000 Pin
mikker_12315-Sep-05 15:46
mikker_12315-Sep-05 15:46 
AnswerRe: Fastest way to copy table in SQLServer 2000 Pin
Alomgir Miah15-Sep-05 17:24
Alomgir Miah15-Sep-05 17:24 
AnswerRe: Fastest way to copy table in SQLServer 2000 Pin
Andy Brummer15-Sep-05 17:26
sitebuilderAndy Brummer15-Sep-05 17:26 
QuestionIs there any one to HELP ME!! Pin
mostafa_h15-Sep-05 8:06
mostafa_h15-Sep-05 8:06 
AnswerRe: Is there any one to HELP ME!! Pin
ACMJ15-Sep-05 8:48
ACMJ15-Sep-05 8:48 
Many ways, all depends on timing... When do you need the value exactly Wink | ;-)

Static variable in form1..
public static int x;<br />
myID = form1.x;

or

Change the form2 constructor, declare a local private variable.
(Note: you can have multiple constructors).
Class Form2{<br />
    private int var;<br />
    Form2(int x){<br />
       var = x;<br />
    }<br />
}

in form1 create as

form2 f = new form2(x);

or

as a property
public int x{get(...)set(...)}

Hope that helps.
GeneralRe: Is there any one to HELP ME!! Pin
mostafa_h16-Sep-05 2:37
mostafa_h16-Sep-05 2:37 
QuestionT-SQL Problem Pin
WDI15-Sep-05 2:09
WDI15-Sep-05 2:09 
AnswerRe: T-SQL Problem Pin
miah alom15-Sep-05 3:44
miah alom15-Sep-05 3:44 
AnswerRe: T-SQL Problem Pin
Shawn_H17-Sep-05 5:20
Shawn_H17-Sep-05 5:20 
Questionconversion of crystal reports to sql server reports Pin
Ashuu15-Sep-05 0:25
Ashuu15-Sep-05 0:25 
Question[Message Deleted] Pin
mostafa_h14-Sep-05 20:54
mostafa_h14-Sep-05 20:54 
AnswerRe: SOS!!! Pin
enjoycrack14-Sep-05 22:48
enjoycrack14-Sep-05 22:48 
General[Message Deleted] Pin
mostafa_h14-Sep-05 23:27
mostafa_h14-Sep-05 23:27 
GeneralRe: SOS!!! Pin
enjoycrack14-Sep-05 23:51
enjoycrack14-Sep-05 23:51 

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.