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 Chriss Miller 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. MickTheBelgian

    run COM interop in separate thread

    I have a sub which calls a lot of COM (ActiveX) stuff. If I call the sub from the main thread, it works perfectly. If I call it as a new thread, the whole program just disapears without any kind of error message. If I replace the sub with something more simple, it also works OK. The entire...
  2. MickTheBelgian

    Use time, not date , as X axis in chart

    I made a chart with numeric X axis, but it groups everything by day, even if I set the x-axis format as a time. I would like to print points with time as X, but not grouped per day. I also set my "on change of" to " this will be printed for every second". Anybody any idea?
  3. MickTheBelgian

    Change user ID

    I use the dot-net api and would like to connect with a different user-id then my Windows account. I can't find anywhere I can set a userid/password?
  4. MickTheBelgian

    Run script upon shutdown

    I want to run a script every time the PC shuts down. There are a few utilities for this, but they are all services just sitting in your memory and waiting for the PC to shut down. There must be a more elegant solution. Is there no registry key or something where you can specify a script? God...
  5. MickTheBelgian

    Linux client on Windows PDC

    Our network uses a windows backup domain controller both as DHCP and DNS. When I connect a linux DHCP client, a reversed DNS shows it has no name in the DNS. Is there a way my Linux client can ask the PDC to register it under a certain name, in the same way Windows PC's are always adressable by...
  6. MickTheBelgian

    parsing a string

    I will get a string from a message queue, having +/- the format Name1=Value1;Name2=Value2;.... I will need to do a "UPDATE XXX SET Name1=Value1 WHERE Name2=Value2;" I am still talking to the guys who make the string and can ask for a different format if I want. Any suggestions on a...
  7. MickTheBelgian

    upload Java through SQLplus

    Hi, I would like to program regular expressions in java. Doc sais I need to upload them using "loadjava", but the problem is I don't have a shell account on the server. Can it be done through SQLplus?
  8. MickTheBelgian

    hide method from base class

    I am making a wrapper around an IBM driver. I inherit it and would like to hide those methods of the base class which are no longer necessary. any ideas?
  9. MickTheBelgian

    bash character set

    I am SSH-ing into a bash-prompt on a redhat box. I would like to change the character set (encoding) the server uses. There doesn't seem to be anything in SSH's config, and I can't find anything in bash. Any ideas?
  10. MickTheBelgian

    copy memory

    I need to convert a home-made structure to a byte-array, so I can load it into an IBM library which will accept nothing else. In good ol' VB6 days that would have been a MEMCOPY API call, but somehow I don't think that will survive the dot-net engine. Is there a better way then encoding the lot...
  11. MickTheBelgian

    determine stored procedures parameters

    How can I find out the exact parameters which need to get passed to a stored procedure. Is there, like user_views, a table which shows all stored procedures with their parameters? I am working from VB.NET. The idea is to let the VB program automatically adapt if the stored procedure gets...
  12. MickTheBelgian

    UPS uninterruptible power supply

    I program for a standalone Dell with UPS. The UPS software can shut down the PC but then it will not come up again by itself after the current comes back on. It is one of these "soft-power" things, I can set it to start after a power loss, but if it shuts down properly before the UPS...
  13. MickTheBelgian

    writing XML

    I would like to write/read a simple XML file for saving program settings, but there seem to be 36 different ways to do it, and the whole thing is pretty confusing. I am not looking for a ready made solution, but can anybody tell me which classes to use/way to go for the simplest implementation?
  14. MickTheBelgian

    is user part of group?

    I know how to pick up the name of the current user, but can I find out if s/he belongs to a certain group? Platform: W2K
  15. MickTheBelgian

    Declaring HEX constants drives me wild

    in a module: Public Const A As Long = &H8000 Public Const b As Long = &H1 Or A run the app, press pause in the immediate window: ?hex(b) FFFF8001 bang head on desk very hard
  16. MickTheBelgian

    file-icons in treeview

    I have a treeview I am loading with names of files present on a remote server. I would like to show the corresponding Icon for each filetype, by "sucking" them out of windows. Any ideas?
  17. MickTheBelgian

    Email-adres in query

    Act! doesn't keep the email adress in the main table, meaning it is not accessible in a lookup. How do I query all contacts with at least one email adres?
  18. MickTheBelgian

    Protect the database

    I would like to prevent someone from running off with the entire company customer database. In other words, disable the "File/Save As" and "File/Export" menus. Anybody any ideas?
  19. MickTheBelgian

    acess MSVCRT.DLL

    I try to get a pointer to a localtime. VB says I use the wrong kind of arguments. (err 49, bad calling convention)What do I do wrong? Original C++ function included as comment: Private Const ExampleTime_t As Long = 1035655310 Private Declare Function LocalTime Lib "MSVCRT.DLL&quot...
  20. MickTheBelgian

    Where is Int32x32To64 declared?

    I want to convert Time_T to VB-Date and back. For this I need the "Int32x32To64()" API function. MSDN says it is declared in WINNT.H, but what location do I put in my "Declare" statement???

Part and Inventory Search

Back
Top