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

Search:

Type: Posts; User: Captain Nuss

Page 1 of 10 1 2 3 4

Search: Search took 0.12 seconds.

  1. Thread: ListBox

    by Captain Nuss
    Replies
    3
    Views
    858

    Yeah, I forgot about the ItemData property.

    Yeah, I forgot about the ItemData property.
  2. Thread: ListBox

    by Captain Nuss
    Replies
    3
    Views
    858

    You could use a ListView. In a list view, every...

    You could use a ListView. In a list view, every item has a Tag property. You can save the item's index in the table into the Tag property. Never assume the index of the item in the table is the same...
  3. Replies
    5
    Views
    1,204

    Sure, but it makes the code much more readable....

    Sure, but it makes the code much more readable. 32 is just a number which doesn't really have a meaning. Look at it in a few months from now and you won't know where it comes from. The way it is done...
  4. Replies
    0
    Views
    1,699

    Context Menu Shell Extensions with VB6

    I'm writing a shell extension that will display a menu item in the context menu of folders. I'm using VB6. My extension implements the IShellExtInit and IContextMenu interfaces. I've registered the...
  5. Replies
    0
    Views
    1,767

    DirectShow Editing Services and VMR-9

    I'm currently designing a video editor which I intend to use to cut movies, apply effects and transitions, incorporate a soundtrack, generally everything that the DirectShow Editing Services (DES)...
  6. Replies
    2
    Views
    691

    Greetings, I was able to work around that...

    Greetings,

    I was able to work around that problem by showing the context menu manually, thus not setting the tree view's ContextMenu property.

    TreeNode node = treeView1.GetNodeAt(e.X, e.Y);
    if...
  7. Replies
    1
    Views
    746

    Greetings, take a look at the System.Array...

    Greetings,

    take a look at the System.Array class. The following code should work:


    string[] str1;
    string[] str2;

    // Fill str1 and str2 here...
  8. Replies
    4
    Views
    822

    Use javaw, just as dlorde said. Directly after...

    Use javaw, just as dlorde said. Directly after the javaw call, insert a "cls" statement. That will clear the DOS window, resulting in its being closed. I guess that's what you actually want. If not,...
  9. Replies
    3
    Views
    2,564

    Greetings. Take a look at the API...

    Greetings.

    Take a look at the API Specification and you'll find an answer.

    First, call the show() method of the dialog. That blocks your app until the user has chosen a file and dismissed the...
  10. Replies
    8
    Views
    1,495

    Well, I've tried JBuilder and Forte for Java....

    Well, I've tried JBuilder and Forte for Java. They're both quite nice, but I've switched to jEdit as my code editor and Ant as a build tool. In my opinion, you get better control over your projects...
  11. Thread: Books???

    by Captain Nuss
    Replies
    7
    Views
    891

    If you ask me, I'd recommend learning Java first....

    If you ask me, I'd recommend learning Java first. It's object oriented and has a rather "smooth learning curve". With Java, you can get familiar with programming concepts and then, if you like, move...
  12. Replies
    6
    Views
    1,228

    Don't forget a GUI Design Award. Today it seems...

    Don't forget a GUI Design Award. Today it seems to me that many companies don't even have UI designers. They deliver applications that are hard to use and get used to, and that's not how it should...
  13. Thread: Java2EXE

    by Captain Nuss
    Replies
    4
    Views
    4,646

    Take a look at this one...

    Take a look at this one perhaps.
  14. Replies
    1
    Views
    787

    tempNum is an int, a primitive type that doesn't...

    tempNum is an int, a primitive type that doesn't have any methods. Tha line is completely wrong. So something like

    instead.
  15. Replies
    4
    Views
    701

    Ah, thanks for your interesting reply! :) Now,...

    Ah, thanks for your interesting reply! :)

    Now, my friend said he'd almost always go for the easy method. Why do something the complicated way if you can do it the easy way? I said I'd always go...
  16. Replies
    7
    Views
    956

    Exactly! :D Why not program a subset of...

    Exactly! :D

    Why not program a subset of Access' features? Like, program an application which can read and show some database formats. In addition, let the user modify table structures and add new...
  17. Replies
    7
    Views
    956

    What about a Microsoft Access kind of...

    What about a Microsoft Access kind of application? Should get you a great rating if you succeed in programming something like this.
  18. Replies
    4
    Views
    701

    The interesting or the easy way?

    Well, I've had a few discussions with a friend of mine. He uses Visual Basic while I myself prefer Java.

    The subject of our discussion was the following: Suppose you have to solve a problem. You...
  19. Replies
    15
    Views
    5,265

    I see! Thank you very much for your time! :D

    I see!

    Thank you very much for your time! :D
  20. Replies
    15
    Views
    5,265

    I'm afraid I don't quite understand. Does that...

    I'm afraid I don't quite understand.

    Does that mean that I just can't use Frame and Form in my interface definitions? If so, how am I supposed to pass the needed objects to the plug-in / the...
  21. Replies
    15
    Views
    5,265

    I'm trying to realize a plug-in system in VB. ...

    I'm trying to realize a plug-in system in VB.

    The host application and the plug-ins shall have a way to communicate with one another, that's why I thought about defining interfaces with IDL and...
  22. Replies
    15
    Views
    5,265

    I'm trying to refer to Frame and Form. The VB...

    I'm trying to refer to Frame and Form. The VB Object Browser definitely says they're defined in VB6.OLB.
  23. Replies
    15
    Views
    5,265

    I see. I've never heard of Corba IDL, that's why...

    I see. I've never heard of Corba IDL, that's why I didn't mention that I was actually using MIDL. :)
  24. Replies
    15
    Views
    5,265

    The compiler still doesn't recognize the objects...

    The compiler still doesn't recognize the objects I'm referring to. It quits with the following error message:

    midl : error MIDL9008 : internal compiler problem 0xc0000005 - the compiler cannot...
  25. Replies
    15
    Views
    5,265

    I am actually using MIDL, didn't know there was...

    I am actually using MIDL, didn't know there was another compiler. I've certainly already tried searching the MSDN library I got with my VS edition, but it didn't turn up anything interesting.

    I've...
Results 1 to 25 of 247
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured