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 Wanet Telecoms Ltd 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. funxav

    [MFC] Drag And Drop

    Hi, I have done a DnD implementation in a MFC multidoc project. My implementation allow the user to DnD items of my CListCtrl in windows explorer to copy or moves files. To do that, I have implemented a COM object implementing IStream interface. All works. However, a problem happens. The...
  2. funxav

    Ole Objects (Crystal Reports)

    Hello I think it's because the CoCreateInstance function (which is called by CreateInstance Method) hasn't detected your library. You must verify in your registry (reggedit) that the value of CRYSTALRUNTIME.APPLICATION refers correctly to the CLSID of the object you want to create. Then you...
  3. funxav

    OLE graphic component in a client window

    Hello, I'm new to COM/OLE and I want to learn. I have done an automation MFC server. I have done a MFC client which uses the object defined in the server. The server OLE object is a CDialog(or CWnd). All works perfectly. When I create an instance with the client, the server is executed (out...
  4. funxav

    [awt] help about drag and drop

    Yes. My problem seems to be more complicated : For example, I try to get some element from a Internet Explorer windows. I can get the text but what I want to do is to get the images : (dragsource=an GIF image on a IE windows, droptarget=myframe). Whan I try it does nothing. I think this is...
  5. funxav

    [awt] help about drag and drop

    Hi, I developp a little graphics program with swing. I already use java.awt.datatransfer package to use system clipboard. Now I'd like to use java.awt.dnd package to implement dnd feature with native frames or native application (Windows). But I don't find examples and enough documentation...
  6. funxav

    [XML/XPath] jaxen : problem with XPath "parent" function

    In fact I use now jdom.jar in jdom-b9.zip and its works. You can also use jdom.jar in lib rep of lastest download of jaxen. I don't understand why but its works for me. So, I hope it could help you ...
  7. funxav

    [XML/XPath] jaxen : problem with XPath "parent" function

    I have tried to reset all JDOM (jaxen is in jdom) paths. It doesn't work. I have jdk1.4.2 and try jdom-b10 It's strange because all work excepted the call to XPATH "parent" function (child function and abreviated path works fine.) So I 'm going to try with jdom-b9, but I'm not convinced ...^^
  8. funxav

    [XML/XPath] jaxen : problem with XPath "parent" function

    Thanks I use jdom b10. So perhaps I must use another version ? I'm going to search if there is another more recent version...
  9. funxav

    [XML/XPath] jaxen : problem with XPath "parent" function

    Hello I have a problem with jaxen, when I try to use the XPath function parent : When I try this : import ... DocumentNavigator dn=new DocumentNavigator(); try { objet=dn.getDocument("TESTXPath.xml")...
  10. funxav

    XML XPath with Stream

    I precise. I think that if you use parse method of any parseur. The whole file will be loaded in memory. In fact. My aims have changed a little (sorry but I'm in placement and it depends of my master) Now I must use a stream(not a file) and I must select continueously from the stream the data...
  11. funxav

    XML XPath with Stream

    Thanks for answer. What I'm looking for can be for example this method : evaluate(String expr, InputSource source, QName retType) that is in jdk1.5.0,but I have 1.4 I have readen http://www.javaworld.com/javaworld/jw-09-2000/jw-0908-xpath.html It seems to be that all the XPath slection...
  12. funxav

    XML XPath with Stream

    Hello. I'm searching an API, which permit to do XPath selection. But all I have seen permit XPath selection in documents (so in memory). But my files will be to big to be loaded in memory. And I'd like an XPath selection API which operates on stream.(Input Stream or other possible XML Stream)...
  13. funxav

    TList implementation for Visual C++

    TList is a component of Borland C++ Builder that is wonderful: it's like the STL class list , excepted the fact that you can add any variable that has at most 4 bytes (Its elements are considered like void *). Its main inconvenient is that it is adapted only for storage of objects which have a...
  14. funxav

    searching for class like TList that we can include in a VC++ project

    Problem :: use TList( borland class ) in Visual C++ I'm searching for a class like TList, who contain the same method's name (and meaning) which can be include in a VC++ project. If someone knows a website in order to download some files (header and impleme,ting file) which correspond to my...
  15. funxav

    AnsiString in Visual C++

    Is there a class like the "AnsiString" class of Borland C++ Builder that we can use in Visual C++, or is there some files on the net who implement the AnsiString class and that we can use in Visual C++.

Part and Inventory Search

Back
Top