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
G

gReaen

@gReaen
About
Posts
20
Topics
14
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Question on flexgrid
    G gReaen

    Thanks for the reply.

    The problems that exist in the world today cannot be solved by the level of thinking that created them. - Albert Einstein

    C / C++ / MFC question c++ tutorial

  • Question on flexgrid
    G gReaen

    Hello, I have come across few applications which use MS FlexGrid written in MFC. Can someone tell me what the function SetTextArray(column, "string") does? If it sets the text in a column, don't we need to specify the row there? I have searched for tutorials and could not find anything helpful. So please suggest a good tutorial which explains what the functions are used for...

    The problems that exist in the world today cannot be solved by the level of thinking that created them. - Albert Einstein

    C / C++ / MFC question c++ tutorial

  • conversion from char* to string
    G gReaen

    hello, My code snippet for conv is as follows: string temp_file; temp_file = my_dir; temp_file += string ("\\file.tmp"); the my_dir is externed from some other file n is char* with a directory path as its value ("C:\\Projects"). i'm gettin an exception n the application closes. i want to know wat is the mistake i'v been doing. Thanx in advance

    The problems that exist in the world today cannot be solved by the level of thinking that created them. - Albert Einstein

    ATL / WTL / STL

  • Splitter window
    G gReaen

    Hello everyone, I'm tryin to build a new vc++ MFC project which should result in a dialog with splitter windows. I went through few tutorials but that didn't had any direct step by step approach. Whenever i see a ample code for splitter window example project, i dont understand where the splitter dialog resides in the resource. I would like anyone to suggest a easy way of doing the same.... Is it necessary to write the code manually instead of any drag and drop approach.... Plz help...

    The problems that exist in the world today cannot be solved by the level of thinking that created them. - Albert Einstein

    C / C++ / MFC c++ tutorial help learning

  • CString::Empty()
    G gReaen

    I need to write my version of code similar to CString::Empty() function for char*. Is it enough if i just free the memory of the string to implement the function. How do i empty the string otherwise? Thanks in advance

    C / C++ / MFC question performance announcement

  • Problem with char*
    G gReaen

    Hello, This might be a basic point in C++ but i need help...... This is the code snippet i've been using: typedef char* myString; main() { myString i="abcd"; myString j="ABCD"; .... } I need to copy j to i. But i'm not able to use usual strcpy. I also tried assigning char by char using for loop. ( i[1]=j[1] etc). But it didn't work.:confused: I dont want to use array format for the string, it should be char* only. Also i dont want to directly point i to j(i=j) coz it might result in memory leak. Plz, suggest some alternative.....

    C / C++ / MFC help c++ data-structures performance

  • Problem in AfxBeginThread
    G gReaen

    I had to send a function pointer. Thanks for pointing that out.

    C / C++ / MFC help question

  • Problem in AfxBeginThread
    G gReaen

    I need to call the function AfxBeginThread in one of my function (say, myFunc). myFunc should receive a function name which should become a thread. My code is as follows: void myFunc(void* fthread) { HANDLE cmd_thread; CWinThread* pCmdThread = AfxBeginThread(fthread, NULL); cmd_thread = pCmdThread->m_hThread; .......... } But i get an error that: cannot convert parameter one of AfxBeginThread from void* to unsigned int(_cdecl*)(void *)..... What should the parameter type be?

    C / C++ / MFC help question

  • Usage of "long" in oracle database
    G gReaen

    I'm trying to store a lengthy text in a table using oracle9i. I tried long datatype for the same. but when i tried to display the text using "select", it displays only 80 chars. Please help.......

    Web Development database oracle help

  • Using JSP
    G gReaen

    How to retrieve a image from a database and display it along with other components on the same web page using JSP in HTML?

    Web Development java html database tutorial question

  • Help with database
    G gReaen

    I tried deleting it directly from the table. It clearly shows that there are zero rows in the table but, the webpage still displays it. Is there any alternatives to reflect that change on the webpage?

    Web Development java html database oracle help

  • Help with database
    G gReaen

    Hello, I'm trying to connect Oracle database with HTML frontend using JSP. I tried displaying contents of a table but it shows the contents even after i delete them from the table. Can someone help please? I'm new to this. Also, i need to insert 500 chars of data. Tried varchar2 and long datatype but my oracle shows it should be under 241 chars. What should i do? I use Oracle 9i.

    Web Development java html database oracle help

  • Exception in socket programming
    G gReaen

    Hello everyone I'm doing a single client server application. After receiving a file from the client, server gets closed with the following exception. Debug assertion failed! Program: path of file File: winhand.cpp Line: 229 But the file is getting transferred correctly. And i need to send more than one file without connection being closed. Plz help...

    C / C++ / MFC c++ sysadmin debugging help

  • Check for Eof
    G gReaen

    How do i check for Eof using a CFile object?????

    C / C++ / MFC question

  • Inserting a table in dialog...
    G gReaen

    Ok... Thanks a lot...

    C / C++ / MFC c++ tutorial question

  • Inserting a table in dialog...
    G gReaen

    :)How to draw a table on a dialog in VC++ ??? I'm a newbie..... Thnk u :-)

    C / C++ / MFC c++ tutorial question

  • Help with MSDN
    G gReaen

    how can i install msdn library in vc++ 6.0 ??? I'm getting a message as "Please reinstall msdn" when i click on help.....

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

  • how to open a pdf file
    G gReaen

    Did u try opening it with ADOBE READER?

    C / C++ / MFC help tutorial question

  • FTP using vc++
    G gReaen

    Thank you... I hope it helps....:)

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

  • FTP using vc++
    G gReaen

    I need to simulate FTP using socket programming in vc++(MFC) between two threads.......... Can anyone HELP.....?

    C / C++ / MFC c++ help 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