Posts by Lelecko San • 60 points
5 posts
-
1
votes1
answer1201
viewsA: Required checkbox with javascript to click link
<a href="#" onclick="fcnConfirma();">Remover Perfil</a> <input type="checkbox" id="remover" name="remover">Tenho certeza de que desejo remover o…
-
2
votes2
answers79
viewsA: UPDATE SET in a record
UPDATE pedidos SET produzido = '1' WHERE protocolo = '".$idget."'"
-
1
votes2
answers102
viewsA: Generate text from a combobox
Private Sub Form_Load() Combo1.AddItem "Text1" Combo1.AddItem "Text2" Combo1.AddItem "Text3" Combo1.AddItem "Text4" End Sub Private Sub Combo1_Click() 'ListIndex…
visual-basic-6answered Lelecko San 60 -
0
votes3
answers5685
viewsA: How do I open a file from a specific directory in . PDF in Visual Basic 6?
'Declarepara Executar Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As…
-
-2
votes2
answers2679
viewsA: Copy text from a textbox
Private Sub Command1_click() txt.Selstart = 0 txt.Sellength = Len(txt. Text) txt.Setfocus Clipboard.Clear Clipboard.Settext Screen.ActiveControl.Seltext End Sub