1. Most routers come with a built in firewall and any half decent firewall will reject any unsolicited requests to port 80, unless of course you are hosting a web server. It is called state full packet inspection. Most SOHO routers have it as standard.http://en.wikipedia.org/wiki/Statef...A hackers canRead more

    Most routers come with a built in firewall and any half decent firewall will reject any unsolicited requests to port 80, unless of course you are hosting a web server. It is called state full packet inspection. Most SOHO routers have it as standard.

    http://en.wikipedia.org/wiki/Statef…

    A hackers cant do anything unless you have some malware on your computer that will respond to an incoming request.

    A decent firewall can be configured to reject ICMP requests which is used by the ping command. Once ping requests are blocked your computer is to all intents and purposed is invisible on the Internet.

    Try pinging 5.81.36.144 which is my IP address. You wont get a response even though port 80 may well be open. That is called stealth mode in most firewalls.

    Check here to see how well configured your firewall is.

    https://www.grc.com/x/ne.dll?bh0bkyd2

    Stuart

    See less
    • 0
  2. =DATE(YEAR(A1+30),MONTH(A1+30)+1,1)Lots of Date and Time functions can be found here:http://www.cpearson.com/excel/DateT...I modified the Last Day Of Month formula to get to your solution.Click Here Before Posting Data or VBA Code ---> How To Post Data or Code.

    =DATE(YEAR(A1+30),MONTH(A1+30)+1,1)

    Lots of Date and Time functions can be found here:

    http://www.cpearson.com/excel/DateT…

    I modified the Last Day Of Month formula to get to your solution.

    Click Here Before Posting Data or VBA Code —> How To Post Data or Code.

    See less
    • 0
  3. Right click the sheet tab for the "master" worksheet, choose View Code and paste this code into the pane that opens:Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 6 And Target = "Completed" Then ActiveWorkbook.Sheets.Add after:=Worksheets(Worksheets.Count) Sheets(Sheets.CountRead more

    Right click the sheet tab for the “master” worksheet, choose View Code and paste this code into the pane that opens:

    Private Sub Worksheet_Change(ByVal Target As Range)
      If Target.Column = 6 And Target = "Completed" Then
        ActiveWorkbook.Sheets.Add after:=Worksheets(Worksheets.Count)
         Sheets(Sheets.Count).Name = _
            Range("A" & Target.Row) & "- " & _
            Range("B" & Target.Row) & "- " & _
            Range("C" & Target.Row)
       End If
    End Sub

    Click Here Before Posting Data or VBA Code —> How To Post Data or Code.

    See less
    • 0
  4. I guess my Logitech mouse needs helpTry updating your mouse driver.You should be able to find it at the Logitech web site.Look here:http://www.logitech.com/en-us/suppo...MIKEhttp://www.skeptic.com/

    I guess my Logitech mouse needs help

    Try updating your mouse driver.
    You should be able to find it at the Logitech web site.

    Look here:

    http://www.logitech.com/en-us/suppo…

    MIKE

    http://www.skeptic.com/

    See less
    • 0
  5. Go to your web mail server and delete all messages in the Inbox. Then, if this doesn't solve the problem, on Outlook go to menu File –> Info –> Account Settings –> E-mail tab. Double click on the e-mail account with the problem, click on the More Settings... button, and chose the Advanced tRead more

    Go to your web mail server and delete all messages in the Inbox. Then, if this doesn’t solve the problem, on Outlook go to menu File –> Info –> Account Settings –> E-mail tab. Double click on the e-mail account with the problem, click on the More Settings… button, and chose the Advanced tab; on the last three lines (controlling the messages to leave or delete on the server) make sure all three boxes are unchecked.

    Hope this helps. If it does post it here, please.

    See less
    • 0
  6. no. you can't using unassisted batchscript. Here are a couple of "assistants". First, vbscript to set the lock:VBSCRIPT "capslok.vbs":'==========================dim wshset wsh=createobject("wscript.shell")x=wscript.arguments(0)'note that this is set to turn capslock ON regardless. x mod 2=1 will setRead more

    no. you can’t using unassisted batchscript. Here are a couple of “assistants”. First, vbscript to set the lock:
    VBSCRIPT “capslok.vbs”:
    ‘==========================
    dim wsh
    set wsh=createobject(“wscript.shell”)
    x=wscript.arguments(0)
    ‘note that this is set to turn capslock ON regardless. x mod 2=1 will set it OFF
    if x mod 2 =0 then wsh.sendkeys (“{capslock}”)
    ‘—————– end
    unfort. that is completely useless without knowledge of the key’s status. This will read the locks keys as binary digits, 1 bit per lock, in order: scroll, num, caps:
    BATCHSCRIPT:
    :============================
    @echo off & setlocal
    :: read & report the status of the locks-keys: scoll:num:caps output as boolean/binary
    :: note that addr 0:497 could also be used, not sure what the diff. is
    :: the foll. is ALL ON ONE LINE up to /including the goto
    for /f “skip=1 tokens=2” %%a in (‘(echo d0:417,417 ^&echo; q^) ^|debug’) do set byte=%%a & goto :xx
    :xx
    :: bits are: 1=scroll, 2=nums, 4=caps. Masks 0x10, 0x20, 0x40 resp.
    :: you can change the order of output bits: 20,40,10 will match indic.lights
    for %%i in (10 20 40) do call :aa %%i
    echo %out%
    cscript capslok.vbs %out%
    goto :eof

    :aa
    set /a test=(0x%byte%”&”0x%1)/0x%1
    set out=%out%%test%
    ::—— end

    A whole lot of bother for something so trivial, huh! oh well…
    on older systems (preXP), you could set the locks directly in
    memory (0000:0417). but MS doesn’t like us to have that much control without going through more hoops.

    See less
    • 0
  7. This will work on vista and windows 7. If you don't have that you will need to replace the "TIMEOUT /t 1" with "PING /n 2". (PING is less accurate).@ECHO OFF :Setup SET /p Days=Days: SET /p Hours=Hours: SET /p Minutes=Minutes: SET /p Seconds=Seconds: :Countdown CLS ECHO %Days% - %Hours% - %Minutes%Read more

    This will work on vista and windows 7. If you don’t have that you will need to replace the “TIMEOUT /t 1” with “PING /n 2”. (PING is less accurate).

    @ECHO OFF
    
    :Setup
    
    SET /p Days=Days:
    SET /p Hours=Hours:
    SET /p Minutes=Minutes:
    SET /p Seconds=Seconds:
    
    :Countdown
    
    CLS
    ECHO   %Days%  -  %Hours%  -  %Minutes%  -  %Seconds%
    ECHO Days  Hours  Mins  Secs
    
    TIMEOUT /t 1 >Nul
    
    IF "%Seconds%"=="0" (
    	IF "%Minutes%"=="0" (
    		IF "%Hours%"=="0" (
    			IF "%Days%"=="0" (
    				GOTO Done
    			)
    			SET /a Days -=1
    			SET Hours=24
    		)
    		SET /a Hours -=1
    		SET Minutes=60
    	)
    	SET /a Minutes -=1
    	SET Seconds=60
    )
    
    SET /a Seconds -=1
    GOTO Countdown
    
    :Done
    
    CLS
    ECHO Times Up!
    ECHO.
    PAUSE

    See less

    • 0
  8. It looks like it's associated with a synaptics touchpad driver. This person solved it by rolling back the driver to an earlier one:http://forums.techguy.org/virus-oth...That thread is a few years old. You might look for a driver update.

    It looks like it’s associated with a synaptics touchpad driver. This person solved it by rolling back the driver to an earlier one:

    http://forums.techguy.org/virus-oth…

    That thread is a few years old. You might look for a driver update.

    See less
    • 0