Click here to Skip to main content
15,922,155 members
Home / Discussions / C#
   

C#

 
GeneralRe: Forms Slowness Pin
Syed Shahid Hussain3-Feb-10 3:28
Syed Shahid Hussain3-Feb-10 3:28 
GeneralRe: Forms Slowness Pin
OriginalGriff3-Feb-10 3:39
mveOriginalGriff3-Feb-10 3:39 
GeneralRe: Forms Slowness Pin
Syed Shahid Hussain3-Feb-10 3:48
Syed Shahid Hussain3-Feb-10 3:48 
GeneralRe: Forms Slowness Pin
Luc Pattyn3-Feb-10 3:51
sitebuilderLuc Pattyn3-Feb-10 3:51 
GeneralRe: Forms Slowness Pin
OriginalGriff3-Feb-10 3:59
mveOriginalGriff3-Feb-10 3:59 
GeneralRe: Forms Slowness Pin
Syed Shahid Hussain3-Feb-10 4:46
Syed Shahid Hussain3-Feb-10 4:46 
Questionwrite information in control via non UI class Pin
aurelcly3-Feb-10 2:57
aurelcly3-Feb-10 2:57 
AnswerDOUBLE POST Pin
dan!sh 3-Feb-10 3:00
professional dan!sh 3-Feb-10 3:00 
AnswerRe: write information in control via non UI class Pin
aurelcly3-Feb-10 3:05
aurelcly3-Feb-10 3:05 
AnswerREPOST Pin
Luc Pattyn3-Feb-10 3:14
sitebuilderLuc Pattyn3-Feb-10 3:14 
Questionwinform Pin
aurelcly3-Feb-10 2:55
aurelcly3-Feb-10 2:55 
AnswerRe: winform Pin
Luc Pattyn3-Feb-10 2:57
sitebuilderLuc Pattyn3-Feb-10 2:57 
AnswerRe: winform Pin
Not Active3-Feb-10 2:59
mentorNot Active3-Feb-10 2:59 
AnswerDon't repost Pin
Not Active3-Feb-10 3:01
mentorNot Active3-Feb-10 3:01 
QuestionWinforms and SQL Threading Problem [modified] Pin
Uray Frank3-Feb-10 1:32
Uray Frank3-Feb-10 1:32 
AnswerRe: Winforms and SQL Threading Problem Pin
Luc Pattyn3-Feb-10 1:51
sitebuilderLuc Pattyn3-Feb-10 1:51 
GeneralRe: Winforms and SQL Threading Problem Pin
Uray Frank3-Feb-10 2:45
Uray Frank3-Feb-10 2:45 
GeneralRe: Winforms and SQL Threading Problem Pin
Luc Pattyn3-Feb-10 2:53
sitebuilderLuc Pattyn3-Feb-10 2:53 
PRE tags are HTML instructions that provide background color, non-proportional font, syntax coloring (on CodeProject at least), and indentation, like so:
public class CPTest_OwnIPAdr : CPTest {
    public override void Test(int arg) {
        String strHostName;
        // First get the host name of local machine.
        strHostName = Dns.GetHostName();
        log("Local Machine's Host Name: " +  strHostName);
        // Then using host name, get the IP address list..

        IPHostEntry ipEntry = Dns.GetHostByName(strHostName);
        IPAddress[] addr = ipEntry.AddressList;

        for (int i = 0; i < addr.Length; i++) {
            log("IP Address "+addr[i].ToString());
        }
    }
}


I don't copy/paste all messages to Visual, I do read a lot of messages provided their formatting is acceptable, so please add <PRE> and </PRE> around code snippets. The "code block" widget may help you.

Smile | :)

Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read code that is properly formatted, adding PRE tags is the easiest way to obtain that.
[The QA section does it automatically now, I hope we soon get it on regular forums as well]


GeneralRe: Winforms and SQL Threading Problem Pin
Uray Frank3-Feb-10 3:20
Uray Frank3-Feb-10 3:20 
AnswerRe: Winforms and SQL Threading Problem Pin
Luc Pattyn3-Feb-10 3:49
sitebuilderLuc Pattyn3-Feb-10 3:49 
GeneralRe: Winforms and SQL Threading Problem Pin
Uray Frank3-Feb-10 4:07
Uray Frank3-Feb-10 4:07 
GeneralRe: Winforms and SQL Threading Problem Pin
Luc Pattyn3-Feb-10 4:12
sitebuilderLuc Pattyn3-Feb-10 4:12 
GeneralRe: Winforms and SQL Threading Problem Pin
Uray Frank3-Feb-10 4:18
Uray Frank3-Feb-10 4:18 
GeneralRe: Winforms and SQL Threading Problem Pin
Luc Pattyn3-Feb-10 4:29
sitebuilderLuc Pattyn3-Feb-10 4:29 
GeneralRe: Winforms and SQL Threading Problem Pin
Uray Frank3-Feb-10 4:30
Uray Frank3-Feb-10 4:30 

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.