Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. neseidus

    JaxB limitation: Does not preserve comments or includes!

    Hi I'm not sure how many people watching this forum use JaxB but here goes: I'm using JaxB to both read in and write out my XML files. This has worked fine so far but I've just noticed that in reading the Xml JaxB appears to ignore all comments. So when I output the data back to Xml I lose...
  2. neseidus

    ATL, WTL, MFC, Win32... ?? (Noob)

    I'd say learn the STL over mfc classes since it's more applicable to other applications, but I try to avoid using MFC whenever possible Quote "For instance, VS6 I find nice and friendly. VS.net2003, I find awful. I hate the way it builds the system backwards and tries to be clever and...
  3. neseidus

    Why does the boost library make my VS.NET crash??

    Well I think I know what the problem is. Apparently there is a bug fix in 2005 that sounds like my problem. But I wonder why other people aren't seeing this bug... I'm not the only one using the boost library Hopefully upgrading will resolve this
  4. neseidus

    Why does the boost library make my VS.NET crash??

    Pretty much any time I try doing something complicated, involving binding to functions within for_each loops or just using lambda expressions Actually it seemed to be related to the lambda functions
  5. neseidus

    Why does the boost library make my VS.NET crash??

    I didn't but upon checking I couldn't find anything Any other suggestions?
  6. neseidus

    Why does the boost library make my VS.NET crash??

    I really like using some of the constructs out of the boost library but for some reason this causes my VS.NET to crash Has anyone else experienced problems between these two?
  7. neseidus

    Corba exception that is making me go insane

    Hmmm a month and a half and no replies I think it's safe to say this forum is officially dead
  8. neseidus

    Corba exception that is making me go insane

    Hi I've been trying for too long to get a simple corba app working on my computer... I've tried a few different samples, one out of a book and the other out of the documentation that comes with ace/tao. This one...
  9. neseidus

    How does one cast in VB 6? Specifically Long to RECT

    Thanks a lot I also had the problem that my IDE was closing whenever my program closed so thanks for solving that for me too!
  10. neseidus

    How does one cast in VB 6? Specifically Long to RECT

    Well I can create a new RECT fine, the trouble is that according to MSDN the lParam parameter passed into wndproc (see below) is a RECT, so I need to cast it ... 'subclass window lpPrevWndProc = SetWindowLong(gHW, GWL_WNDPROC, AddressOf WndProc) .... Private Function WndProc(ByVal hWnd As...
  11. neseidus

    How does one cast in VB 6? Specifically Long to RECT

    I've been trying to get it working by using the CopyMemory function to get around the cast but so far this isn't working
  12. neseidus

    How does one cast in VB 6? Specifically Long to RECT

    Hi I'm subclassing a form to handle mouse wheel messages and also to handle setting a minimum width/height but in order to do the latter I have to convert 'lParam' into a RECT, which I don't know how to do, or if that's possible. Has anyone else come across this problem?
  13. neseidus

    Why can't you change the moveable property for forms?

    Hi I need to make a form sometimes moveable and sometimes not, but every time I try changing Me.Moveable in the code, it gives me this compilation error: "Function or interface marked as restricted, or the function uses an Automation type not supported in Visual Basic" Example program (that...
  14. neseidus

    CORBA apps in VB6

    Cool thanks
  15. neseidus

    CORBA apps in VB6

    I don't know much about .NET but I'm guessing you could do this a lot easier if it was VB NET instead of VB 6 However the GUI I wrote in VB 6 relies heavily on shapes and converting this turns everything into crap Might be easier than I think tho -- I've never really used VB NET Maybe I...
  16. neseidus

    CORBA apps in VB6

    Is this possible? I'm thinking about writing the GUI for an editor in VB and communicating to another program written in C++ I'm familiar with using corba in C++ but haven't been able to find much info on its applications in VB
  17. neseidus

    Why can't you pass 2d pointers as const?

    hmm Alright thanks
  18. neseidus

    Why can't you pass 2d pointers as const?

    I don't understand why the following doesn't compile: #include <iostream> using namespace std; /** * Utility function used to allocate 2-D arrays */ template <typename T> T** new2DArray( const int& d1, const int& d2 ) { T ** result = new T*[d1]; result[0] = new T[d1 * d2]; for (int...
  19. neseidus

    Moving the form above the screen

    Exactly what I needed, thanks!
  20. neseidus

    Moving the form above the screen

    Hi, I posted before about moving the form by clicking anywhere on the form and dragging it. This works fine but when I drag the form to have the title bar above the screen visual basic automatically snaps the window back down. Here's the post I made before, including the code I'm using to move...

Part and Inventory Search

Back
Top