Click here to Skip to main content
15,902,114 members
Home / Discussions / C#
   

C#

 
GeneralRe: Arrow keys on form with Tabs with GridViews Pin
Nigel Mackay5-Jun-09 4:04
Nigel Mackay5-Jun-09 4:04 
GeneralRe: Arrow keys on form with Tabs with GridViews Pin
dan!sh 5-Jun-09 4:06
professional dan!sh 5-Jun-09 4:06 
GeneralRe: Arrow keys on form with Tabs with GridViews Pin
Nigel Mackay5-Jun-09 4:14
Nigel Mackay5-Jun-09 4:14 
GeneralRe: Arrow keys on form with Tabs with GridViews Pin
dan!sh 5-Jun-09 4:15
professional dan!sh 5-Jun-09 4:15 
GeneralRe: Arrow keys on form with Tabs with GridViews Pin
Henry Minute5-Jun-09 4:43
Henry Minute5-Jun-09 4:43 
Questionstring declare Pin
michaelgr15-Jun-09 0:35
michaelgr15-Jun-09 0:35 
AnswerRe: string declare Pin
Mirko19805-Jun-09 0:43
Mirko19805-Jun-09 0:43 
GeneralRe: string declare Pin
michaelgr15-Jun-09 0:45
michaelgr15-Jun-09 0:45 
GeneralRe: string declare Pin
Manas Bhardwaj5-Jun-09 0:49
professionalManas Bhardwaj5-Jun-09 0:49 
GeneralRe: string declare Pin
Henry Minute5-Jun-09 4:54
Henry Minute5-Jun-09 4:54 
GeneralRe: string declare Pin
molesworth5-Jun-09 0:48
molesworth5-Jun-09 0:48 
AnswerRe: string declare Pin
I Believe In GOD5-Jun-09 0:59
I Believe In GOD5-Jun-09 0:59 
GeneralRe: string declare Pin
DaveyM695-Jun-09 1:20
professionalDaveyM695-Jun-09 1:20 
GeneralRe: string declare Pin
I Believe In GOD5-Jun-09 1:34
I Believe In GOD5-Jun-09 1:34 
QuestionHow to make a network connection at this case? Pin
Majid_grok5-Jun-09 0:04
Majid_grok5-Jun-09 0:04 
AnswerRe: How to make a network connection at this case? Pin
stancrm5-Jun-09 0:37
stancrm5-Jun-09 0:37 
GeneralRe: How to make a network connection at this case? Pin
Majid_grok5-Jun-09 1:36
Majid_grok5-Jun-09 1:36 
GeneralRe: How to make a network connection at this case? Pin
stancrm5-Jun-09 1:39
stancrm5-Jun-09 1:39 
QuestionCan we use pointers or similar in C# ? Pin
Otex4-Jun-09 23:53
Otex4-Jun-09 23:53 
AnswerRe: Can we use pointers or similar in C# ? Pin
0x3c05-Jun-09 0:01
0x3c05-Jun-09 0:01 
You're referring to unsafe code. Yes, you can. It's not recommended because of the potential for memory leaks, but it's possible. You wrap the code using pointers in an unsafe block, like so:
unsafe
{
    //Your code goes here
}

Then you have to coerce VS into compiling it. Project properties->Build->Allow unsafe code

Between the idea
And the reality
Between the motion
And the act
Falls the Shadow

GeneralRe: Can we use pointers or similar in C# ? Pin
Otex5-Jun-09 0:15
Otex5-Jun-09 0:15 
GeneralRe: Can we use pointers or similar in C# ? Pin
0x3c05-Jun-09 0:21
0x3c05-Jun-09 0:21 
AnswerRe: Can we use pointers or similar in C# ? Pin
Christian Graus5-Jun-09 0:12
protectorChristian Graus5-Jun-09 0:12 
QuestionOutlook 2003 VSTO Addin deployment on Windows Vista - Registry and other issues - How to Pin
Chaitanya Joshi4-Jun-09 23:28
Chaitanya Joshi4-Jun-09 23:28 
AnswerRe: Outlook 2003 VSTO Addin deployment on Windows Vista - Registry and other issues - How to Pin
led mike5-Jun-09 4:37
led mike5-Jun-09 4: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.