Search results for query: *

  • Users: cuisancio
  • Content: Threads
  • Order by date
  1. C

    Problem with datagrid in visual basic .net

    Hello, i have to migrate some code from VB6 to VB .net and i've found a problem with the datagrid. I've this method, it runs well in VB6. Public Sub ShowDatagrid(ByVal dtg As DataGrid) Dim i As Integer Dim HeighN As Long Dim ValidColumns As Integer ValidColumns...
  2. C

    Big problem with a method

    Hello, I have to migrate a VB6 app to VB .net and i've found a very big problem with a method. The situation is this: I have a method who takes a form as parameter Public Function Update(ByRef f_called As System.windows.forms.form, ByRef rst As ADODB.Recordset, ByRef Mode As String) As...
  3. C

    Close form from another

    Hello, I had a Vb6.0 app which showed a main form. This form showed another form to login. When you clicked the "Cancel" Button in the login form, this form closed itself and the main form. Private Sub b_Cancel_Click() Unload f_Login Unload f_Main End Sub Now, I have to do this app...
  4. C

    stdole.IPicture.Disp to System.Drawing.Ico

    Hello, I need to put icons in a vb.net menu. The icons are in a AxImageList called Images, so when i have to extract an icon i do Images.ListImages("name").ExtractIcon but this method returns a stdole.IPictureDisp. The problem is that i have a class to put the icons in the menu which receives...
Back
Top