Configurare program

How to Switch Between Twitter Accounts on the Web

You have long been able to manage multiple accounts using the Twitter app on Iphone,Ipad or Android, but until recently, you had to log out and back in to switch profiles using the social network’s web interface. Thankfully, that’s no longer a problem.

Before we begin, we should note that Twitter is slowly rolling out the ability to switch between accounts from the web. If the feature is not yet live on your account, it should be in a week or two.

[mai mult...]

Deschiderea unei aplicatii cu mesaj de confirmare folosind VBScript

Deschiderea unei aplicatii cu mesaj de confirmare folosind VBScript, un limbaj de scriptare dezvoltat de Microsoft.

Pasul 1 :
Copiem codul de mai jos intr-un editor de text.

Option Explicit
Dim ws,Question,PathProgram
Set ws = CreateObject(“wscript.shell”)
‘change the path of your file
PathProgram = “C:\Program Files\VideoLAN\VLC\vlc.exe”
Question = Msgbox(“Doresti sa deschizi aplicatia VLC?”,VbYesNO + VbQuestion, “VLC”)
If Question = VbYes Then
ws.run DblQuote(PathProgram)
End If
Function DblQuote(Str)
DblQuote = Chr(34) & Str & Chr(34)
End Function

Pasul 2 :
Modificam path-ul programului.Ex: C:\Program Files\VideoLAN\VLC\vlc.exe
Putem modifica mesajul de confirmare “Doresti sa deschizi aplicatia VLC?” cu orice alt mesaj.
Putem modifica chiar si titlul casutei, in cazul nostru VLC.

Pasul 3 :
Salvam documentul, punandu-i orice nume + .vbs la sfarsit.

[mai mult...]