Search found 103 matches
- Sun Dec 11, 2011 2:56 pm
- Forum: Other Scripting Languages
- Topic: How to make error handling for the end user ?
- Replies: 1
- Views: 4399
How to make error handling for the end user ?
Hi! I have this HTA to compare two files, but i just want to improve it more and more. So my question is : How to make error handling for the end user when it fails or fogots to choose the file N°1 or File N°2 or both ? i.e showing a msgbox to warn him that has missed to choose the file for example ...
- Wed Sep 14, 2011 2:59 am
- Forum: VBScript
- Topic: How to determine the function of encoding ?
- Replies: 0
- Views: 2531
How to determine the function of encoding ?
Hi all ! I am interested in new viruses that are circulating around these days and I noticed it among them that are encrypted or coded to say they can bypass the antivirus. So in order to make a cleaning tool to put everything in order and cover their tracks, In order to do this i must read its cont...
- Sun Sep 04, 2011 3:52 am
- Forum: VBScript
- Topic: Can not find script engine VBScript
- Replies: 3
- Views: 2190
Can not find script engine VBScript
I am under Vista 32-bit, so here is the error I have when I run any VBS script and this after uninstall Avast Internet Security:
Can not find script engine "VBScript"
Do you have an idea of the problem and especially how to solve it ?
Thank you for your help !
Can not find script engine "VBScript"
Do you have an idea of the problem and especially how to solve it ?
Thank you for your help !
- Sun Sep 04, 2011 3:52 am
- Forum: VBScript
- Topic: Can not find script engine VBScript
- Replies: 3
- Views: 2190
Can not find script engine VBScript
I am under Vista 32-bit, so here is the error I have when I run any VBS script and this after uninstall Avast Internet Security:
Can not find script engine "VBScript"
Do you have an idea of the problem and especially how to solve it ?
Thank you for your help !
Can not find script engine "VBScript"
Do you have an idea of the problem and especially how to solve it ?
Thank you for your help !
- Tue Aug 30, 2011 12:13 am
- Forum: VBScript
- Topic: How to convert Unicode characters and vice versa ?
- Replies: 1
- Views: 1337
How to convert Unicode characters and vice versa ?
I have this VBScript that converts the characters in ANSI code. I want to do the same thing but by converting it to Unicode and vice versa! -Is there a function that can make this transformation ? I have no idea about this , Thank you for your help ! Dim i,x,a i = InputBox("Entrer un caractére ou un...
- Mon Aug 29, 2011 3:42 am
- Forum: VBScript
- Topic: How to start the console in a Full screen ?
- Replies: 2
- Views: 1713
How to start the console in a Full screen ?
Hi ! I'm under Windows 7 64 Bits French Version I want to start the console in a Full screen using this vbscript below but it didn't works for me :( Please I need your Help ! Thank you ! dim Ws Set Ws=CreateObject("WScript.Shell") Ws.regWrite "HKEY_CURRENT_USERConsoleFullscreen", "1", "REG_DWORD" Ws...
- Mon Aug 29, 2011 3:42 am
- Forum: VBScript
- Topic: How to start the console in a Full screen ?
- Replies: 2
- Views: 1713
How to start the console in a Full screen ?
Hi ! I'm under Windows 7 64 Bits French Version I want to start the console in a Full screen using this vbscript below but it didn't works for me :( Please I need your Help ! Thank you ! dim Ws Set Ws=CreateObject("WScript.Shell") Ws.regWrite "HKEY_CURRENT_USERConsoleFullscreen", "1", "REG_DWORD" Ws...
- Sat Aug 13, 2011 4:18 am
- Forum: VBScript
- Topic: Problem with Component PassDlg.dll 2.3
- Replies: 3
- Views: 2757
Problem with Component PassDlg.dll 2.3
Hi ! I turn in Windows 7 64-bit Well here I wanted to try this vbscript But apparently I have a little problem I think that the DLL isn't registred yet PassDlg.dll or the compatibility with my environment or something else That's why I need your help ! I downloaded the component here and I installed...
- Sat Aug 13, 2011 4:18 am
- Forum: VBScript
- Topic: Problem with Component PassDlg.dll 2.3
- Replies: 3
- Views: 2757
Problem with Component PassDlg.dll 2.3
Hi ! I turn in Windows 7 64-bit Well here I wanted to try this vbscript But apparently I have a little problem I think that the DLL isn't registred yet PassDlg.dll or the compatibility with my environment or something else That's why I need your help ! I downloaded the component here and I installed...
- Tue Aug 09, 2011 1:27 am
- Forum: VBScript
- Topic: Get ANSI character code for input character
- Replies: 2
- Views: 2272
Get ANSI character code for input character
Problem solved Thank You! Dim i,x,a i = InputBox("Enter character to get ANSI character code.") If i <> "" Then For x = 1 To Len(i) If x <> Len(i) Then a = a & "Chr(" & Asc(Mid(i,x,1)) & ")" & "&" Else a = a & "Chr(" & Asc(Mid(i,x,1)) & ")" End if Next Inputbox "ANSI Code for " & i & " is:",,a End I...