Messages - Gerome [ switch to compact view ]

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 31next
51
Hehe,

As I said to you mouser, I am more than happy to help out the site. If any of the members wish a screencast of an app or apps used in their mini-review or review, simply send me a private message or email me at crosscut @t whaddu d0t com and I will do my best to get it for them to include as quickly as I can. Include what you want demonstrated in the screencast, what points you want made, who makes it, where it can be downloaded, etc (any pertinent information to the program(s)). I will be glad to help out with full reviews as well, and will gladly work along with you as you test and review each application.

As for donationcredits, please, I ask that you instead send those to mouser or the dc.com general account as my work here is done probono. (spelling?). The sheer fact that the site gets more promotion and more recognition is enough for me.

Anyways, My thanks go out to mouser for entrusting me with this task, and I hope to be able to further contribute more to the donationcoder.com website so that it gets the recognition it deserves.

Thanks again and look forward to working with all of you.

Josh

I think I got a mission for your man :)

52
Hello,

Gerome,

This works fine, but i wanted to avoid manually clicking. If possible I want to have a program which monitors for these processses and issues this type of command to kill them.

Thanks

Here is a complete and GUI version of my process killer.
It works from Win95b up to Vista Beta 2 version :)
#Option Explicit
#DllDeclare Kernel32( "CloseHandle", "OpenProcess", "TerminateProcess" )
#DllDeclare User32( "FindWindow", "GetWindowThreadProcessId" )

Const NBSECTOWAITBEFORE = 10

Sub Cleaner()
  Fbsl_settext( hLabel, " > Killer @" & Time(1) & ":" & Time(2) & ":" & Time(3) & " <" )
  '// Put your program list here: its class name or its caption
  Kill( "Notepad", Null )
  Kill( "XLMAIN", Null )
End Sub

Function Kill( byVal szClass, byval szCaption ) As Integer
Dim %pid = 0, %hWnd = 0, %hProc = 0, %PROCESS_TERMINATE = 1
    hwnd = FindWindow( szClass, szCaption )
    If hwnd = 0 Then Return False
    GetWindowThreadProcessId( hWnd, @pid )
    If pid = 0 Then Return False
    hProc = OpenProcess( PROCESS_TERMINATE, False, pid )
    If hProc Then
        TerminateProcess( hProc, 0 )
        CloseHandle( hProc )
        Return True
    End If
    Return False
End Function

Dim %hLabel = FBSL_Control (_
            "static", Me, "zzzz", 1000, 20, 20, 170, 20,_
            WS_CHILD + SS_LEFT + WS_VISIBLE, WS_EX_TRANSPARENT )
FBSL_SetFont(hLabel, "Arial", 12, FW_BOLD, 0 ,0 ,0)
Fbsl_SetFormColor( Me, RGB(128,0,0) )

Cleaner()
SetTimer( Me, 1000, NBSECTOWAITBEFORE * 1000 )

Resize( Me, 0, 0, 220, 90 )
Fbsl_settext( Me, "Process killer" )
Center(Me)
Show(Me)

Begin Events
    Select Case cbmsg
      Case wm_timer
    Cleaner()
      Case wm_close
        Killtimer(Me, 1000)
        Exitprogram(-1)
    End Select
End Events

53
Developer's Corner / FBSL - Fbsl Script Factory
« on: May 25, 2006, 01:25 PM »
Dear all,

As you know, Fbsl project evolves, and onto its basket we have a RAD a la VB in progress...
what you are seeing is 100% Fbsl coded!



Enjoy ;)

54
Hi,

I got a 8 Mb DSL unlimited band for 15 Euro per month ( between $17 to $20 )

55
Developer's Corner / FBSL - Vista & RAD
« on: May 05, 2006, 12:43 PM »
Hello,

Good news !
FBSL is supported under Windows Vista!
It has been tested with success under Vista beta 2 :)

As you can see, FBSL is still in progress and it has a complete RAD à la VStudio.NET if you pay attention to the following screen capture...
This Visual Studio like is 100% developped in FBSL and no extra DLL or specific component is used for this Visual studio like !

Any opinions ?


Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 31next
Go to full version