CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Abhishek Chauhan

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    680

    Re: Searching Help

    i want to know if this kind of search is possible through LINQ . I have already used a regex function to split all the unnecessary charachters.

    because My design was to load the file into the ...
  2. Replies
    2
    Views
    680

    Searching Help

    I want to search a csv file say

    I have a csv text in file like

    rest, 23
    jack,456
    now,345

    where first one is "word" other is "code" corresponding to the word
  3. Replies
    0
    Views
    432

    Context help problem

    Can anyone tel me how to add context help to the application such that when i enable context help short cut . My mouse cursor will change and on clicking it anywhere inside the mdi form . I'll get...
  4. Re: How to assign short cuts to a button

    Thank you
  5. Re: How to assign short cuts to a button

    Can you elaborate it furthur?
  6. How to assign short cuts to a button

    How do i assign short cuts for menu options in my application?
  7. Replies
    4
    Views
    640

    Re: Need help in calling function

    Actually I know how to create an object and call the function . The thing was I was traeting those files as an empty file . I hadn't stored it in some project . Those files were all over the plcaes...
  8. Replies
    4
    Views
    640

    Need help in calling function

    I have this header file




    #ifndef DRAWTRACK_H
    #define DRAWTRACK_H


    class VectorDraw
  9. Replies
    11
    Views
    917

    Re: multi dimensional array

    int myArray={{0.1} , {2,3} }
    Int (*ptr) [2][2] = &myArray;
  10. Replies
    17
    Views
    16,884

    Re: classes question

    1. In classes the default scope is private whereas in structures u have public.equir

    2.Also u can define the scope according to is requiremeuctunts in claasses.

    3. In classes u can create fn nd...
  11. Replies
    17
    Views
    16,884

    Re: classes question

    Most of the people talk differentiate classes and structure on basis of setting varriables etc as public or private by default.

    the thing here to understand is that procedures can be calles ,...
  12. Replies
    14
    Views
    1,046

    Re: Searching for value in array

    You can use a pointer to look for the item
  13. Replies
    3
    Views
    585

    Re: Why can not be overloaeded

    Its a text That I had copied from some white paper . hope this will help you

    Most operators can be overloaded by a programmer. The exceptions are

    . (dot) :: ?: sizeof

    There is no...
  14. Re: Multiple inheritance and virtual functions.

    I think defining B and C as virtual would be a much better choice but this choice can differ depending on the structure and how u intend to use the varous classes .

    Keep in mind only one thing...
  15. Replies
    1
    Views
    5,755

    OpenGL and OpenAL?

    Hi all

    I wanted to know something regarding game programming. I'm planning to write a 2d game . i have good proficiency in c++ and It's the same language I am going to use for development and I'll...
  16. Replies
    11
    Views
    11,462

    Re: Making Gui for console Application

    Here's the direction I'm working on .I got it from some other form and seems to do the trick for me

    Create your GUI application as normal. In it you can use the System.Diagnostics.Process.Start...
  17. Replies
    11
    Views
    11,462

    Re: Making Gui for console Application

    @ toraj58: I've updated the thread with restrictions and the way I'm trying to solve the problem.

    Thanks for your Patience ,I really appreciate that
  18. Replies
    11
    Views
    11,462

    Re: Making Gui for console Application

    I'm hoping to somehow use already existing console application with GUI. I don't have the time to rewrite application again and it is a very huge application .
    Also I have not been provided with any...
  19. Replies
    11
    Views
    11,462

    Making Gui for console Application

    I have a console application which has already been compiled .I have no code with me . I want to invoke this app through GUI GUI . What is the best time saving maneuver to do that .

    Also the...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured