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
R

Rakesh5

@Rakesh5
About
Posts
88
Topics
49
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Reverse Search in CRichEditCtrl class
    R Rakesh5

    Hello All, My programmer is saying me that reverse search (meaning which up and down search in our application,which is developed in VC++) is not possible if we use CRichEditCtrl class.. Is he right?? I feel it should be possible, though am not VC++ expert... I agree to the fact that i know very little in VC++. Please guide us whether it is possible or not. If possible,can someone post a sample code? Thanks, Rakesh

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

  • C4309 warning
    R Rakesh5

    ya correct. what else can we do to avoid this warning then sir?

    C / C++ / MFC help tutorial question

  • C4309 warning
    R Rakesh5

    Sorry for that inconvenience Mr.Moonen. Hereafter, i will try to give detailed picture while posting. When i tried with ">>" , it was throwing an error message. error C2664: 'ReverseFind' : cannot convert parameter 1 from 'char [3]' to 'char' This conversion requires a reinterpret_cast, a C-style cast or function-style cast. can u please tell me where am i coding wrong? Thanks, Rakesh.

    C / C++ / MFC help tutorial question

  • C4309 warning
    R Rakesh5

    hi, i am facing C4309 warning while compiling my program. can anyone help me how to solve this warning? -------------- code snippet: CString ws; if (ws.ReverseFind( '>>' ) > -1 ) ---------------------------- Thanks, Rakesh.

    C / C++ / MFC help tutorial question

  • Making Desktop application flexible to monitor resolution
    R Rakesh5

    Hello sir, Are IsThereNoSpace() and ReDock() MFC Functions??? If not, can u please tell me the definition of the functions?? thanks, rakesh.

    C / C++ / MFC tutorial question

  • Making Desktop application flexible to monitor resolution
    R Rakesh5

    Hi all, My application looks cool in 1280 by 1024 pixels.. but when i change the pixels(monitor resolution) to 1024 by 768 , layout is getting changed. my toolbar is disturbed and am not getting the whole tool bar present the window.. does any one know how to make a desktop application flexible?? for eg., ms word, excel are all flexible ones...right? like that i want my application to be flexible.. Thanks rakesh.

    C / C++ / MFC tutorial question

  • disable CString value
    R Rakesh5

    hi all, i have a value like this in my application.. CString strTemp = "hello world"; now, i want the word "world" to be disabled(grayed out..) like wat appear in a static text box.. is it possible? Thanks, Rakesh.

    C / C++ / MFC question

  • writing content into a text file
    R Rakesh5

    Hi all. i want to write some content into a text file in my application. am getting the input text like this: AGREEMENT, SIGNIFY YOUR DECISION BY CLICKING THE "DO NOT AGREE" BUTTON; AND YOU MAY RETURN THIS PRODUCT (including all materials) TO THE PLACE WHERE YOU OBTAINED IT WITH YOUR RECEIPT WITHIN THIRTY DAYS FOR A FULL REFUND. ATTACHMATE® 1. LICENSE. Attachmate Corporation ("Attachmate") grants you the right to use the Attachmate software programs contained in this package (the "SOFTWARE") on a single personal computer. The SOFTWARE consists of several programs and is licensed as a single product. The SOFTWARE'S component parts may not be separated for use on more than one computer or by more than one user at any time. You may install the SOFTWARE on a network server, ---------------------- i am trying to write this content into a txt file. i tried using put,write,writeline and print almost all the functionalities which i have come across in net. But to my surprise, i am getting the output as follows: IMPORTANT: PLEASE READ THE FOLLOWING LICENSE AGREEMENT CAREFULLY BEFORE CONTINUING BECAUSE THE SOFTWARE PRODUCT IS LICENSED, NOT SOLD. IF YOU PROCEED WITH THE SETUP PROCEDURE (installation) OR USE THE SOFTWARE (OR AUTHORIZE ANY OTHER PERSON TO DO SO) BY CLICKING THE "AGREE" BUTTON, THEN YOU ACCEPT THE TERMS AND CONDITIONS OF THE LICENSE AGREEMENT. IF YOU DO NOT AGREE WITH THE TERMS OF THE LICENSE AGREEMENT, SIGNIFY YOUR DECISION BY CLICKING THE "DO NOT AGREE" BUTTON; AND YOU MAY RETU RN THIS PRODUCT (including all materials) TO THE PLACE WHERE YOU OBTAINED IT WITH YOUR RECEIPT WITHIN THIRTY DAYS FOR A FULL REFUND. ....etc., the problem is, it is not writing exactly what is there in the input.. why it is happening like this? can any one please enlighten me? thanks, rakesh.

    Visual Basic sysadmin question help workspace

  • Doubt with respect Microsoft TFS
    R Rakesh5

    hi all, i want to create an application in such a way that whenever a person Checks-in the code in TFS, i want the details such as userid,changeset name and description to be updated into an excel. is it possible to do? is it possible to fetch details from Microsoft TFS to an application which we are creating? can anyone please guide me how to proceed with this task? thanks, rakesh.

    C / C++ / MFC tutorial question

  • doubt in CFile
    R Rakesh5

    hi jonathan, thanks alot for your reply.. can u please teach me how to pass the pointer using the getlength method? thanks once again for patiently replying.. rakesh.

    C / C++ / MFC tutorial help question

  • doubt in CFile
    R Rakesh5

    hi, thanks alot for your info.. i tried using seektoend function. but it is still overwriting the value.. can u please help me to solve this problem? and i don understand how to write each value in each cell? can u explain me little more? thanks, rakesh.

    C / C++ / MFC tutorial help question

  • doubt in CFile
    R Rakesh5

    hi all, i am creating an application in which i want to write the content into an excel. i have two doubts here. doubt #1 i am actually using CFile.write function to write data into an excel. but,if i happen to write second time into the excel, it is overwriting the first item instead of appending it to the excel as second item. what should we do for this? myfile.Open("example.xls",CFile::modeCreate|CFile::modeWrite, NULL); myfile.Write(sUserID,sUserID.GetLength()); doubt #2 while writing in an excel, i have got three parameters to be written. (name,age and sex). all these three parameters are written in one cell. how to write them in a separate cells? Thanks for your help in advance.. Rakesh.

    C / C++ / MFC tutorial help question

  • Reg. win32_find_data dwFileAttributes value
    R Rakesh5

    hi all, i am actually trying to load a readonly file into my application. i am using CFileStatus's Getstatus method to find out the value of dwFileAttributes value. i am getting the value as 33.. my doubt is, do we get this value as 33 for all readonly files?? but in msdn, its been given as 1 for readonly file.. thanks, rakesh.

    C / C++ / MFC question

  • CFile::Read for readonly files
    R Rakesh5

    Hi all, I am trying to read a file having read-only property checked. i am not able to read the file and it is showing some exception from the file wincore.cpp stating "Accessing filepath\filename was denied".. Is it a problem with CFile::moderead?? thanks, rakesh.

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

  • _chdrive unicode support.
    R Rakesh5

    actually i did not write the code..my seniors have written.. am trying to learn what they have used .. anyway thanks alot for your help... rakesh.

    C / C++ / MFC help question

  • _chdrive unicode support.
    R Rakesh5

    Hi,thanks for the reply... int a = theApp.m_Dir[0]-'A'+1 ; Can you please tell me what is the logic behind using 'A' + 1 ; Can you help me?? Thanks, Rakesh.

    C / C++ / MFC help question

  • _chdrive unicode support.
    R Rakesh5

    Hi Guys, Do we have any unicode equivalent to this _chdrive function? I made my application unicode supporting one. previously it was working fine but now it is not working and application is crashing. Previously it was having the value of 28 but now the value is 35. Why is it so? code snippet: ---------------------- _chdrive(theApp.m_Dir[0]-'A'+1); ------------------------------------------------- can anyone shed some light on this issue? Thanks, Rakesh.

    C / C++ / MFC help question

  • convert const wchar* to const byte*
    R Rakesh5

    Hi, Actually i have made my character set as unicode and not as multibyte in the project settings.. so its not converting fully.. is there any way to do by keeping the current settings? thanks, rakesh.

    C / C++ / MFC help

  • convert const wchar* to const byte*
    R Rakesh5

    Hi All, I am actually learning vc++.. i just want to know whether it can be converted or not.. whether it is feasible or not.. my seniors have used a functions in which they have typecast like wat i have mentioned in the first message..they are sending type-cast parameter as an arugment to other functions..but it is not casting properly....its taking the first character alone.. if i say, const wchar* test = L"hello"; const BYTE* test1 = (const BYTE*)test; o/p will be 'h' alone.. Hence raised in this forum whether you people can enlighten me about this issue.. thanks, rakesh.

    C / C++ / MFC help

  • convert const wchar* to const byte*
    R Rakesh5

    Hi Rajesh, I am not aware of it...so does it mean that its not at all possible to convert??

    C / C++ / MFC help
  • Login

  • Don't have an account? Register

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