Search results for query: *

  • Users: ballwah
  • Content: Threads
  • Order by date
  1. B

    Question Combine String

    Hi, Does anyone know how to combine string as below? Table_Hobby: C_Name Hobby Peter Sleeping Peter Play Games Peter Badminton Amy Sleeping Outcome: C_Name Hobby Peter Sleeping/ Play Games/ Badminton Amy Sleeping
  2. B

    Inserting a dataset to another

    Hi there, I've imported a set of data from Excel sheet to a dataset in VB.net and would like to update them to the database. Instead of inserting rows by rows, how can I add the new dataset to the the dataset of the database? It would be great if someone can help me solve this problem. Many...
  3. B

    It takes time when loading a form

    Hi, I got a problem when loading another form ... from my 1st form. I'll need the 2nd form to control the 1st one (by calling one function of the 1st form), therefore, I've the below coding when opening the 2nd form: Dim A As New form2(Me) However, everytime I open the 2nd form, it takes...
  4. B

    WinForm shut down automatically without error notice

    Hi all, When there's errors in the program, vb.net will highlight the error row with green color and a dialog comes out....but my Window Forms shut down automatically once error found...Can anyone know how to fix it?? Many many thanks in advance!!!!
  5. B

    No more Dialog Box??

    Hi, I think I've wrongly pressed the "continue" button last time when I saw a Microsoft Visual Studio Debugger (Exception Thrown) Dialog Box :eek: ....Can anyone pls tell me how to reset the default setting of this error configure? :o Many thanks!!!
  6. B

    Module Failed to read Form's textbox

    Hi, I've a form in my vb.net named "Form1", I would like to know if I can get a textbox value from this form by using the Module. Here below is the code of my Module: Module Module1 Public myForm As New Form1 Function testing() MsgBox(myForm.TextBox1.Text) End Function End Module Once I...
Back
Top