User Profile

Collapse

Profile Sidebar

Collapse
dinitiae
dinitiae
Last Activity: Feb 7 '14, 09:54 PM
Joined: Feb 7 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • MultiThread: how can I do two or more procedures

    MultiThread: how can I do two or more procedures?

    Code:
    Dim I1 As Integer
        Dim I2 As Integer
    
        Dim THREAD1 As System.Threading.Thread
        Dim THREAD2 As System.Threading.Thread
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Control.CheckForIllegalCrossThreadCalls = False
        End Sub
    
        Private Sub Button1_Click(ByVal
    ...
    See more | Go to post
    Last edited by Frinavale; Feb 12 '14, 09:01 PM. Reason: Please use [CODE] and [/CODE] tags when posting code or formatted data.

  • how can I export datagridview to Excel

    Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            DATAGRIDVIEW_TO_EXCEL((DataGridView1)) ' PARAMETER: YOUR DATAGRIDVIEW
        End Sub
    
        Private Sub DATAGRIDVIEW_TO_EXCEL(ByVal DGV As DataGridView)
            Try
                Dim DTB = New DataTable, RWS As Integer, CLS As Integer
    
                For CLS = 0 To DGV.ColumnCount - 1 ' COLUMNS
    ...
    See more | Go to post
    Last edited by Rabbit; Feb 8 '14, 06:31 AM. Reason: Please use [CODE] and [/CODE] tags when posting code or formatted data.

  • dinitiae
    started a topic how to do datatable without database

    how to do datatable without database

    Code:
    ' copy this code in a new proyect
    
    Public Class Form1
        WithEvents DataGridView1 As DataGridView, PBX As PictureBox
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Try
                DataGridView1 = New DataGridView
                DataGridView1.Location = New Point(100, 100)
                DataGridView1.Size = New Point(300, 200)
    ...
    See more | Go to post
    Last edited by Rabbit; Feb 8 '14, 06:31 AM. Reason: Please use [CODE] and [/CODE] tags when posting code or formatted data.
No activity results to display
Show More
Working...