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 Mike Lewis 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. dmosses

    Attaching a DLL window to CView

    Hi, I'm using a DLL which creates a window for displaying an image. I'd like to attach this to the CView subclass object in my MFC app so that i can manipulate the image using the standard windows messages and handlers, e.g. MouseScroll etc. I've tried: HWND h_displayWnd =...
  2. dmosses

    Attach DLL created HWND to CView?

    Hi, I'm using a DLL which creates a window for displaying an image. I'd like to attach this to the CView subclass object in my MFC app so that i can manipulate the image using the standard windows messages and handlers, e.g. MouseScroll etc. I've tried: HWND h_displayWnd =...
  3. dmosses

    Please help!! dll dependencies not being copied to device

    Hi, I have a c++ app that makes use of a dll 'mydll'. I've included the dll's .lib file in the project and a header which provides the dll's function prototypes. The app builds fine, but evc++ will not copy the dll dependency. I've tried to copy the dependency myself to the \Windows dir on...
  4. dmosses

    Folder sharing disabled in WinCE StandardSDK_500 emulator

    Hi, Does anyone know why the folder sharing option is disabled on the WinCE STANDARDSDK_500 emulator? I am trying to test an application and need to move some additional data files to the emulator for the application to use, but am unable to. In addition, it seems like folder sharing can be...
  5. dmosses

    Linking error when compiling for MIPSIV processor with Standard SDK an

    Hi, I wonder if anyone could help me with this problem. I am trying to compile a dll for a MIPSIV processor but keep receiving the following error: Linking... coredll.lib(COREDLL.dll) : fatal error LNK1112: module machine type 'MIPSFPU' conflicts with target machine type 'MIPS' Error executing...
  6. dmosses

    Anyone know how to do server / servant replication?

    The ORB that comes with J2SE 1.4.2. - hope that's what you mean. thanks
  7. dmosses

    Anyone know how to do server / servant replication?

    well, I want to be able to set the server running simultaneously in a number of different VMs (potentially on different machines although that should not be relevant) so that a client can retrieve a reference from the naming service and be connected to any one of the servers. The servers should...
  8. dmosses

    Anyone know how to do server / servant replication?

    Hi Ok, I've set up a simple server written in Java with a number of servants using a POA and would like to introduce some redundancy into the system using replication. I don't really know how to go about this, so pointers in the right direction would be greatly appreciated.
  9. dmosses

    Persistent Server Id not initialized

    Ok - I've worked it out - actually, it was in the instructions on the sun website you can't simply start a persistent server from the command line. They must be registered with orbd - from the command line: >start orbd -ORBInitialHost localhost -ORBInititalPort 2090 >start servertool...
  10. dmosses

    Persistent Server Id not initialized

    Thanks for your reply. It seems that the CORBA package that comes with the latest J2SE doesn't contain a PolicyList class, and the 'HelloWorld' example on the Sun website uses an Policy[]. I noticed that you've activated the rootPOA before doing the rest, and have tried that, but to no avail...
  11. dmosses

    Persistent Server Id not initialized

    Hi, I'm having trouble initialising a persistent POA. POA rootPOA = POAHelper.narrow(orb.resolve_initial_references("RootPOA")); Policy[] policy = new Policy[2]; policy[0] = rootPOA.create_lifespan_policy(LifespanPolicyValue.PERSISTENT); policy[1] =...

Part and Inventory Search

Back
Top