Click here to Skip to main content
15,915,501 members
Home / Discussions / C#
   

C#

 
GeneralRe: constant log file size Pin
Dave Kreskowiak3-Jun-05 3:58
mveDave Kreskowiak3-Jun-05 3:58 
QuestionHow can I disable ALT+F4 closing in a Windows Form? Pin
pubududilena2-Jun-05 22:58
pubududilena2-Jun-05 22:58 
AnswerRe: How can I disable ALT+F4 closing in a Windows Form? Pin
mav.northwind2-Jun-05 23:09
mav.northwind2-Jun-05 23:09 
AnswerRe: How can I disable ALT+F4 closing in a Windows Form? Pin
MoustafaS3-Jun-05 5:07
MoustafaS3-Jun-05 5:07 
QuestionHow to generate SQL Script for Tables with data in a Database ? Pin
pubududilena2-Jun-05 22:32
pubududilena2-Jun-05 22:32 
AnswerRe: How to generate SQL Script for Tables with data in a Database ? Pin
Colin Angus Mackay2-Jun-05 22:46
Colin Angus Mackay2-Jun-05 22:46 
GeneralRe: How to generate SQL Script for Tables with data in a Database ? Pin
pubududilena2-Jun-05 22:55
pubududilena2-Jun-05 22:55 
GeneralRe: How to generate SQL Script for Tables with data in a Database ? Pin
Brian Van Beek3-Jun-05 10:26
Brian Van Beek3-Jun-05 10:26 
just select out all of the values from the first table, go through them row by row and add them to a query, then just write the generated sql to a file from your application.

select * from table_1;

in your code then begin a String query = "create table_2....;"

then for each record returned in your query add it to query like so

query+= "insert into table_2 values (" + value(s) from query + ....");"

Does this help? or am I missing what you are trying to do?

Brian Van Beek
My Blog is Awesome, ok maybe not, but is still fun!!
GeneralConnect crystal report to database Pin
Ercoolz2-Jun-05 20:20
Ercoolz2-Jun-05 20:20 
GeneralRe: Connect crystal report to database Pin
pubududilena2-Jun-05 22:51
pubududilena2-Jun-05 22:51 
GeneralRe: Connect crystal report to database Pin
Anonymous2-Jun-05 23:51
Anonymous2-Jun-05 23:51 
GeneralRe: Connect crystal report to database Pin
Anonymous20-Jun-05 3:11
Anonymous20-Jun-05 3:11 
GeneralImage.FromFile() Pin
Os Sutrisno2-Jun-05 19:20
Os Sutrisno2-Jun-05 19:20 
GeneralRe: Image.FromFile() Pin
Yulianto.2-Jun-05 19:48
Yulianto.2-Jun-05 19:48 
GeneralRe: Image.FromFile() Pin
Os Sutrisno2-Jun-05 20:10
Os Sutrisno2-Jun-05 20:10 
GeneralRe: Image.FromFile() Pin
MoustafaS3-Jun-05 5:10
MoustafaS3-Jun-05 5:10 
GeneralRe: Image.FromFile() Pin
Susan Hernandez3-Jun-05 13:59
Susan Hernandez3-Jun-05 13:59 
GeneralDES decode Pin
Member 13623382-Jun-05 19:14
Member 13623382-Jun-05 19:14 
GeneralRe: DES decode Pin
Mike Dimmick3-Jun-05 0:59
Mike Dimmick3-Jun-05 0:59 
GeneralRe: DES decode Pin
Member 13623383-Jun-05 22:44
Member 13623383-Jun-05 22:44 
GeneraltextBox Pin
picasso22-Jun-05 18:54
picasso22-Jun-05 18:54 
GeneralRe: textBox Pin
Yulianto.2-Jun-05 19:06
Yulianto.2-Jun-05 19:06 
GeneralRe: textBox Pin
Susan Hernandez3-Jun-05 14:19
Susan Hernandez3-Jun-05 14:19 
Generalstand alone any where Pin
ABBASI_RA2-Jun-05 16:23
ABBASI_RA2-Jun-05 16:23 
GeneralRe: stand alone any where Pin
Christian Graus2-Jun-05 16:29
protectorChristian Graus2-Jun-05 16:29 

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.