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

Search:

Type: Posts; User: Slippy

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,622

    JavaScript front end for C++ application?

    I don't know if this is the best section of the forum to post in, but since I am building in C++ and not MS VC++, I figured it was the only viable place.

    I wish to have my functions in my C++...
  2. Replies
    3
    Views
    9,233

    Re: convert std::string to gchar*?

    Thanks for the help, I will try this tonight after work when I get home.
  3. Replies
    3
    Views
    9,233

    convert std::string to gchar*?

    I am using webkitgtk in order to learn some C++ development skills in a small project.

    I am having trouble converting a string to a gchar* in order to allow me to open up an URL.

    I have...
  4. Replies
    0
    Views
    4,461

    Firefox 4 style interface in WPF?

    The tab system in Firefox 4 is interesting, it is more like a streamlined ribbon than an average tab set...

    Can this be done in WPF, and if not, does anyone here know what technology was used in...
  5. Adding xml to a drowdown, working but I need help getting it right.

    ok my xml file currently looks like this...


    <links>
    <link url="http://www.google.co.uk/">Google</link>
    </links>

    and I am using the following code in my C# application, to add the drop...
  6. Re: I can't create instances of my new form in C# winforms... any idea why?

    Thankyou eclipsed4utoo :) there was a mismatch, I haven't used this forum in a while, is there a rating system I should use to thank you?
  7. I can't create instances of my new form in C# winforms... any idea why?

    When I use the following code...

    Form1 frmTest = new Form1();

    I get a new instance of Form1...

    I have added a form called Form2 to the project, but when I use the following code...

    Form2...
  8. Replies
    0
    Views
    2,402

    Mac Stack style menu in wpf?

    I have no idea how to go about implementing this, and I have googled it, I just can't find anything.

    for an example of what I am talking about, see this :
    ...
  9. Re: Make my application compatible with plugins?

    Thanks, I know I should have googled it, but I wasn't exactly sure what I was searching for. apologies.
  10. Make my application compatible with plugins?

    this is not something I am directly familiar with, and I would like to know how to achieve this in C#, so that if I make an application, 3rd parties could create plugins for it...
  11. Replies
    1
    Views
    650

    How would i add a tokenizer to this code?

    I have had experience with tokenizers, but not sure how to add it to the following piece of code... can anyone help?



    import java.io.BufferedReader;
    import java.io.File;
    import...
  12. Replies
    10
    Views
    1,449

    Re: Generate a random number between 1 and 4?

    I must admit, the replies are very useful...

    the term forum, indicates that this is a place where people can come to exchange ideas, or help one another, a social place to talk about given...
  13. Replies
    10
    Views
    1,449

    Generate a random number between 1 and 4?

    I need to know how to generate a random number between 1 and 4, I have googled it but i seem to only be able to find results which have really long winded amounts of code, and im thinking theres...
  14. Replies
    1
    Views
    2,136

    KeyListener wont work for me... please help.

    starting from the ground up on a project for university, but i need to start with a keyListener, which i just cant get to work...

    heres the demo i have put together of a key listener...

    i get...
  15. Replies
    3
    Views
    920

    Re: Small problem trying to play a wav file?

    can anyone help me? thanks in advance...
  16. Replies
    3
    Views
    920

    Re: Small problem trying to play a wav file?

    i am using windows vista, 64 bit... I have been told that i have to do it the way i am currently approaching the problem, as part of the assignment. thanks for your help though.
  17. Replies
    3
    Views
    920

    Small problem trying to play a wav file?

    This code seems to compile properly without any errors, and when i run it, it displays a frame, without a problem, as you can see i may be over complicating this by using threads, but thats because...
  18. Replies
    1
    Views
    791

    drawing to a paint component?

    basically i have called in an instance of the paintComponent on my form... as follows...




    MyPanel tester = new MyPanel();
    tester.setSize(800,600);
  19. Replies
    3
    Views
    772

    Re: parsing a comparable to a string...

    that worked perfect, I was under the impression that i had to use comparables, because im utilising another class called BinarySearchTree, and it uses comparables...

    thanks for the help!
  20. Replies
    3
    Views
    772

    parsing a comparable to a string...

    ok, so heres what i have...



    Comparable nodeInput = JOptionPane.showInputDialog(null);


    i just need to know what line of code i would need to use if i wanted to parse that to an integer......
  21. Replies
    3
    Views
    1,144

    Re: JOptionPane doesnt seem to be working...

    thanks for the help, that fixed it, im an idiot for not seeing that myself actually... sorry
  22. Replies
    3
    Views
    1,144

    JOptionPane doesnt seem to be working...

    //Create JButton named "NewTree"
    JButton NewTree = new JButton("Create a new tree");


    //Add action Listener
    NewTree.addActionListener (new ActionListener()
    {
    public void...
  23. BorderLayout... make the component in center the full width?

    is it possible to make the component in the center of the of the border layout, be full width of the frame?
  24. Re: non-static variable this cannot be referenced from a static context??

    oh wait, i just got it up and running there with two separate classes, thanks a lot!! you have saved me so much trouble! one last thing? how do i add other components onto MyPanel? can you help me...
  25. Re: non-static variable this cannot be referenced from a static context??

    ok, so the best bet is to separate it into two separate files... this is going to sound really dumb... but how do i do that?
Results 1 to 25 of 49
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured