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 TouchToneTommy 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: randy4126
  • Content: Threads
  • Order by date
  1. randy4126

    Getting stacktrace in running program without a debugger

    I am looking for some help help getting a stack trace in program that is executing. In our new logging routines we want to include that stacktrace so we are able to tell what program that called the one of library functions is having the the problem. We are running on a system using AIX 5.1...
  2. randy4126

    Mutli joins to a single table.

    I have a table that has two different ID's that link to another table. I want to be able in a single query pull back all the information I need. My we host is running a fair old version of MySQL so I can't do sub quieries. Here is what I came up with and everytime it runs it throws away one...
  3. randy4126

    Net::Ftp Problem.

    Does anyone know how if you are using the Net::FTP module, How I can preserve the the time stamp from the original file? Thanks. Randy
  4. randy4126

    Net::FTP using the third argument in the get method.

    I am having trouble using the third argument in the get method(where in bytes). Every time I use it never downloads the rest of the file. Is this not supported by every ftp server? I am trying to avoid having to send a larger file over and over. I on;y want the new part of the file. Randy
  5. randy4126

    Insert Select problem

    I am trying to insert data into a table from another table. The problem comes in with the unix timestamp column. It always converts the the date to 0000-00-00 but if you run the select query by itself it works just fine(Gives the correct date). Could someone see what I am doing wrong. Here...
  6. randy4126

    Sending a Dataset to stored proceedure.

    Hi, I am new to the stored proceedures and what I would like to do is send a data set to a stored proceedure. I don't know if this is possible. I though maybe you could do this if the stored proceedures had arrays. But I have looked in the books and found nothing on arrays. Below is an...
  7. randy4126

    Nested anonymous hashes

    I recieve this error every time I run this piece of code. "Can't use string ("0") as a HASH ref while "strict refs" in use at ./CMTS_Collector.pl line 427." I am new to anonymous hashes so any help you can give would be appricated. foreach $oid (keys %oids)...
  8. randy4126

    Does anyone know if there is a modu

    Does anyone know if there is a module written to sync a log file using ftp every night. When the log roles it usually changes on pert of the a number Example: sample.log changes to: sammple.001 or is the best to write my own? Thanks. Randy
  9. randy4126

    Refreshing the main Frame every 60 seconds.

    I am trying to refresh the main frame of a page with three frames every 60 seconds. This is what my index.html looks like. <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Frameset//EN&quot; &quot;http://www.w3.org/TR/html4/frameset.dtd&quot;> <html> <head> <title>TWC VOD Monitoring...
  10. randy4126

    Getting the Source of a Perl Script from a web server.

    I was wondering is there a way that I can get the perl source from a web server without the web server running it and giving me only the HTML. I have tried to use the LWP::UserAgent module and this doesn't work. Anyone have any ideas? Thanks in advance. Randy You can Email me at...
  11. randy4126

    socketpair on unix solaris e450

    I have created 5 child process that I need to get the data they create back to the parent process. I am using socketpairs and they don't appear to be communicating. below is my program: #!/usr/local/bin/perl use IO::Handle; use Socket; my $i = 0; my $j = 0; my $pid; my $DeadKid = 0...
  12. randy4126

    Need help inserting a tree into a heap...

    I need help Im trying to implement the huffman algorithm. And i am running into a problem that I need to insert a tree into the heap and i think becuse i told it only a node it cuts off my branches. this is what im doing... struct TreeNode { int Weight; char Letter; TreeNode *RightChild...
  13. randy4126

    How do youinsert a tree into a heap????

    I need help Im trying to implement the huffman algorithm. And i am running into a problem that I need to insert a tree into the heap and i think becuse i told it only a node it cuts off my branches. this is what im doing... struct TreeNode { int Weight; char Letter; TreeNode *RightChild...
  14. randy4126

    After installing package on a different computer you get a run time er

    I have written a program in vb 6.0 and compilied it and created a package using the package and deployment wizard. Everything here seems to go ok and everything goes smooth on install on another computer but when i go to run the installed program it gives me a run time error '424' object...
  15. randy4126

    Sending a page through the internet

    Does anyone know how i can add paging support trough arch over the internet instead of using the modem to dial upp one of thier acces numbers. Iam not sure if this is possible or but i think you should be able to because of their web paging interfaces but i dont want to have to manually enter...
  16. randy4126

    Using mapi mail send how do you add an attachment

    How would you add an attachment to an email using mapi mail with outlook?
  17. randy4126

    How to send email from a vba script

    How do you send an email message from a vba script? thanks Randy
  18. randy4126

    Email DLL load error

    My code: MailPrepare &quot;To&quot;,Email,Subject,MailBodyFile MailAttach MailAttachFile MailSend if NM_ResultCode > 0 Then print NM_ResultText Else Print &quot;Mail Send Was OK.&quot; End If But it doesn't work it gives me a load dll error. any help...
  19. randy4126

    Email

    When i go to email a messege with vba I get an error DLL load error i think im missing a dll file any ideals to what it might be? sample of my code: MailPrepare &quot;To&quot;,Email,Subject,MailBodyFile MailAttach MailAttachFile MailSend if NM_ResultCode > 0 Then...
  20. randy4126

    HOW DO GET THEINDEX OF A LIST BOX WITHOUT USING CASE?

    I need to know how you fin an index the the user clicked in a list box. I cant use case cause the list is constantly cahnging size? thanks

Part and Inventory Search

Back
Top