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

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

    borland developer studio - very disappointed

    I'm very disappointed in borland developer studio. None of my projects that compiled and linked fine in c++ builder 6 compiles or links in developer studio. I get plenty of errors. It would take me hours to find out what is going wrong. Some components are gone (like tnmudp) and i do not...
  2. wimvanherp

    references and dereferences

    Can anybody explain this : my %Hash; my @List=qq(test1 test2 test3); $Hash{ListPtr}=\@List; my $ptr=\@List; my @secondlist=@$Hash{ListPtr}; foreach (@secondlist) { print $_;} my @thirdlist=@$ptr; foreach (@thirdlist) { print $_;} @thirdlist has the same contents as @List but @secondlist is...
  3. wimvanherp

    ISO-8859-15 encoding in xml not accepted

    Hallo I have made a script to read xml-files. When the xml-encoding is utf-8 or 8859_1 there is no problem but when the coding ISO-8859-15 is used (-ISO-8859-1+ special symbols as eurosign)the xml-modules do not read anything. Has anybody an idea how to handle this ? I tried xml::twig and...
  4. wimvanherp

    service pack 1 virtual file shares

    I have just installed service pack 1 on my windows 2003 server, and i have found that i cannot make an UNC connection to a virtual fileshare that is located on the server itself. Making the connection via the local driveletter is no problem, but for the services i am running i need to connect to...
  5. wimvanherp

    number of locks

    I got a message from the server that sybase has run out locks, this is very strange because only a few clients were working on the database and the number of locks is 150000. Is there a way to see how many locks are current in use ? sybase 11.9.2 windows NT4 Wim Vanherp
  6. wimvanherp

    libxml2

    Has anybody ever tried to use the libxml2 library in c++ builder ? Can anybody help me on this point ? I have dll's as libxml2.dll and libxslt.dll but the examples do not seem to work (cannot be linked) Wim Vanherp
  7. wimvanherp

    use txmldocument at runtime

    I want to use txmldocument at runtime in a seperate class: f.i. class test { private : TXMLDocument * XMLDoc; public : some functions... } in a function of this class i try the following : XMLDoc= new TXMLDocument(File); // this works allright when i look at the XML property i can see...
  8. wimvanherp

    restore transaction problem with sybase 11.9.2

    I have a restore problem with sybase 11.9.2 . I have a complete dump and a transaction log, restoring the complete dump is no problem, but when i try to restore the transaction log i get the message : "there was activity on the database since last load,must restart load sequence with the load...
  9. wimvanherp

    ansi compatiblity

    How can i use the ansi compatible commands in borland c++ ? I tried to use f.i. string,istream but it was not recognised by Borland. Wim Vanherp
  10. wimvanherp

    c++ builder and directx 9

    I want to develop an application in builder that uses directx to process sound . Can anyone give me tips about books, components that are available ? Wim Vanherp
  11. wimvanherp

    Problems with TServiceApplication

    Hallo, i want to program a service under win2K so i made a little test to see how it works. It is a simple service that just beeps every x msec. It works allright to make and install the service, but as soon as it runs, it is impossible to stop the service. I have to reboot the computer to...
  12. wimvanherp

    size of tempdbdevice

    Can anybody tell me how to determine the size of an optimal tempdb in sybase ? If i make it bigger is it always better or can it get worse ? Is it possible that the database get slower sometimes when the tempdb is too small ? Wim Vanherp
  13. wimvanherp

    HTTP PUT

    Hallo for a certain application i want to put a file with http-put on to a certain webserver. Putting a file with ftp is no problem but i do not find any example of putting a file with http , has somebody done this before and can give me an example of it ? Wim Vanherp
  14. wimvanherp

    MAP filepath into memory

    I have an extern application that writes an xmlfile to a certain path on another computer. Because i want this xml be handled very fast i should want that this path is not a real path on an harddisk but a virtual path so that my application can handle the contents of this xml directly without...
  15. wimvanherp

    mail with several attachments

    I do not find how to send a mail with several attachments. I'm working in Windows. Can anybody help me ? Wim Vanherp
  16. wimvanherp

    touch file on ftpserver

    Does anyone know how to 'touch' (set filedate on current datetime)a file that resides on an ftpserver on an easy way (= without downloading and uploading) ? regards Wim Vanherp
  17. wimvanherp

    variable references in subroutines, what' s wrong ?

    I have a problem with variable references in subroutines: if you see my simple program below i think it should print : abcdefgh, but it returns : SCALAR(0x15dd8d4)edfg. what's wrong with my subroutine ? use strict; sub sub1 { my($VAR)=@_; my $TEMP=$VAR; my...
  18. wimvanherp

    - sign in computername

    Anybody an idea ? I use win32::driveinfo to get available space of a drive, it works execept if there is a - sign in the servername (i use \\server\share ) . How can this be resolved ? regards Wim Vanherp Wim.Vanherp@belgacom.net
  19. wimvanherp

    index in foreach

    I thought i had seen it somewhere but i cannot find it anymore, how do i have access to the index of an array when i am scrolling through it with foreach ? my @list; my $item; my $index; foreach $list(@list) { $index = ???? } Wim Vanherp Wim.Vanherp@belgacom.net
  20. wimvanherp

    calculate diskspace in perl

    i do not find how to calculate the free (and used) diskspace in perl. I used the modules from filesys but they do not work on windows (yes i am still working on that old system). Wim Vanherp Wim.Vanherp@belgacom.net

Part and Inventory Search

Back
Top