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 bkrike 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: *

  • Users: zoomby
  • Content: Threads
  • Order by date
  1. zoomby

    NIO: Registering Socket with selector

    Hi! Here's the situation: I created a simple server using NIO that sends data to the client. I write some data to the client socket and then cancel the SelectionKey, so that no more "ready to write" events occur with this socket, but the socket still is connected. The problem is that...
  2. zoomby

    Word: Macro don't works with ".dot" documents?

    hi! I have written a macro for a word document. But when I save the document with ".dot" the macro doesn't start. How can I solve the problem? bye chris
  3. zoomby

    Pass Parameter to Word Document?

    hi, I have this situation: Set oWord = CreateObject("Word.Application") oWord.Documents.Open "C:\Test.doc" oWord.Visible = True Is it possible to pass parameters to this "test.doc" document? How can I access these parameter in the document (using a vba macro?) ...
  4. zoomby

    Indexes and big tables

    hi How are Indexes managed in MySql? I can create many indexes on the same columns but with different names (CREATE UNIQUE INDEX name...). But which index is then used? Is it possible to delete indexes? bye chris
  5. zoomby

    word vba macro: updating after filling form

    hi! I have a word document with some form input field and a vba script that filles out these input fields. but after filling out I have to double click the document to see the content of the input fields, without clicking they keep gray. Is there a vba method to update the document? bye chris
  6. zoomby

    Get Output of console application

    hi is it possible, in java, to execute a file (a java .class file or any other console application) and fetch its output into a string? bye chris
  7. zoomby

    Word Macros: Main Function?

    hi! How can I, with vb, create a fucntion that's called when the word document is load? I tried a "Sub AutoNew" but it's not called bye chris
  8. zoomby

    htaccess: no pw from intranet

    hi! I want to password-protect an intranet. But the login dialog should only show for users who want to access the intranet from outside. so if you access the site with ip's like 192.168... no password should be necessary, with other ips's you have to enter a password. how to write such a...
  9. zoomby

    Pie Chart

    hi! how can I draw a elliptical (pseudo 3d) pie chart? I know the win32-api function "pie", but I don't know how to find the "start/end point" of the pie. I think I need a formula to find the points on the ellipse. Can someone help? bye chris
  10. zoomby

    Reload site without jump to top?

    hi! is it possible to reload a site ("javascript:location.reload()") so that the site doesn't jump to its top (when you have to scroll) ? hope you can help bye chris
  11. zoomby

    Updating "main" page after pop-up window

    hi! how can I update a main browser window, after I opened a new window. It should work like a dialog window, which gets user input and then updates the content of the main (parent) window. bye chris
  12. zoomby

    Accessing ListBox Messages

    Hi! I have a simple Dialog Resource with a ListBox. Now I want to handle the WM_VSCROLL message in the DialogProc. But I only get the messages of the Dialog Window. I tried things like WM_NOTIFY, but it doesn't work. How can I get the messages of the ListBox? Thanks Bye Chris
  13. zoomby

    ActiveX in MFC (without Wizards)

    hi, can somebody give me an example( or know a tutorial ) how to use ActiveX controls with MFC, without wizards. bye chris
  14. zoomby

    API: Adding ActiveX Control

    hi, when I add a activeX control (Progress Bar) to the resource, the API program compiles, but I can't open it (I click on execute but nothing happens (no error)). Can somebody tell me why? bye Chris
  15. zoomby

    MFC Apps + Size

    hi, Does someone know why MFC apps (.exe) are bigger in size then simliar visual basic apps? And with the MFC apps I need the mfc dlls to run it on other systems. Why? bye Chris
  16. zoomby

    modify resource controls in runtime

    hi! How can I modify a control which is part of a resource in runtime? For example, I create a dialog with a button in the resource editor. Then in runtime I want to change the caption of the button. bye Chris
  17. zoomby

    Convert char[] to CString (NULL problem)

    Hi! I'm using the CFile.Read() for reading a file, and have to set a char[] buffer. When I copy the char[] into a CString a can see the NULL-Terminator of the char[] as garbage chars( something like "ÌÌÌÌÌÌ"...). I got rid of it by using a loop and ommitted the last char[] element...
  18. zoomby

    Passing data between Dialogs

    hi! What is the best method to pass data between dialogs when using MFC? bye Chris
  19. zoomby

    newbie question: display form in main window

    hi! how can I display a form in the view of the main window using MFC? bye zoomby
  20. zoomby

    getting the current position of a recordset

    Hi! How do I get the current position (row) of a recordset? I tried AbsolutePosition, but it always returns -1. Bye Chris

Part and Inventory Search

Back
Top