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

Search:

Type: Posts; User: Pavaka

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    622

    Re: Split MousePosition values by X and Y

    Elementary but doesnt work it shows me zero value of (a) and b as undeclared smhw
  2. Replies
    5
    Views
    622

    Re: Split MousePosition values by X and Y

    I want to save the X and Y coordinates in variables for example

    int a,b;
    a= (the coordinates of the mouse by X);
    b= (the coordinates of the mouse by Y);
    how i do that can you show me example...
  3. Replies
    5
    Views
    622

    Split MousePosition values by X and Y

    Hallo i found that i can see the coordinates of the mouse on the monitor by using (MousePosition) but the problem is that if i put it in label it looks like...
  4. Thread: Multi forms

    by Pavaka
    Replies
    4
    Views
    1,524

    Re: Multi forms

    Can you explain your concept explicitly because im new in those things and i dont know how to start the idea and how to make all those connecton with modal forms and etc
  5. Thread: Multi forms

    by Pavaka
    Replies
    4
    Views
    1,524

    Multi forms

    Hallo im using visual c++ 2010 express and i have problem with using more than one form.
    So i open an application and create a second form so i have 2 forms in the header folder
    Form1.h and Form2.h...
  6. Thread: Multi forms

    by Pavaka
    Replies
    1
    Views
    578

    Multi forms

    Hallo im using visual c++ 2010 express and i have problem with using more than one form.
    So i open an application and create a second form so i have 2 forms in the header folder
    Form1.h and Form2.h...
  7. Replies
    1
    Views
    1,127

    Using arrow keys in visual c++ 2010

    Hallo can someone give me a tutorial or show me some simple application of using arrow keys.
    I want to press some key and some event to occur but i dont have idea how to do it
    for example i press...
  8. Replies
    4
    Views
    5,654

    Convert to float from textbox

    Hallo i try to convert the value from the textbox to float i use this code :
    float a;
    if(rb1->Checked){a=Convert::ToFloat(tb1->Text);tb26->Text=Convert::ToString(a);}

    what have i done...
  9. Replies
    2
    Views
    1,050

    All items in form visible or not

    Hallo lets say i have a form with lables combo boxes and all other stuff how can i make all of them invisible
    but not like lable1->Visible=false; ... for all items but something like f...
  10. Replies
    1
    Views
    683

    show a number to a certaing sign

    hallo lets say i have 1/3=0.3333333 how can i tell the program to show 0.33 only for example or if i have 4*0.8 that is 3.2 how to tell the pc to show me 3.20
  11. Replies
    2
    Views
    798

    Convert to price value

    Hallo my question is lets say i have 4*0.8 that is equal to 3.2 but i want the pc to understand that this is a price and it should be written 3.20 euro for example not 3.2 euro
  12. Thread: short typing

    by Pavaka
    Replies
    1
    Views
    707

    short typing

    Hallo lets say for example i want:
    button1->Visible=false;button2->Visible=false;
    is there any short wat to type it like button1,button2->Visible=false; thats my idea im not sure if that thing even...
  13. Replies
    1
    Views
    2,375

    Picturebox load image

    Hallo i want to know how i can open a image in picture box i want to work that way: when i start the application i have nothing in the picuter box i click a button and it loads a picture how i do...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured