Zniceho nic se nikdy nic nedeje. Premyslej. Neinstaloval jsi treba mezitim nejaky program? Takovy Skype a jiny, delaji neplechu, pletou se do portu webovych suzeb, db, http a pod. Pak je treba zmenit nastaveni, bud u db nebo u skypu.
Ja pouzivam phpmyadmin.
Mel jsem snad Adminer a taky tusim nebo jiny program, snad MySQL Workbench. Umelo to kreslit i schema db. Coz jsem potreboval. Vetsinou to bylo treba napojit na databazi. Takze musis mit pusteny sql server a znat prihlasovaci udaje. Mas pusteny sql server? Mas tam zadane spravne prihlasovaci udaje? Nemenil jsi treba heslo pro databazi?
Příspěvky odeslané z IP adresy 2001:718:2601:1f7:adb4:b2...–
forko5
using System.Diagnostics;
using System.Windows.Forms;
// ...
Process p = Process.Start("SomeProgram.exe");
p.WaitForInputIdle();
if()
{
Process.Start("");
Thread.Sleep("1000");
SendKeys.Send(" ");
}
google = SendKeys.Send visual basic SPACEBAR
forko1
Keys key = Keys.Space;
PostMessage(hWndEdit, WM_KEYDOWN, (uint)key, 0); }
- forko2 -
text & chr(32) & text
SendKeys.Send("text" & "{SPACE}" & "text")
- forko3 -
Sendkeys.Send("{Space}") should work, but the window needs focus.
SendKeys " "
- forko4 -
Have you tried s = "%( )ep" ??
The parentheses simply specify that space is to be pressed while Alt is
down, and then E and P are pressed after that.
AppActivate(DosTitle.Text)
s = "%" & " " & "ep"
SendKeys.SendWait(s)
- stranka codeguru -
SendKeys.Message(Keys.Space, w)
SendKeys.Send("Hello", SendKeys.GetWinHandles("New Text Document - _
Notepad", 1, "Edit", 1))
Napis, zda neco z toho funguje, pak, pro ostatni.