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

Search:

Type: Posts; User: lion.king

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    12
    Views
    4,494

    Re: Problem with toolStripMenuItem

    hmm may be ...but did you understood what i need .... :) actually i am very new to this forum ..infact to any forum...so please excuse me for any mistakes. :)

    i am coding in .net vc++.

    for my...
  2. Replies
    12
    Views
    4,494

    Re: Problem with toolStripMenuItem

    hey i think you are confused. i am talking about .net programming menu item. i think my image attachment will help you in understanding the problem which i am facing .
  3. Replies
    12
    Views
    4,494

    Re: Problem with toolStripMenuItem

    i went to menuitem properties , there i found appearance but i did not find advanced. so can you please correct me where i am going wrong. :)
  4. Replies
    12
    Views
    4,494

    Re: Problem with toolStripMenuItem

    sorry i did not got your statement can you explain .what you really mean.. :)
    do you mean about a property in tooltipmenu item through which i can specify smaller size.
  5. Re: Problem in calling Excel Run fucntion from VC++

    getrange function converts the given col and row number to range pointers. so i think i am passing range pointer only.
  6. Replies
    12
    Views
    4,494

    Re: Problem with toolStripMenuItem

    visual c++ comes in .net also know ... ?
  7. Replies
    0
    Views
    785

    Problem with toolStripMenuItem

    hi i have a problem with toolstripmenuitem.

    when i add items to menu. the menu item looks big. i was not able to edit even size to make it small. can any one help me in decreasing it size.

    all...
  8. Replies
    12
    Views
    4,494

    Problem with toolStripMenuItem

    hi i have a problem with toolstripmenuitem.

    when i add items to menu. the menu item looks big. i was not able to edit even size to make it small. can any one help me in decreasing it size.

    all...
  9. Making C++ code open in vs2003 as well as vs2005 with out any changes.

    Hi all,

    i have want solutions for two problems i am facing. help is highly appreciable.

    problem 1:

    i have code in c++. and it opens in vs2003. it builds and generates the dll....
  10. Re: Problem in calling Excel Run fucntion from VC++

    reply is highly appreciated. i got what it is saying. but i am not able to understand why it is giving the error even if i send the contiguous area.
  11. Re: Problem in calling Excel Run fucntion from VC++

    it is contigious .. i searched in Google...they show code which is written or generated from macro recorder. but my code is in VC++. it has some thing to do with parametres ..which it is not able to...
  12. Problem in calling Excel Run fucntion from VC++

    Hi,
    i have a problem in calling excel Fourier analysis functions from vc++.

    the below line gives a error while running.
    the error rises in excel sheet.


    ...
  13. Replies
    4
    Views
    1,507

    Re: a win32 dll that calls fortran

    i think this

    http://publib.boulder.ibm.com/infocenter/pdthelp/v1r1/index.jsp?topic=/com.ibm.entcobol.doc_3.4/tpdll05e.htm

    will helps you
  14. Replies
    13
    Views
    1,376

    Re: String Input Crashes Program

    sorry it was isdigit. i typed that without thinking. :)
  15. Replies
    19
    Views
    2,302

    Re: C - = Problems

    can you provide your input string also.
  16. Replies
    13
    Views
    1,120

    Re: Using more than one cout in an If statement

    sorry I am new to this forum. from now on wards I will follow. thanks for telling :)
  17. Re: Very strange exeption Unmanaged C++ Lib -> Managed C++ Lib -> C#

    check if unmanaged dll is missing any dependences. use dependence checker for finding if dll misss any thing
  18. Thread: Context Menu

    by lion.king
    Replies
    6
    Views
    1,205

    Re: Context Menu

    i am sure in c# or any .net no need of this code. if u added contextmenu to any item, it will be shown on right click.it wont show even when u add it is when u did not add any menu item to that...
  19. Thread: Context Menu

    by lion.king
    Replies
    6
    Views
    1,205

    Re: Context Menu

    did u added menu items to that context menu. other wise u wont see anything after right click .
  20. Replies
    4
    Views
    829

    Re: Help with some code

    public void setUpdateDiposit(int diposit){
    diposit = diposit - 2;
    }

    this function is written inside exam() function which is not valid..
    u can call function from other function. but u cant...
  21. Replies
    3
    Views
    608

    Re: error in object passing

    ifstream in_file; //Declares an input file object called in_file)

    syntax is wrong here

    it should be
    ifstream in_file("enter file name");

    i think this should slove some errors.
  22. Replies
    7
    Views
    3,322

    Re: Problems with strcmp

    if ( field[some_position] == 'X' ) should solve your problem.

    no need of strcmp as u field is char.
  23. Replies
    13
    Views
    1,376

    Re: String Input Crashes Program

    i think u can take the input and check with ischar() function and if it is true processed else not run code and take anthoer i/p ..what ever u want.

    i think checking the given input wwith...
  24. Replies
    13
    Views
    1,120

    Re: Using more than one cout in an If statement

    i think its better , you enclose all the statements which u want to print after " if " in a braces("{" and "}") for our clarity and ur also. then we can proceed furthure to solve your problem.
    i...
  25. Replies
    3
    Views
    1,962

    Re: compiling errors

    random1 = rand() 9;
    random2 = rand() 9;
    random1 = rand() 89 + 10;
    random2 = rand() 89 + 10;
    all these areas have error. please insert some arthamatic operation after rand() function and...
Results 1 to 25 of 26
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured