Search found 103 matches

by hackoo
Tue Dec 30, 2014 4:03 am
Forum: VBScript
Topic: A Vbscript to checks the launch of a .bat and .exe programs
Replies: 3
Views: 6912

A Vbscript to checks the launch of a .bat and .exe programs

Hi ;) I wanted to write a program that checks every 15 minutes if amount of programs is launched like ( toto1.bat, toto2.bat,toto3.bat, iexplore.exe .... ) whether it finds nothing so it launch it This my draft script trying to reach my aim, but i have an error at line 31 Invalid Request Option Expl...
by hackoo
Thu Aug 14, 2014 2:41 am
Forum: VBScript
Topic: Accented french characters in a msgbox
Replies: 1
Views: 17937

Accented french characters in a msgbox

I am trying to write a vbscript that uses Google speech to the pronunciation of a message. I have to save the code into notepad++ with UTF8 encoding without BOM and pronunciation is good, but the display of the message box is not good for accented characters. How to solve this problem ? Thank you ! ...
by hackoo
Sun May 25, 2014 9:04 am
Forum: VBScript
Topic: How to move file while renaming it with incrementation ?
Replies: 6
Views: 245973

Re: How to move file while renaming it with incrementation ?

Thank you very much for this solution that worked for me like i expected ;) And this is my adaptation from your clever code :) Option Explicit Dim fso,Ws,sFiles,sFile,sFileName,Quarantaine,Title Title = "Déplacement des fichiers suspects dans la quarantaine" Set fso = CreateObject("Sc...
by hackoo
Sat May 24, 2014 11:55 am
Forum: VBScript
Topic: How to move file while renaming it with incrementation ?
Replies: 6
Views: 245973

How to move file while renaming it with incrementation ?

Hi ;) In order to improve my script Hackoo VIRUS Cleaner.vbs I created this code to test it before to implement it in my main script, but, i get some issues with this at line N° 46 with Error Saying "File dosen't exists" Thank you for your help ! Option Explicit Dim SFile,SFile1,SFile2,SFi...
by hackoo
Fri Feb 28, 2014 11:40 pm
Forum: VBScript
Topic: [VBS] Collapse and Expand ?
Replies: 5
Views: 15236

Re: [VBS] Collapse and Expand ?

Hi ;)
I found this code written in autoit and using a JQuery to do what i want. Dir2HTML
so i will try if i can integred this javascript into my code :roll:
by hackoo
Fri Feb 28, 2014 8:45 pm
Forum: VBScript
Topic: [VBS] Collapse and Expand ?
Replies: 5
Views: 15236

[VBS] Collapse and Expand ?

Hi ;) In order to finish my code, i would like to add a function when i click over (+) ==> Expand and when i click over (-) ==> Collpase So here is my code : Option Explicit Dim oFilesys,oFiletxt,Path,Ws,SourceImgFolder,StartTime,MsgTitre,DurationTime,objFolder,CheminDossier,Dossier,Copyright Dim Si...
by hackoo
Sat Dec 07, 2013 1:56 pm
Forum: VBScript
Topic: How to open multiple tabs in Internet Explorer with VBS ?
Replies: 3
Views: 14414

Re: How to open multiple tabs in Internet Explorer with VBS

Thank you for this code that worked great for me ;) but in my case i want now to put them in two diffrents Subs like that : Const navflags = 2048 Set IE = CreateObject("InternetExplorer.Application") Call One Call Two '********************************************** Sub One() IE.Visible = T...
by hackoo
Sat Dec 07, 2013 6:50 am
Forum: VBScript
Topic: How to open multiple tabs in Internet Explorer with VBS ?
Replies: 3
Views: 14414

How to open multiple tabs in Internet Explorer with VBS ?

Hi ;) I'm Looking for how to open multiple tabs in Internet Explorer with a vbscript? any idea? I can do it with separate windows but not with tabs ? I show you what i did so far : Option Explicit Dim Titre,MyLogin,MyPassword,IE MyLogin = "Hackoo" If CheckConnectionInternet() = True Then '...
by hackoo
Sat Dec 07, 2013 6:39 am
Forum: VBScript
Topic: [HTA] Sorting Table
Replies: 3
Views: 7634

Re: [HTA] Sorting Table

Thank you for sharing this helpful code ;)
by hackoo
Mon Nov 25, 2013 9:16 pm
Forum: VBScript
Topic: [HTA] Sorting Table
Replies: 3
Views: 7634

[HTA] Sorting Table

Hello, I have a JS that allows you to sort the columns in my table (ASC, DESC). http://www.kryogenix.org/code/browser/sorttable/sorttable.js It works if I do the classic html, I can sort my columns generated statically. <html> <script type="text/javascript" src="sorttable.js"></s...