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. zoomby

    NIO: Registering Socket with selector

    hi, I know a little bit more now. It's the select() method from the selector which blocks (of course). That's natural, but I don't have a chance to register a socket with this selector from another thread while it blocks. I tried to wakeup() the selector befor registering a socket but that...
  2. 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...
  3. zoomby

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

    thanks for the reply. Now I have a Module "AutoOpen" with the function "Public Sub MAIN()" in the "Normal" section, but the Macro still doesn't start. What's wrong? bye chris
  4. 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
  5. 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?) ...
  6. 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
  7. 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
  8. zoomby

    Get Output of console application

    Ok, thanks, I'll try it
  9. 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
  10. zoomby

    Word Macros: Main Function?

    Sorry but I'm a newbie with macros. I tried to search the net for word macros, but I hardly found anything useful. Can someone give me a link to a good tutorial, or any other site which deals with word macros? bye chris
  11. 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
  12. zoomby

    htaccess: no pw from intranet

    hi! thanks for the answer, but I get an internal server error (I deleted the "AuthGroupFile" directive, hope that isn't the reason). I also got this error when I tried some other directives like "allow" or "deny". Any suggestions? bye chris
  13. 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...
  14. 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
  15. zoomby

    Reload site without jump to top?

    thanks gph1, that works great!
  16. zoomby

    Reload site without jump to top?

    no idea?
  17. zoomby

    Reload site without jump to top?

    no, there's no refresh method in javascript i think. So how can I do it?
  18. 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
  19. 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

Part and Inventory Search

Back
Top