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
R

rajeevktripathi

@rajeevktripathi
About
Posts
119
Topics
70
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to convert .txt(ASCII) to MS Word file
    R rajeevktripathi

    Actually what I want is to convert any .txt file to .doc (MS Word) one. So please tell me any programming approach or related DLL or SDK that will perform the objective. PLease help me Thanks & Regards Edit/Delete Message

    C / C++ / MFC tutorial

  • How to convert .txt(ASCII) to MS Word file
    R rajeevktripathi

    Hi Al How can a text file be converted to MS Word format. Any idea regarding this is welcomed (Dll, SDK, or sample or precess to convert). Thanks in Advance. BYE

    C / C++ / MFC tutorial

  • Please help
    R rajeevktripathi

    Hi thanks for your replies Is there any prgma option to do this please suggest me Thans & regards

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

  • Please help
    R rajeevktripathi

    Hi How to change associativity of operators in C++, e.g. if we have int a = 15; int b = 5; int c = a---b; then compiler interpret this expression as int c = (a--) - b; what I want, is like int c = a -(--b); is there any way to achieve this. Please suggest me. Thanks & Regards

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

  • Global vs local variables
    R rajeevktripathi

    Hi could not understand your example I wrote an example As follows: int pg; int _tmain(int argc, _TCHAR* argv[]) { int pl; int s; printf("Global %d \n", pg); printf("Local %d \n" , pl); scanf("%d", &s); return 0; } and while printing pl prompts an error message "Run-Time Check Failure #3 - The variable 'pl' is being used without being defined." any comments on this....

    C / C++ / MFC visual-studio question

  • Global vs local variables
    R rajeevktripathi

    thanks WalderMort it is fine that we should initialize each var while creating it, but wondering that why global variables are initialized to zero by compiler whereas local variables are not.. Please help to understand the logic Thanks & Regards

    C / C++ / MFC visual-studio question

  • Global vs local variables
    R rajeevktripathi

    Hi All I have a confusion related to global and local variables... why global variables are initialized to zero whereas local variables are not... What is the reason behind this. Please suggest me the answer. Thanks & Regards

    C / C++ / MFC visual-studio question

  • Problem with Property Grid
    R rajeevktripathi

    HI Thanks for your reply... Please tell me that how to decorate Person class from TypeConverter attribute but in the MSDN link learened that I have to derive my class from the TypeConverter ... So PLease help me in resolving the problem... Thanks & Regards

    C# help css com

  • Problem with Property Grid
    R rajeevktripathi

    Hi All I am using PropertyGrid to show the properties of object.. want to use property grid with combo box and taking help from this MSDN link.. http://msdn2.microsoft.com/en-us/library/aa302326.aspx here is the code that I am using.. using System; using System.Collections.Generic; using System.Text; using System.ComponentModel; namespace PropertyGridTest { [DefaultPropertyAttribute("Person")] class Person : StringConverter { public Person(string inName, string inAddress, int inAge, bool inEmployed) { name = inName ; address = inAddress ; age = inAge ; employed = inEmployed; } public Person(string inName) { name = inName; } private string name; private string address; private int age; private bool employed; public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { return true; } public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return true; } public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { return new StandardValuesCollection(new string [] {"AAA", "BBB", "CCC", "DDD" }); } public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) { return false; } [TypeConverter(typeof(Person)), CategoryAttribute("Person Details"), DescriptionAttribute("Name of the Person")] public string Name { get { return name; } set { name = value; } } [CategoryAttribute("Person Details"), DescriptionAttribute("Address of the Person")] public string Address { get { return address; } set { address = value; } } [CategoryAttribute("Person Details"), DescriptionAttribute("Employed")] public bool IsEmployed { get { return employed; } set { employed = value; } }

    C# help css com

  • Different Output
    R rajeevktripathi

    Hi All I have been puzzelled, actually problem is that I run a code in C# project and in Console based project of Visual Stdio 2005. code is as follows: int i = 1; int j = (++i) + (++i) + (++i); Now I found different values for j in C# project( j = 9) and console based project( j= 12). So please suggest me the answer behind this different values of j in both projects. Thansk & Regards

    C / C++ / MFC csharp help

  • Property sheets
    R rajeevktripathi

    Hi All Infact what kind of activity I need is that... As in Google Talk there is a Buddy List and if click on any of the buddy name then a Chat Dialog is popped up. Similar kind of work I need in a Tabbed dialog where a dialog contains a CListCtrl and when any item is clicked then a tab (child dialog) is created now what I want is that when click on a list item then a dialog should be popped up and secondly As told that in my case in the tab control after clicking on the list item a child dialog is created now I want to give the feature that user can drag and drop the child dialog, and the same time both Tab Control and child dialog should be active... Please reply that how to proceed for this...better if provide some example.. Thanks & Regards

    C / C++ / MFC help tutorial

  • Need Help..
    R rajeevktripathi

    Let some file name is coming through socket and I want to show these files in a list control on my system and here want to show the image associated with that extension in my PC... PLease reply Thanks & Regards

    C / C++ / MFC help

  • Property sheets
    R rajeevktripathi

    Hi All I have a property sheet, with 3-4 Poperty pages in it. Used CTabCtrl Class to make property sheet... Now I want to add feature that somone could be able to drag n drop a page from the sheet to the outside window. Please tell me that how to solve this problem.. Thanks & Regards

    C / C++ / MFC help tutorial

  • Need Help..
    R rajeevktripathi

    Hi Thanks for your reply Infact what I want is to find the icon of a file which is i am recieving from the remote system so I have ony file name (e.g. Test.txt, Test.pdf, etc) So I need to find the icon associated with file extensions like .txt, .pdf, etc. that means I dont have full path of the file... So please help me for solving this problem.... Thanks & Regards

    C / C++ / MFC help

  • Need Help....
    R rajeevktripathi

    Hi Thanks for your reply Infact what I want is to find the icon of a file which is i am recieving from the remote system so I have ony file name (e.g. Test.txt, Test.pdf, etc) So I need to find the icon associated with file extensions like .txt, .pdf, etc. that means I dont have full path of the file... So please help me for solving this problem.... Thanks & Regards

    C / C++ / MFC help

  • Need Help..
    R rajeevktripathi

    Hi All I want to find the icon associated with all the file extensions and if no valid extension is there then find the generic icon provided by the system for unknown file extension. Please help me to do this... Thanks

    C / C++ / MFC help

  • Need Help....
    R rajeevktripathi

    Hi All I want to find the icon associated with all the file extensions and if no valid extension is there then find the generic icon provided by the system for unknown file extension. Please help me to do this... Thanks

    C / C++ / MFC help

  • moving dialog to system tray
    R rajeevktripathi

    Hi All I have a dialog based application, want to add feature that application should go to System Tray when cross(x) button of dialog is clicked, For This; I have used NOTIFYICONDATA and Shell_NotifyIcon( ) API, also in the OnCancel() handler used void ShowWindow(SW_HIDE); to fide the dilaog, now what is my problem that this SA_HIDE hides the application immediately, but I want to make this happening as dialog is going to system tray as per in GTalk and some other applications.... Please suggest me the answer for this .... Waiting for your replies... THANKS

    C / C++ / MFC linux json help question

  • GUO in DOS
    R rajeevktripathi

    Thanks U all OK I will start to write such programs can u please guide me how to proceed But would like to tell the reason whiy I need .. Infact working on such project where if system is crashed then system will be started with a bootable floppy ( in DOS mode) and our application will be invoked so wanna write GUI code for that part.. Please help me Thanks

    C / C++ / MFC c++

  • GUO in DOS
    R rajeevktripathi

    Hi All I have to create a GUI in turbo C++ for Dos. and I want to give Windows like look in interface. so can you please tell me any library for GUI which could be used in DOS. or tell me any better approach. Thanks Edit/Delete Message

    C / C++ / MFC c++
  • Login

  • Don't have an account? Register

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