Page 1142 of 1725 FirstFirst ... 14264210421092113211391140114111421143114411451152119212421642 ... LastLast
Results 45,641 to 45,680 of 68961

Thread: Post Race!

  1. #45641
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!

    Quote Originally Posted by dglienna
    Good Morning Vietnam!

    (for no reason, other that I'm up early!)

    Good Morning Iraq!
    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  2. #45642
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Post Race!

    then, it's compliment:

    Good Night, Irene!

  3. #45643
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Post Race!

    12354
    Quote Originally Posted by mudfish

    Glad to see this thread still here!



    The C++ code for some one!!! Heehee
    "
    /////////
    DECLARE_DYNCREATE(CMainFrame)
    DECLARE_MESSAGE_MAP()e special .. says:
    why s no presents?
    Lost someone special .. says:
    thats not magic - its line brkeas
    Graham
    says:
    its the new MSN beta... it has multi-line names...
    Lost someone special .. says:
    right, amazing - always wanted one of themm
    Graham
    says:
    why?v
    };

    IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)

    BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
    ON_WM_CREATE()
    END_MESSAGE_MAP()

    BOOL
    CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
    {
    BOOL bRes = CFrameWnd::PreCreateWindow(cs);
    CIC dc;
    CRect rectDisplay(0, 0, dc.GetDeviceCaps(HORZRES), dc.GetDeviceCaps(VERTRES));

    cs.x = rectDisplay.left;
    cs.y = rectDisplay.top;
    cs.cx = rectDisplay.Width();
    cs.cy = rectDisplay.Height()-24;

    return bRes;
    }

    INT
    CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
    {
    if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
    return -1;e special .. says:
    why s no presents?
    Lost someone special .. says:
    thats not magic - its line brkeas
    Graham
    says:
    its the new MSN beta... it has multi-line names...
    Lost someone special .. says:
    right, amazing - always wanted one of themm
    Graham
    says:
    why?

    CWnd* pView = GetDlgItem(AFX_IDW_PANE_FIRST);
    if (pView != NULL)
    pView->SetWindowPos(&wndBottom, 0, 0, 0, 0,SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);

    return 0;
    }

    ///////////////////////////////////////////////////////////////////////////////
    // CMainCtnr
    ///////////////////////////////////////////////////////////////////////////////
    class CMainDoc;
    class CMainView;

    class CMainCtnr : pube special .. says:
    why s no presents?
    Lost someone special .. says:
    thats not magic - its line brkeas
    Graham
    says:
    its the new MSN beta... it has multi-line names...
    Lost someone special .. says:
    right, amazing - always wanted one of themm
    Graham
    says:
    why?lic CRichEditCntrItem
    {
    public:
    CMainCtnr(REOBJECT* preo = NULL, CMainDoc* pContainer = NULL);
    CMainDoc* GetDocument(VOID);
    CMainView* GetActiveView(VOID);

    protected:
    DECLARE_SERIAL(CMainCtnr)
    };

    IMPLEMENT_SERIAL(CMainCtnr, CRichEditCntrItem, 0)

    CMainCtnr::CMainCtnr(REOBJECT *preo, CMainDoc* pContainer)
    : CRichEditCntrItem(preo, (CRichEditDoc*)pContainer)
    {
    }

    inline
    CMainDoc*
    CMainCtnr::GetDocument(VOID)
    {
    return((CMainDoc*)COleClientItem::GetDocument());
    }

    inline
    CMainView*
    CMainCtnr::GetActiveView(VOID)
    {
    return((CMainView*)COleClientItem::GetActiveView());
    }

    ///////////////////////////////////////////////////////////////////////////////
    // CMainDoc
    ///////////////////////////////////////////////////////////////////////////////
    class CMainView;

    class CMainDoc : public CRichEditDoc
    )
    };

    IMPLEMENT_DYNCREATE(CMainDoc, CRichEditDoc)

    BOOL
    CMainDoc::OnOpenDocument(LPCTSTR lpszPathName)
    {
    FILE* iFile;
    CHAR Buffer[8];

    strcpy(Filename, lpszPathName);
    iFile = fopen(lpszPathName, "rb");
    if (iFile==NULL)
    {
    AfxMessageBox("Unable to load document", MB_ICONEXCLAMATION|MB_OK);
    return(FALSE);
    }
    fread(Buffer, 5, 1, iFile);
    fclose(iFile);
    if (memcmp(Buffer, "{\\rtf", 5)!=0)
    {
    AfxMessageBox("Document is not in rich text format", MB_ICONEXCLAMATION|MB_OK);
    return(FALSE);
    }

    if (!CRichEditDoc::OnOpenDocument(lpszPathName))
    return FALSE;

    // System ID
    sprintf(SystemLine, "System: %-4.4s", lpszPathName+12);

    // File Time
    {
    HANDLE hFile;
    FILETIME FileTime;

    hFile = CreateFile(lpszPathName, GENERIC_READ, 0, NULL, OPEN_EXISTING,
    FILE_ATTRIBUTE_NORMAL, NULL);
    GetFileTime(hFile, NULL, NULL, &FileTime);
    CloseHandle(hFile);
    CTime Time(FileTime);
    strcpy(RevisedLine, Time.Format("Revised: %m/%d/%Y"));
    }
    // System Time
    {
    CTime Time = CTime::GetCurrentTime();

    strcpy(PrintedLine, Time.Format("Printed: %m/%d/%Y"));
    }

    return TRUE;
    }

    CRichEditCntrItem*
    CMainDoc::CreateClientItem(REOBJECT* preo) const
    {
    return(new C
    }
    }

    void CMainView::OnPrint(CDC* pDC, CPrintInfo* pInfo)
    {
    ASSERT_VALID(this);
    ASSERT_VALID(pDC);
    ASSERT(pInfo != NULL);
    ASSERT(pInfo->m_bContinuePrinting);

    UINT nPage = pInfo->m_nCurPage;
    ASSERT(nPage <= (UINT)m_aPageStart.GetSize());
    long nIndex = (long) m_aPageStart[nPage-1];
    long nLast;

    // print as much as possible in the current page, up to a <PageBreak>
    FINDTEXTEX FindData;

    FindData.chrg.cpMin = nIndex;
    FindData.chrg.cpMax = 0xFFFFFFFF;
    FindData.lpstrText = "<PageBreak>";
    nLast = GetRichEditCtrl().FindText(FR_MATCHCASE, &FindData);
    nIndex = PrintPage(pDC, nIndex, nLast);
    if (nLast!=-1)
    if (nIndex >= nLast)
    nIndex += 12;

    if (nIndex >= GetTextLength())
    {
    TRACE0("End of Document\n");
    pInfo->SetMaxPage(nPage);
    }

    // update pagination information for page just printed
    if (nPage == (UINT)m_aPageStart.GetSize())
    {
    if (nIndex < GetTextLength())
    m_aPageStart.Add(nIndex);
    }
    else
    {
    ASSERT(nPage+1 <= (UINT)m_aPageStart.GetSize());
    ASSERT(nIndex == (long)m_aPageStart[nPage+1-1]);
    }
    }

    BOOL CMainView::OnPreparePrinting(CPriparePrinting(pInfo);
    }

    int CMainView::OnCreate(LPCREATESTRUCT lpCreateStruct)
    {
    if(CRichEditView::OnCreate(lpCreateStruct) == -1)
    return -1;
    GetRichEditCtrl().SetOptions(ECOOP_SET, ECO_READONLY);

    return 0;ntInfo* pInfo)
    {
    return DoPre
    }

    inline
    CMainDoc*
    CMainView::GetDocument(VOID)
    {
    return((CMainDoc*)m_pDocument);
    }

    VOID
    CMainView::OnSize(UINT nType, int cx, int cy)
    {
    CRichEditView::OnSize(nType, cx, cy);

    ///////////////////////////////////////////////////////////////////////////////
    // CApplication

    "
    To big go to post above
    hehe
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  4. #45644
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!

    Quote Originally Posted by visualAd
    12354
    12345

    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  5. #45645
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Post Race!

    Quote Originally Posted by mudfish
    12345

    21435
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  6. #45646
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!

    Quote Originally Posted by visualAd
    21435
    No No NO!!!!!!
    It is 12345

    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  7. #45647
    Fanatic Member Bonker Gudd's Avatar
    Join Date
    Mar 2000
    Location
    Saturn
    Posts
    748

    Angry Re: Post Race!

    No more antifreeze

  8. #45648
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!


    But it is cold outside!
    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  9. #45649

  10. #45650
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Post Race!

    this shows that i'm on page 1142!

  11. #45651
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!


    I am still swimming around the forum!

    I am on 1142 all so and a few more!
    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  12. #45652
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Post Race!

    Gay? Is that what I heard?




    Page 1142 for me also.

  13. #45653
    Fanatic Member Valleysboy1978's Avatar
    Join Date
    Nov 2004
    Location
    Planet Xeoroaniar CC Posts:1,928,453,459,361
    Posts
    770

    Re: Post Race!

    Yep, page 1142 here too
    That's pretty impressive
    Life is one big rock tune

  14. #45654
    Computer Science BS Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,339

    Re: Post Race!

    Might as well toss another post in here

  15. #45655
    l33t! MrPolite's Avatar
    Join Date
    Sep 2001
    Posts
    4,428

    Re: Post Race!

    Quote Originally Posted by Jacob Roman
    Might as well toss another post in here
    I second that
    rate my posts if they help ya!
    Extract thumbnail without reading the whole image file: (C# - VB)
    Apply texture to bitmaps: (C# - VB)
    Extended console library: (VB)
    Save JPEG with a certain quality (image compression): (C# - VB )
    VB.NET to C# conversion tips!!

  16. #45656
    Computer Science BS Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,339

    Re: Post Race!

    Ah hell, here comes another...

  17. #45657
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Post Race!

    One more for the landfill!












    Mirage Tanks on RA2 and YR were unstoppable in hordes.... hehehe...

  18. #45658
    Computer Science BS Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,339

    Re: Post Race!

    I call your bet, and toss another post in there...

  19. #45659
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!

    1142
    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  20. #45660
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Post Race!

    Well, at least we're slowing this post down. At least I have tabbed browsing which lets me zorder the page request.

    45660. i have a bad feeling for post # 45666!

  21. #45661
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,173

    Re: Post Race!

    Two pairs and an ace.

  22. #45662
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Post Race!

    Royal Flush!

  23. #45663
    Fanatic Member Valleysboy1978's Avatar
    Join Date
    Nov 2004
    Location
    Planet Xeoroaniar CC Posts:1,928,453,459,361
    Posts
    770

    Re: Post Race!

    Quote Originally Posted by dglienna
    Royal Flush!

    I don't believe it! The only time I get a straight flush!!
    Life is one big rock tune

  24. #45664
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!

    Quote Originally Posted by Jacob Roman
    72

    73

    Opps wrong thread!
    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  25. #45665
    Computer Science BS Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,339

    Re: Post Race!

    Quote Originally Posted by mudfish

    73

    Opps wrong thread!
    45665

  26. #45666
    Computer Science BS Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,339

    Re: Post Race!

    I'm now satanic 45666

  27. #45667
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Post Race!

    45667



    Hehehehe. I was waiting for you to press the ENTER button!

  28. #45668
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Post Race!

    45667


    Just for kicks...

    6666666666
    66
    66
    66666
    66
    66
    66

  29. #45669
    Computer Science BS Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,339

    Re: Post Race!

    45669 Dude!!!

  30. #45670
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Post Race!

    45670

  31. #45671
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!

    45671

    or

    45673

    I think someone stolen a post or 2!
    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  32. #45672
    Fanatic Member Valleysboy1978's Avatar
    Join Date
    Nov 2004
    Location
    Planet Xeoroaniar CC Posts:1,928,453,459,361
    Posts
    770

    Re: Post Race!

    45672 and counting!
    Life is one big rock tune

  33. #45673
    Hyperactive Member mudfish's Avatar
    Join Date
    Feb 2004
    Location
    Chit Chat
    Posts
    353

    Re: Post Race!


    45673

    or
    45675

    Attached Images Attached Images  
    Mudfish AKA Bowfin
    I can spell "If" all day right, just a coder!


    "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut." -- Ernest Hemingway

    Member of the ECCC

  34. #45674
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Post Race!

    45674

  35. #45675
    Hyperactive Member Sgt-Peppa's Avatar
    Join Date
    Mar 2003
    Location
    Munich - Germany
    Posts
    476

    Re: Post Race!

    Uhmmm. what was I going to say again?
    Ah yeah,

    its raining today
    Keep Smiling - even if its hard
    Frankie Says Relax, wossname Says Yeah!
    wossname:--Currently I'm wearing a gimp suit and a parachute.
    C# - Base64 Blog

  36. #45676
    KING BODWAD XXI BodwadUK's Avatar
    Join Date
    Aug 2002
    Location
    Nottingham
    Posts
    2,176

    Re: Post Race!

    No its not
    If you dribble then you are as mad as me

    Lost World Creations Website (XBOX Indie games)
    Lene Marlin

  37. #45677
    Hyperactive Member Sgt-Peppa's Avatar
    Join Date
    Mar 2003
    Location
    Munich - Germany
    Posts
    476

    Re: Post Race!

    Since you are in England just wait a few more minutes! It will rain then!

    As they always say:

    If you dont like the English weather, wait a minute it will change!
    Keep Smiling - even if its hard
    Frankie Says Relax, wossname Says Yeah!
    wossname:--Currently I'm wearing a gimp suit and a parachute.
    C# - Base64 Blog

  38. #45678
    Fanatic Member Bonker Gudd's Avatar
    Join Date
    Mar 2000
    Location
    Saturn
    Posts
    748

    Re: Post Race!

    It's windy here

  39. #45679
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,173

    Re: Post Race!

    Put the toilet seat up.

  40. #45680
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Post Race!

    Please keep his fred serious
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

Page 1142 of 1725 FirstFirst ... 14264210421092113211391140114111421143114411451152119212421642 ... LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width