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

    IRC Bot problems...

    Hi all, I've just started writing the most basic bot ever, namely the hello_bot :) Basically it is supposed to log into a channel and greet it... This is the source code I have: use Net::IRC; $irc = new Net::IRC; $conn = $irc->newconn( Nick => 'DCPTestBot', Server =>...
  2. Raenius

    Getting data from 5 minutes ago using DATEDIFF?

    Hi all, Currently I am working on a SQL query which I can't seem to get working properly. I want to gather distinct data from a table with a timestamp of 5 minutes before localtime. I've gotten so far: SELECT DISTINCT ROUTERS.name AS Router_Name FROM ROUTERS INNER JOIN...
  3. Raenius

    Threading and timer stop / start?

    Hi all, I'm stuck with my application with regards to starting and stopping a timer based on whether a thread is finished or not. In my main program there is a timer and when it is triggered it: - stops the timer - spawns a thread which goes about pinging IP addresses and updating a database...
  4. Raenius

    Ping Utility freezing up...?

    Hi all, I am working on incorporating the C# ping Utility from http://www.csharphelp.com/archives/archive6.html into my own winform program. I had to adjust some things (variables etc) for it to work but never mind that. I am currently calling the function with IP addresses I get out of my...
  5. Raenius

    Strange if statement behaviour...

    Hi all, On the load of a windows form I run some quesries against a database and extract some fields. For example if a certain settings is to be enabeled or not. If you look at the following code: // Audio Tab Page settings string msg2 ="Audio_enabled: " +audio_en...
  6. Raenius

    Problem with adding a relationship SQL Server

    HI, When I try to create a relationship between to tables in my database it gives the following error: 'ROUTERS' table saved successfully 'PINGS' table - Unable to create relationship 'FK_PINGS_ROUTERS'. ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]ALTER TABLE statement...
  7. Raenius

    DataGrid Appearance

    Hey all, I'f done some searching but have not been able to find specifically what I am looking for so maybe some one here can help me.. If you look at my Datagrid here: http://www.theforumisdown.com/uploadfiles/1203/datagrid.JPG What I want is basically two things, I want to have the...
  8. Raenius

    Problems with getting data from Database

    Hi all, I told you I'd be back ;-) Oke here's the problem, I am currently toying around with retreiving data from my database server (SQL Server 2000) which is on my local LAN. I just made a form with a button in Borland C#Builder and when you press the button it should connect and retreive...
  9. Raenius

    Problem with putting XML data in variables

    Hi all, I've got a settings.xml file in which are some default settings I want to display on a form in a application. The settings.xml is built up like this: <router> <name>Test</name> <ip>192.168.100.3</ip> <description>Hello</description> <ttl>255</ttl>...
  10. Raenius

    I've been having a problem with the

    I've been having a problem with the exception handling and catching, what is wrong with te following code? It is the load for a form in my app. This is the code: private void NewRouter_Load(object sender,System.EventArgs e) { try { string settings = &quot;settings.xml&quot...
  11. Raenius

    GUI Port Scanner with socket problem

    Hi all, I am having two problems: 1. I can't get the output of the scan to my right text frame :S Have no clue how to do this 2. Everything is quite slow, can I make this faster? Here is my code: use IO::Socket; # DCP Log Analyser GUI t #use strict; use Tk; use Tk::OptionMenu; use...
  12. Raenius

    How accurate a portscan with Socket?

    Hi all, I am trying to write something of a portscan utility for use in our company to check if our routers or computers are well defended, e.g. most ports are closed etc... I saw some examples here on this forum, but my question was if you can't connect to it bu use of the socket module, is...
  13. Raenius

    Perl TK Problem

    Hi all, I just took my first steps to build a GUI in Perl fom my log analyser. Now I want to create a standard topmenu with dropdown menus. I have the following code, but it does not seem to display the second menu item I want to show. (first being file and next to it I want edit). When I...

Part and Inventory Search

Back
Top