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

    displaying contents of a file

    is just a text file containing a wsdl, I literally just want to display the text of the wsdl on screen, dont want to operate on it in any other way.
  2. damonh78

    displaying contents of a file

    Hi, I have a Web project that I want to simply upload a file from a client and then display the contents of the file on the browser to the client. I have got the upload part working but am not sure what is the best way to display the data. I tried using labels and textboxes but they do not...
  3. damonh78

    problem using asp control inside an asp.net web application project

    think I have found the problem, I am using that Visual Studio 2003, which I just found out uses .net 1.1. The fileupload control is not present in 1.1. I have converted the project to a Visual Studio 2005 project and it works fine so alls good now. Thanks alot for your help. John
  4. damonh78

    problem using asp control inside an asp.net web application project

    no that doesnt work, I notice that when I start to type <asp:FileUpLoad> the drop down menu that appears to let me autofill in what I am writing, does not contain <asp:FileUpLoad>. Could there be a problem with the way something is configured to its using the wrong version of ASP.Net? I know...
  5. damonh78

    problem using asp control inside an asp.net web application project

    Hi, apologies will use the tags from now on when including code. Thats the thing I am using the same code in both. All I do is create a blank Visual c# project using the asp.net web application template and then in the blank WebForm1.aspx page thats created I click on the html tab and...
  6. damonh78

    problem using asp control inside an asp.net web application project

    Hi, I am a complete asp.net newbie so apologies if I get terminology or otherwise incorrect. I am trying to use the asp:FileUpLoad control to create a webpage that simply uploads a file to my server. This works fine when I simply create a standlone aspx file and place it in my IIS webroot...
  7. damonh78

    try to exec multiple commands on windows using &lt;arg line=

    Hi, I am trying to use the <exec> task to run a perl script on windows. I need to source the environment using a .bat file first so I am running the two commands in the same shell. The code I am trying to use is the following: <exec executable="cmd" dir="${DMTA}" failonerror="false"> <arg...
  8. damonh78

    Using wrong version of VB?

    will have go at that, thanks very much. John
  9. damonh78

    Using wrong version of VB?

    Yeah thats what it should have I know but the VB6 ide turns 5.00 into 5# whenever I type it in for some reason.
  10. damonh78

    Using wrong version of VB?

    Hi, I am a c++ programmer who has to debug some VB code as part of a certification I am doing, I understand and have written basic VB code but am a bit confused as to why the code I am trying to build wont work. This code definitely worked before so I am wondering is there any problem with the...
  11. damonh78

    duplicately named methods in 2 modules how do i differentiate

    will try that thanks alot, John
  12. damonh78

    duplicately named methods in 2 modules how do i differentiate

    modules arent too big, but I would then have to change all other scripts that use the module, which I would prefer not too do, so I was hoping that there is a way of differentiating between the two.
  13. damonh78

    duplicately named methods in 2 modules how do i differentiate

    Unfortunately that doesnt seem to work I can get an error telling me that : it's cant locate the object method new via Package NamesTest::TestRun Cheers anyway, John
  14. damonh78

    duplicately named methods in 2 modules how do i differentiate

    Hi, I am importing 2 modules OrbixTest.pm (resides in /lib/perl) and NamesTest.pm (resides in /Names/lib/perl) using the line: #!/usr/bin/perl -I/lib/perl -I/Names/lib/perl I have discovered that both modules contain a package called TestRun and a function called new in the package that I need...
  15. damonh78

    metacharacters stripped out when inputting from file

    Cheers guys, Thats strange, no unfortunately cant change the [PASSED]. I will try it again with a fresh head this morning and see if it does the same, if so I can always use a different exression to look for. Thanks again, John
  16. damonh78

    metacharacters stripped out when inputting from file

    sure thing its just a regular text file called summary.txt which is generated by another perl script: --- Start - Names test suite result summary - Start --- Testcase for bug12000077results.txt PASSED check file bug12000077results.txt for more details Testcase for lbJ_12.txt PASSED check file...
  17. damonh78

    metacharacters stripped out when inputting from file

    Hi, I am trying to read in a file using the angle operator and then use regular expressions to look for the phrase [PASSED]. I read in the file as one big chunk setting $/ to UNDEF. My regular expression although valid was not working when I ran my perl program. When I tried getting the file...
  18. damonh78

    illegal seek when running a perl program from inside a perl program

    Hi, sorry wasnt in work yesterday. To answer all questions. Yes I am running summary.pl from the command line and yes it is the same user running both scripts. Report.pl pulls information from various disparate logfiles and creates html pages showing the results of the log files. No I dont use...
  19. damonh78

    illegal seek when running a perl program from inside a perl program

    Hi, I have a perl program (report.pl) which when run simply collates a bunch of information from a log file. This program runs fine when run from the command line (I am running it on different unix systems). My problem is that when I try to run this from inside a different perl program...
  20. damonh78

    printing out returned values from mfunction calls in VC++ 6.0 debugger

    hey, sorry wasnt very clear I mean if an object is in scope, and you want to know what one of its functions returns at a certain moment in time, say a getter function on a private member variable, but that function isent called at that time. Using the unix debugger gdb you could just type print...

Part and Inventory Search

Back
Top