08-29-2025, 02:25 AM
(This post was last modified: 08-29-2025, 02:49 AM by Stuart McLachlan.)
I'll be logging in here regularly now.
New Scheduled Task I'm going to run at 8:00 am daily just in case they do put it back up
'
New Scheduled Task I'm going to run at 8:00 am daily just in case they do put it back up

'
Code:
#COMPILE EXE
#DIM ALL
#LINK "PipeToString-PBWIn.SLL"
FUNCTION PBMAIN () AS LONG
LOCAL wsResult AS WSTRING
LOCAL sCmd AS STRING
sCmd = "nsLookup forum.powerbasic.com"
wsResult = PipeToString(sCmd)
IF INSTR(wsResult,"Name:") THEN ? wsResult,,sCmd
END FUNCTION
'