Click here to Skip to main content
15,899,474 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionHow can I copy data from crystal report view to clipboard Pin
Ali 11013-Jan-09 19:28
Ali 11013-Jan-09 19:28 
QuestionHow can i set trust level of trusted site to FullTrust Programatically from the .NET dll ? Pin
Dattatraya K13-Jan-09 4:06
Dattatraya K13-Jan-09 4:06 
AnswerRe: How can i set trust level of trusted site to FullTrust Programatically from the .NET dll ? Pin
Dave Kreskowiak14-Jan-09 3:36
mveDave Kreskowiak14-Jan-09 3:36 
GeneralRe: How can i set trust level of trusted site to FullTrust Programatically from the .NET dll ? Pin
Dattatraya K14-Jan-09 19:00
Dattatraya K14-Jan-09 19:00 
GeneralRe: How can i set trust level of trusted site to FullTrust Programatically from the .NET dll ? Pin
Pete O'Hanlon14-Jan-09 22:00
mvePete O'Hanlon14-Jan-09 22:00 
GeneralRe: How can i set trust level of trusted site to FullTrust Programatically from the .NET dll ? Pin
Dave Kreskowiak15-Jan-09 1:57
mveDave Kreskowiak15-Jan-09 1:57 
QuestionAltering Table Relations To Add CASCADE ON DELETE RECORDS Functionality. Pin
VikashGohil13-Jan-09 3:17
VikashGohil13-Jan-09 3:17 
AnswerRe: Altering Table Relations To Add CASCADE ON DELETE RECORDS Functionality. Pin
Ben Fair13-Jan-09 11:24
Ben Fair13-Jan-09 11:24 
First, you have to drop the Foreign Key Constraint and then recreate it with the desired options.

ALTER TABLE <table_name>
DROP CONSTRAINT <foreign_key_name> ;
 
ALTER TABLE <table_name>
ADD CONSTRAINT <foreign_key_name> FOREIGN KEY (EmployeeID)
    REFERENCES <other_table_name>.EmployeeID (EmployeeID) ON DELETE CASCADE ;


Keep It Simple Stupid! (KISS)

GeneralRe: Altering Table Relations To Add CASCADE ON DELETE RECORDS Functionality. Pin
VikashGohil13-Jan-09 20:45
VikashGohil13-Jan-09 20:45 
QuestionWindows 7 - Superbar Progress indicator Pin
prattel13-Jan-09 1:51
prattel13-Jan-09 1:51 
AnswerRe: Windows 7 - Superbar Progress indicator Pin
Thomas Stockwell13-Jan-09 5:31
professionalThomas Stockwell13-Jan-09 5:31 
GeneralRe: Windows 7 - Superbar Progress indicator Pin
prattel13-Jan-09 7:25
prattel13-Jan-09 7:25 
AnswerRe: Windows 7 - Superbar Progress indicator Pin
Giorgi Dalakishvili13-Jan-09 8:08
mentorGiorgi Dalakishvili13-Jan-09 8:08 
QuestionTrying to use sytem.printing to get print queue status Pin
daveg5513-Jan-09 1:24
daveg5513-Jan-09 1:24 
AnswerRe: Trying to use sytem.printing to get print queue status Pin
Anshumas14-Jan-09 18:19
Anshumas14-Jan-09 18:19 
QuestionDataGridView Pin
codeguru10813-Jan-09 1:24
codeguru10813-Jan-09 1:24 
AnswerRe: DataGridView Pin
Henry Minute13-Jan-09 12:07
Henry Minute13-Jan-09 12:07 
QuestionTargeting .Net Framework Client Profile for Standalone install Pin
redivider12-Jan-09 11:12
redivider12-Jan-09 11:12 
QuestionHow to change default stack size while using ThreadPool in .NET Pin
kiran_sr12-Jan-09 5:17
kiran_sr12-Jan-09 5:17 
AnswerRe: How to change default stack size while using ThreadPool in .NET Pin
S. Senthil Kumar12-Jan-09 5:49
S. Senthil Kumar12-Jan-09 5:49 
GeneralRe: How to change default stack size while using ThreadPool in .NET Pin
Rajasekharan Vengalil12-Jan-09 6:56
Rajasekharan Vengalil12-Jan-09 6:56 
GeneralRe: How to change default stack size while using ThreadPool in .NET Pin
kiran_sr12-Jan-09 7:36
kiran_sr12-Jan-09 7:36 
GeneralRe: How to change default stack size while using ThreadPool in .NET Pin
Luc Pattyn12-Jan-09 8:09
sitebuilderLuc Pattyn12-Jan-09 8:09 
GeneralRe: How to change default stack size while using ThreadPool in .NET Pin
S. Senthil Kumar12-Jan-09 8:58
S. Senthil Kumar12-Jan-09 8:58 
GeneralRe: How to change default stack size while using ThreadPool in .NET Pin
Rajasekharan Vengalil12-Jan-09 8:59
Rajasekharan Vengalil12-Jan-09 8:59 

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.