Click here to Skip to main content
15,887,083 members
Home / Discussions / Database
   

Database

 
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[Message Deleted] Pin
mostafa_h15-Sep-05 1:08
mostafa_h15-Sep-05 1:08 
GeneralRe: SOS!!! Pin
enjoycrack15-Sep-05 1:22
enjoycrack15-Sep-05 1:22 
GeneralRe: SOS!!! Pin
Christian Graus15-Sep-05 16:05
protectorChristian Graus15-Sep-05 16:05 
GeneralRe: SOS!!! Pin
enjoycrack15-Sep-05 16:46
enjoycrack15-Sep-05 16:46 
GeneralRe: SOS!!! Pin
mostafa_h16-Sep-05 3:00
mostafa_h16-Sep-05 3:00 
GeneralRe: SOS!!! Pin
enjoycrack16-Sep-05 3:08
enjoycrack16-Sep-05 3:08 
QuestionJoins Pin
Member 225251214-Sep-05 1:49
Member 225251214-Sep-05 1:49 
AnswerRe: Joins Pin
Frank Kerrigan14-Sep-05 2:09
Frank Kerrigan14-Sep-05 2:09 

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.