mh okay thankyou
User 11883281
Posts
-
How to find out, if the toolbar icon or the notifyicon is clicked -
How to find out, if the toolbar icon or the notifyicon is clickedHello, I just want to find out if the tollbaricon or the notifyicon ist clicked. I know how to do that in a own class. My problem is, that I have a while-loop and in this one, I must check if one of the button is klicked. (Because only then the while have to break.) May you help me? May you have other ideas how i can realize it?
-
How can I format a text selection in bold AND italic?perfect thank you so much!
-
How can I format a text selection in bold AND italic?thanks a lot it works do you know how I can say that I will get the currentFontStyle without bold ? so if the selection is bold and italic and now i just want it in italic? i only want the code...
-
How can I format a text selection in bold AND italic?What the suject says... I can format the selection to bold and to italic. but when I want the text bold and italic the formation is set to regular automatically. Thats my code:
newfont = FontStyle.Bold & FontStyle.Italic;
richTextBox1.SelectionFont = new Font(currentfont.FontFamily, currentfont.Size, newfont); -
How to restart a Programm in Release-Modus per CodeI know how to start it in debug/release modus with a mouseklick, i just want to do this with a codesnipped
-
How to restart a Programm in Release-Modus per Codei just want to restart my programm with code. but not in the debug modus, in the release modus
-
How to restart a Programm in Release-Modus per CodeI've Visual Studio and programming in C# now I want my programm to restart on his own, but i need to restart in Release, because a class changed. con you may help me?
-
how to start a vbs script in a vbs script on a client computerokay, please let me explain again: I have one service running on the server (service is running as domain administrator). this service executes my script. this script should start another script on a client, wich prompts a msgbox for the currently logged in user. Due the service (and so also the script) is running as domain administrator, I hope I can use its permissions for the client, no matter wich user is logged in on the client. I hope everything is clearly for you now.
-
how to start a vbs script in a vbs script on a client computerI don't want to run it on a remote machine... i want to start a script on a server and this script should run the other script on a normal pc... which is used by a user... my problem is that when i run it on the user, my msgBox isn't shown anywhere, so I think i have to run it on the pc, isn't it right? sry if my first question wasn't clearly...
-
how to start a vbs script in a vbs script on a client computeri now how it works with a user:
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.run "runas /user:'username' 'script.VBS'"
WshShell.AppActivate ("runas.exe")but i want to put the clientcomputer instead of the user... can you help me
-
VBS for next loopThank you very much.... i don't even know what the error was. I had to restart the server, and now it works without doing anything :D but thank you :D
-
VBS for next loopoh thankyou but that wasnt the error at all
-
VBS for next loopThis:
Dim i as Integer
for i = 0 To 20
' MsgBox "Blubb" & i & "bla"
' ticketno = Replace(ticketno,"("& i & ")","")
Nextor this
Dim i
for i = 0 To 20
' MsgBox "Blubb" & i & "bla"
' ticketno = Replace(ticketno,"("& i & ")","")
Nextis showing the error
-
VBS for next loopi just ignor the step, it doesnt matter if it says "step 1" or nothing, 1 is the default value
-
VBS for next loopi just looked at this, but i do not find a mistake in my code
-
VBS for next loopokay, thank you but the error is still comming it have to be the loop, cause i now only have
For i = 0 To 20 Step 1.0
Next i
and the error is still comming
-
VBS for next loopsry that was a mistake, i don't have this in my code... it was a copy and paste error -.- now my code is right
-
VBS for next loopI'm new in VBs.. i've got this code:
For i = 0 To 20 Step 1.0
MsgBox "Blubb"& i &"bla"
Next iand this error: 800A0401 "Statement completion expected" "Compile error in Microsoft VBScript"
-
VBS for next loopI'm new in VBf.. i've got this code:
For i = 0 To 20 Step 1.0
MsgBox "Blubb" & i & "bla"
Next iand this error: 800A0401 "Statement completion expected" "Compile error in Microsoft VBScript"