Posts by Lucio Mestrinare • 25 points
6 posts
-
0
votes0
answers17
viewsQ: manifest file
We have a legacy app written on VB6. We are creating Dll resources/classes written in C# and would like to use the App.manifest file to "link" these resources/classes without registering via…
-
-1
votes1
answer474
viewsQ: View active connections on the Firebird server
I have a Windows Server server and in it we have installed Firebird Server Classic 2.5. How we can verify how many clients we have connected to the Firebird server. Thank you.
firebirdasked Lucio Mestrinare 25 -
0
votes1
answer37
viewsQ: How can I get Serialnumber from the BIOS
I’m searching and can’t find a VB6 function to fetch the machine’s BIOS by running the system. Can someone help me?
visual-basic-6asked Lucio Mestrinare 25 -
0
votes2
answers461
viewsQ: Check if active internet connection
Is there any function that returns if there is an active internet connection? I mean, not only the connected network card, but yes, an active connection effectively. Vlw.
visual-basic-6asked Lucio Mestrinare 25 -
-1
votes1
answer1164
viewsA: Reading XML with Equal Tag (Nodes)
SET objXML = CreateObject("Microsoft.XMLDOM") objXML.async = False objXML.load("E:\tmp\xml.xml") DIM root, i SET root = objXML.documentElement MsgBox "Numeros de TAGs (Nodes): " &…
-
-1
votes2
answers1643
viewsA: How do I copy the default Userfom textbox value opened?
For i = 0 To Forms.Count - 1 If Forms(i).ZOrder = 0 Then Forms(i).TextBox1.text End If Next Will it help you?