Click here to Skip to main content
15,906,333 members
Home / Discussions / C#
   

C#

 
QuestionObtain Solution Classes types in Design Time Pin
adiel20087-Jul-10 5:34
adiel20087-Jul-10 5:34 
AnswerRe: Obtain Solution Classes types in Design Time Pin
Abhinav S7-Jul-10 7:04
Abhinav S7-Jul-10 7:04 
QuestionHow to read a binary file byte by byte and compare its utf8 rendition? [modified] Pin
Shaareable7-Jul-10 5:06
Shaareable7-Jul-10 5:06 
AnswerRe: How to read a binary file byte by byte and compare its utf8 rendition? Pin
harold aptroot7-Jul-10 5:11
harold aptroot7-Jul-10 5:11 
AnswerRe: How to read a binary file byte by byte and compare its utf8 rendition? Pin
OriginalGriff7-Jul-10 5:19
mveOriginalGriff7-Jul-10 5:19 
AnswerRe: How to read a binary file byte by byte and compare its utf8 rendition? Pin
OriginalGriff7-Jul-10 5:28
mveOriginalGriff7-Jul-10 5:28 
AnswerRe: How to read a binary file byte by byte and compare its utf8 rendition? Pin
Richard MacCutchan7-Jul-10 7:03
mveRichard MacCutchan7-Jul-10 7:03 
GeneralRe: How to read a binary file byte by byte and compare its utf8 rendition? Pin
Shaareable7-Jul-10 7:15
Shaareable7-Jul-10 7:15 
QuestionHow does one programatically arrange Outlook Tasks by category? Pin
euroazn7-Jul-10 4:24
euroazn7-Jul-10 4:24 
QuestionSeagull Bartender Application Pin
Hum Dum7-Jul-10 0:15
Hum Dum7-Jul-10 0:15 
AnswerRe: Seagull Bartender Application Pin
Pete O'Hanlon7-Jul-10 0:23
mvePete O'Hanlon7-Jul-10 0:23 
GeneralRe: Seagull Bartender Application Pin
Hum Dum7-Jul-10 0:55
Hum Dum7-Jul-10 0:55 
GeneralRe: Seagull Bartender Application Pin
Pete O'Hanlon7-Jul-10 1:37
mvePete O'Hanlon7-Jul-10 1:37 
AnswerRe: Seagull Bartender Application Pin
Abhinav S7-Jul-10 1:24
Abhinav S7-Jul-10 1:24 
GeneralRe: Seagull Bartender Application Pin
Hum Dum7-Jul-10 1:33
Hum Dum7-Jul-10 1:33 
GeneralRe: Seagull Bartender Application Pin
Abhinav S7-Jul-10 1:50
Abhinav S7-Jul-10 1:50 
AnswerRe: Seagull Bartender Application Pin
R. Giskard Reventlov7-Jul-10 2:15
R. Giskard Reventlov7-Jul-10 2:15 
QuestionSendMessage to control with non-fixed ControlID Pin
LordZoster7-Jul-10 0:08
LordZoster7-Jul-10 0:08 
AnswerRe: SendMessage with variable ControlID Pin
freakyit7-Jul-10 1:11
freakyit7-Jul-10 1:11 
GeneralRe: SendMessage with variable ControlID Pin
LordZoster7-Jul-10 1:23
LordZoster7-Jul-10 1:23 
GeneralRe: SendMessage with variable ControlID Pin
Eddy Vluggen7-Jul-10 3:45
professionalEddy Vluggen7-Jul-10 3:45 
QuestionForeign key UniqueIdentifier Pin
tek 20096-Jul-10 23:59
tek 20096-Jul-10 23:59 
I have two tables: table1 field contains the ID type UniqueIdentifier and table2 contains ID as foreign key when inserting values is not the same values filled in the two table table1 in this ID is filled eg e210d5ad-BC41-439th-b8e8-e8ed775ee932, and in table 2 it is filled with zero
So how do I do to unify all relationships necessary is active
the two queries are:

CREATE Procedure [dbo].[Insert1](@ID uniqueidentifier, @name varchar(10),@tel varchar(10))AS  INSERT INTO [table1] ([ID], [name], [tel])VALUES (NEWID(), @name, @tel)

CREATE Procedure [dbo].[Insert2](@ID uniqueidentifier, @cmd1 varchar(20))AS INSERT INTO [Table2] ([ID], [cmd1])VALUES (@ID, @cmd1)

table1: ID Primary key
Table2:ID foreign Key

Thank you very much for your help
AnswerRe: Foreign key UniqueIdentifier Pin
PIEBALDconsult7-Jul-10 3:22
mvePIEBALDconsult7-Jul-10 3:22 
AnswerRe: Foreign key UniqueIdentifier Pin
tek 20097-Jul-10 4:19
tek 20097-Jul-10 4:19 
AnswerRe: Foreign key UniqueIdentifier Pin
Bernhard Hiller7-Jul-10 3:57
Bernhard Hiller7-Jul-10 3:57 

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.