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

    thanks , i allready tried with () brackets but that did not work. Wim Vanherp
  3. 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...
  4. 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...
  5. 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...
  6. 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
  7. 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
  8. 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...
  9. 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...
  10. 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
  11. 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
  12. 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...
  13. 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
  14. wimvanherp

    DBBACKUP does not work from scheduler

    Is this script sheduled on another computer than the server ? In that case, you should use a user that has rights on this server for your sheduled job. Wim Vanherp
  15. wimvanherp

    Perl editor recommendation...

    For Windows there is one editor that is really the max and it's free : Perl OPEN-IDE. This is really a programming environment where you can go step by step, evaluate the variables. I couldn't work anymore without this program, once you have worked with it you are addicted Wim Vanherp
  16. 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
  17. wimvanherp

    FTP upload local vs remote

    if you do it on client side you can use the command ftp : f.i. : ftp -supload.txt and in upload.txt: open hostname user password bin lcd d:\localdirectory put filetoupload.txt close but that has nothing to do with perl of course Wim Vanherp
  18. wimvanherp

    FTP upload local vs remote

    Appache can access any file on the system itself but not on the client that has made connection to the webserver and that is the problem of partymong, he wants an upload from a client that makes connection to his webserver Wim Vanherp
  19. wimvanherp

    FTP upload local vs remote

    I had not read the first time that this script runs on a web server. I ahve no experience in running perlscripts on webservers but i think the way you do it is impossible because the script runs on the webserver and therefore can only see local paths (regarding to the server) and not the paths...
  20. wimvanherp

    FTP upload local vs remote

    you have a very strange syntax by calling the remotefile : localfile and vice versa. I suppose this is a result of mistyping. Are you sure you have logged on to the ftp-server and you are in the correct directory ? I use ftp->put($localfile,$remotefile) very often and it works ok, but maybe...

Part and Inventory Search

Back
Top