Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
S

skinnyreptile

@skinnyreptile
About
Posts
24
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • need help on adding C++ project
    S skinnyreptile

    I created a C# project and I would like to call functions in my existing C++ project, so I add the C++ project to my C# solution. Can someone please tell me how to call a C++ function from a C# project? Thank you for your great help.

    C# csharp c++ help tutorial question

  • Please help!
    S skinnyreptile

    Thanks for helping me! It really help!

    ASP.NET html asp-net help question

  • Please help!
    S skinnyreptile

    Thanks. You have a good weekend too.

    ASP.NET html asp-net help question

  • Please help!
    S skinnyreptile

    Hi Stephan, You are right, these textboxes and radios are localed in a table. But below the table, I also have a few buttons and textboxes. If I don't use relative positioning, all these controls move to the left of the screen as I described before. Please let me know if you can help. Thank you! Vito

    ASP.NET html asp-net help question

  • Please help!
    S skinnyreptile

    Hi Stephan, Thank you for your help. I followed what you said, but all textboxes and radios shifted to the left of the screen. Then, I moved them to the positions I wanted and the position tags appears again in HTML. Is there anyway to pre-set the POSITION to "relative" before I relocate the textboxes and radios. I can still changed the POSITION to "relative" and adjust the LEFT px manually one by one to force all controls in it's positions but it's kind of cumbersome. Please let me know if you can think of another solutions. Thanks!

    ASP.NET html asp-net help question

  • Please help!
    S skinnyreptile

    I have a word document which contains a few tables. I saved the .doc file to a .html file in Word 2000, then I copied the HTML code over to my ASP project within the "BODY" of the aspx page. I added "Textboxes" and "radiobuttons" (from Web Forms toolbox) to the aspx file on top of the html tables. I compiled and run the program. Textboxes are out of place and radio buttons are missing. Can anyone please tell me know why the controls are out of place/missing? Any help will be appreciated.

    ASP.NET html asp-net help question

  • how to detect back button from client.....
    S skinnyreptile

    Hi guys, When user clicks "back" button, it does not generate a Page_load() event to the server. Is there anyway to detect user click onto back button in ASP.net? Thanks!

    ASP.NET csharp asp-net sysadmin tutorial question

  • Question on VC++ and MS Word
    S skinnyreptile

    Hi all, Is there anyway to feeds data entered in an MFC application to a nicely formatted form in MS Word? In another word, can I take data in the edit boxes and fill in the corresponding fields in MS Word? Thank you for your help!

    C / C++ / MFC c++ question help

  • mailto problem
    S skinnyreptile

    Here's what my code section is: "mailto:abc@abc.com?Body=WHATever..." Result in Outlook 2000 and 98: Body --> WHATever Result in Outlook 97: Body --> whatever Anyone please let me know why Outlook 97 convert letters from upper case to lower case? Is mailto only work for Outlook 98 and after?

    C / C++ / MFC com help question

  • Property Pages question
    S skinnyreptile

    Is there anyway to verify a property page is created before I called RemovePage(), and is there anyway to insert a page (like between page 2 and 3)in the property pages? Thank you!

    C / C++ / MFC question

  • GetBuffer?? ReleaseBuffer??
    S skinnyreptile

    Thank you for all the help, guys!

    C / C++ / MFC debugging performance help question

  • GetBuffer?? ReleaseBuffer??
    S skinnyreptile

    I tried the following code with display line 0 only when nLineCount > 1. THe code still crash. if (nLineCount > 1) { nLineLength = m_redit.LineLength(0); m_redit.GetLine(0, strText.GetBuffer(nLineLength)); TRACE (strText); strText.ReleaseBuffer(nLineLength); }

    C / C++ / MFC debugging performance help question

  • GetBuffer?? ReleaseBuffer??
    S skinnyreptile

    On line 0. If the for loop is start at line 1, it won't crash.

    C / C++ / MFC debugging performance help question

  • GetBuffer?? ReleaseBuffer??
    S skinnyreptile

    Even without trace statment, it's still not working.

    C / C++ / MFC debugging performance help question

  • GetBuffer?? ReleaseBuffer??
    S skinnyreptile

    Hi, I tried to read lines from rich edit control and display in the debug window with the following code. If I set i=1 in the for loop, this program won't crash and display every line other then the first line. However, when I set i=0 as below, it will crash and have memory leak problem. Can someone please tell me what's going on? Thank you. int i, nLineLength, nLineCount; CString strText; nLineCount = m_redit.GetLineCount(); for (i=0;i < nLineCount ;i++) { nLineLength = m_redit.LineLength(i); m_redit.GetLine(i, strText.GetBuffer(nLineLength)); TRACE (strText); strText.ReleaseBuffer(nLineLength); }

    C / C++ / MFC debugging performance help question

  • Property Page OnNotify question
    S skinnyreptile

    All I did is I tried to detect right mouse click on richedit control located on my property page. It shoudn't intercept both OnSetActive() and OnKillActive() messages. Please let me know if I did something wrong here. BOOL CPropertyPage::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult) { MSGFILTER * lpMsgFilter = (MSGFILTER *)lParam; if ((wParam == IDC_RICHEDIT1) && (lpMsgFilter->nmhdr.code == EN_MSGFILTER)&& (lpMsgFilter->msg == WM_RBUTTONDOWN)) { . . . . } return CDialog::OnNotify(wParam, lParam, pResult); }

    C / C++ / MFC question database

  • Property Page OnNotify question
    S skinnyreptile

    I construct a propery page which I added OnActive() and OnKillActive() by class wizard. When I added OnNotify() to the class, I have not received message to trigger OnActive() and OnKillActive() anymore. Is there anyway to both functions triggered even I use OnNotify()?

    C / C++ / MFC question database

  • ShellExecute
    S skinnyreptile

    I know with the following statement, I can open outlook with email address (abc@abc.com) already set up: ShellExecute( NULL, "open", "mailto:abc@abc.com", NULL, "", SW_SHOWNORMAL ); Is there any way to set up content just like email address prior to open outlook? Thank you.

    C / C++ / MFC com question

  • Move cursor to the bottom of rich edit control
    S skinnyreptile

    Thanks. It works!

    C / C++ / MFC tutorial question

  • Move cursor to the bottom of rich edit control
    S skinnyreptile

    Can someone tell me how to move the cursor to the bottom of a rich edit control please?

    C / C++ / MFC tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups