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

C#

 
GeneralRe: inserting a text box into datagridview Pin
gauthee5-Feb-07 23:44
gauthee5-Feb-07 23:44 
AnswerRe: inserting a text box into datagridview Pin
VirtualVoid.NET6-Feb-07 3:19
VirtualVoid.NET6-Feb-07 3:19 
AnswerRe: inserting a text box into datagridview Pin
Drew McGhie6-Feb-07 4:34
Drew McGhie6-Feb-07 4:34 
QuestionC#.NET with Direct X -> a 3d game ? Pin
Software_Specialist5-Feb-07 22:39
Software_Specialist5-Feb-07 22:39 
AnswerRe: C#.NET with Direct X -> a 3d game ? Pin
bobsugar2225-Feb-07 23:27
bobsugar2225-Feb-07 23:27 
GeneralRe: C#.NET with Direct X -> a 3d game ? Pin
aSarafian6-Feb-07 1:17
aSarafian6-Feb-07 1:17 
Questionhow can i get some values from one table to another table? Pin
Nekshan5-Feb-07 22:17
Nekshan5-Feb-07 22:17 
AnswerRe: how can i get some values from one database to another database? Pin
Colin Angus Mackay5-Feb-07 22:32
Colin Angus Mackay5-Feb-07 22:32 
If the two databases are on the same server then it is quite easy

You can fully qualify table names if you need to
[server].[database].[owner].[table]

[owner] if it is dbo can be omitted.
[server] can be omitted if both items are on the same server.

INSERT INTO destination_database..login
SELECT * FROM source_database..login


If the tables are on different servers then it becomes more complicated as you have to link the servers together first.


Question[Message Deleted] Pin
Nekshan5-Feb-07 21:56
Nekshan5-Feb-07 21:56 
AnswerRe: insert data in database from textbox Pin
Christian Graus5-Feb-07 21:58
protectorChristian Graus5-Feb-07 21:58 
Generalthanx. Pin
Nekshan5-Feb-07 22:05
Nekshan5-Feb-07 22:05 
AnswerRe: insert data in database from textbox Pin
gauthee5-Feb-07 22:05
gauthee5-Feb-07 22:05 
GeneralRe: insert data in database from textbox Pin
Nekshan5-Feb-07 22:19
Nekshan5-Feb-07 22:19 
GeneralRe: insert data in database from textbox Pin
gauthee5-Feb-07 22:34
gauthee5-Feb-07 22:34 
GeneralRe: insert data in database from textbox Pin
Christian Graus5-Feb-07 22:37
protectorChristian Graus5-Feb-07 22:37 
GeneralRe: insert data in database from textbox Pin
Colin Angus Mackay5-Feb-07 23:32
Colin Angus Mackay5-Feb-07 23:32 
GeneralRe: insert data in database from textbox Pin
Christian Graus5-Feb-07 22:24
protectorChristian Graus5-Feb-07 22:24 
AnswerRe: insert data in database from textbox Pin
Colin Angus Mackay5-Feb-07 22:29
Colin Angus Mackay5-Feb-07 22:29 
GeneralRe: insert data in database from textbox Pin
Christian Graus5-Feb-07 22:38
protectorChristian Graus5-Feb-07 22:38 
AnswerRe: [Message Deleted] Pin
Andy *M*17-Feb-07 6:14
Andy *M*17-Feb-07 6:14 
Questioncollection question Pin
groundzero1115-Feb-07 21:45
groundzero1115-Feb-07 21:45 
AnswerRe: collection question Pin
gauthee5-Feb-07 22:01
gauthee5-Feb-07 22:01 
AnswerRe: collection question Pin
Stefan Troschuetz5-Feb-07 22:03
Stefan Troschuetz5-Feb-07 22:03 
AnswerRe: collection question Pin
Christian Graus5-Feb-07 22:03
protectorChristian Graus5-Feb-07 22:03 
QuestionThanx Graus ... Pin
Nekshan5-Feb-07 21:37
Nekshan5-Feb-07 21:37 

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.