You are not logged in.

Search results

Search results 1-5 of 5.

Wednesday, June 24th 2009, 7:07pm

Author: gabizzz

How to read a MDB database?

http://www.jabaco.de/board/35-datenbank-anbinden.html Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Public Sub Command1_Click() ' DATABASE: myMDB.mdb ' |_ TABLE: test ' |_ FIELD 1: id ' |_ FIELD 2: test1 ' |_ FIELD 3: test2 Dim res As ResultSet Database1.ConnectMDB("C:\myMDB.MDB") Dim rows As Integer = 0 JBGrid1.Cols = 3 JBGrid1.Header(0) = "ID" JBGrid1.Header(1) = "Test1" JBGrid1.Header(2) = "Test2" res = Database1.ExecuteStatement("SELECT * FROM test") Do While ...

Wednesday, June 24th 2009, 5:41pm

Author: gabizzz

is it possible to create a MenuGroup in a MDIChild?

index.php?page=Attachment&attachmentID=84 Hola, hice este ejemplo, espero te sirva. Saludos In MDIForm1 Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Dim Formulario(5) As MDIChild1 Dim NFormularios As Integer Public Sub Form_Load() Call Me.ToolBar.createToolBarItem("MDIForm", "MDIForm", "ToolTip", formPng, fmPicturePositionLeftCenter) End Sub Public Sub Form_ToolBarClick(ToolBarItem As VB#IToolBarItem) If ToolBarItem.ControlID = "MDIForm" Then Formulario(NFormularios) = New MDIChild1 Formulario(N...

Wednesday, June 24th 2009, 4:36pm

Author: gabizzz

open new form

Hi, look at this! Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 Dim Formulario(5) As Form Dim NFormularios As Integer Public Sub Form_Load() Call Me.ToolBar.createToolBarItem("Form2", "Form2", "ToolTip", formPng, fmPicturePositionLeftCenter) Call Me.ToolBar.createToolBarItem("Form3", "Form3", "ToolTip", formPng, fmPicturePositionLeftCenter) End Sub Public Sub Form_ToolBarClick(ToolBarItem As VB#IToolBarItem) If ToolBarItem.ControlID = "Form2" Then Formulario(NFormulario...

Thursday, June 18th 2009, 6:55pm

Author: gabizzz

Connect to MySQL Database without Database component

The recommended way from the MySQL-website is connecting to the MySQL-Server through JDBC with the Connector/J-driver. MySQL Connector/J is a native Java driver that converts JDBC (Java Database Connectivity) calls into the network protocol used by the MySQL database. The installation of this driver is very simple: Download the driver and copy the included Jar-file (e.g. "mysql-connector-java-3.0.17-ga-bin.jar") to the "[...]\jre\lib\ext"-folder in your current Java-installation. The JDBC API is...

Thursday, June 18th 2009, 6:43pm

Author: gabizzz

get selected row or column

Hello!!! How can I get selected row or column on JBgrid? Alway return -1 Public Sub JBGrid1_Click() msgbox JBGrid1.row() End Sub

WoltLab Burning Board