Posts by Perroni • 51 points
14 posts
-
0
votes3
answers69
viewsA: SQL syntax error in a Flask application
You are running multiple inserts so you need to use cursor.executemany('select * from jogoteca.usuario') I suggest you use it like this SQL_COMMAND = "INSERT INTO TABELA (CAMPOVALORA, CAMPOVALORB,…
-
0
votes2
answers141
views -
1
votes0
answers35
viewsQ: Mysql DUMP COMMAND in VB.NET
Folks good night I need to give this command in VB.NET SHELL but I’m not able to do it I already tried 3 hours I read a lot of things and I can’t think outside the box . Shell("CMD.exe /c cd \ &…
-
-3
votes2
answers242
viewsQ: Fill a multiline-textbox with all items in a combobox list
And you guys are fine ? As I can Fill a textbox with all items in a combobox list in a textbox, and combobox items can be variables come from different places. Stayed like this Code : For Each Linha…
-
1
votes0
answers60
viewsQ: download a text separately a text found within a textbox
Picking a given text within another textbox or richtextbox does not matter when there is an incidence of detailed text, e.g.: "text": take out of double quotes when the next sentence is found and…
-
-2
votes1
answer867
viewsA: How to delete a file without extension by SHELL
Shell("CMD.exe /c DEL /q ""%LOCALAPPDATA%\Google\Chrome\User Data\Default\History"" ") @Bacco , answer given by him in another topic .
-
-1
votes1
answer867
viewsQ: How to delete a file without extension by SHELL
In visual basic I use this command and I can delete all the files inside the cache folder of google Chrome as in the example below : Shell("CMD.exe /c DEL /q"%LOCALAPPDATA% Google Chrome User Data…
-
-2
votes1
answer1501
viewsQ: How to delete all files from a folder using VB Shell
I’m trying like this and I can’t: Shell("CMD.exe /c ""C:\Users\""%username%""\AppData\Local\Google\Chrome\""User Data""\Default\Cache\DEL *.* /Q"" ") In this case the folder is the Googlechrome…
-
0
votes2
answers2983
viewsA: Run DOS commands in Visual Studio
Problem solved , I resolved so : To start Shell("net start WSearch") 'Windows Search Start' To Stop Shell("net stop Wsearch")'Windows Search Stop'…
-
0
votes1
answer2105
viewsQ: How to get permission to write in the Windows registry via VB to HKEY_LOCAL_MACHINE key
Guys I’m trying to record a record inside the HKEY_LOCAL_MACHINE\SYSTEM and visual studio / visual basic won’t let me have access. It says I’m not allowed to record my record. My command:…
-
1
votes1
answer105
viewsA: Save Dword, Decimal value in 64 Bits
It was like that at the end. Dim Numero = 22 My.Computer.Registry.Setvalue("HKEY_CURRENT_USER Software Minhachavecriada", "DECIMAL 64 Bits Qword", Numero, Microsoft.Win32.RegistryValueKind.Qword)…
-
0
votes1
answer105
viewsQ: Save Dword, Decimal value in 64 Bits
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click Dim Numero = 22i My.Computer.Registry.SetValue("HKEY_CURRENT_USER\Software\MinhaChaveCriada", "DECIMAL 64 Bits",…
-
1
votes1
answer486
viewsQ: Write a Dword value to Decimal in the Windows Register
I need to record a decimal Dword record in Visual Basic Express 2013. How the code was written: Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click Dim Dec As Decimal…
-
2
votes2
answers2983
viewsQ: Run DOS commands in Visual Studio
I need to know which command on Visual Studio 2013 executes the command to stop a Windows system service. No DOS I do like this: net stop Audiosrv netstart Audiosrv exit The other question is how to…