Search results for query: *

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

    How to syncronize threads

    Hi! I have a program with a FileSystemWatcher. Everytime a new file is created in my folder I create a new thread to read him. Private Sub fSysWatcher_Changed(...) Handles oSysWatcher.Changed oTh = New Thread(AddressOf ReadFile) oTh.Name = e.Name oTh.Start() end sub But I have...
  2. B

    Error 1053 using FileSystemWatcher in a service

    Hi. I have Windows Service with this code. fSysWatcher is a FileSystemWatcher --------------------------------- --------------------------------- Protected Overrides Sub OnStart(ByVal args() As String) ' Inserire qui il codice necessario per avviare il proprio servizio. Il metodo deve...
  3. B

    Equivalet ofproperty bag in VB.NET?

    Hi! How to show the properties of a control in property windows? Is there something like the propertybag of VB6?! Thanks!!
  4. B

    Loading controls dinamically

    Hi! I have a problem: i have to generate dinamically 5 button. Private WithEvents btnTest As Button Private Sub Form1_Load(...) Handles MyBase.Load Dim i As Integer For i = 1 To 5 btnTest = New Button btnTest.Name = "btnTest" btnTest.Tag = i...
  5. B

    Do I have to use multithreading???

    I have a folder containing 10 files. For each file I have to invoke Start() method of another class library. How to wait until it finish elaboration? Do I have to use multithreading? Help Me!!! TKS!
  6. B

    CreateObject? In .NET?

    CreateObject cannot be used to create instances of classes in Visual Basic unless those classes are explicitly exposed as COM components. Is there any way to use CreateObject method or other similar methods with .Net components? TKS
  7. B

    CreateObject

    I'm an Italian boy... my English is not very well... Is there any way to intercept events of an object instanced by the CreateObject statment? Thanks!!
  8. B

    How to get DB Schema

    Is there any way to get the schema of a SQL Server Database? Thanks
  9. B

    How to copy a folder to an other location in VB.Net

    Is there any way to copy a folder to an other location using VB.Net? Thanks!!
  10. B

    How to create folder in VB.Net

    Is there any way to create a new folder using VB.Net? Thanks!!
  11. B

    Note bug in DeriveParameters Function with sqlTransaction object... How to?

    The DeriveParameters Function has a note bug: it does not check to see if the command is enlisted in a transaction before requesting the parameters from the server, so if I try to use it during a transaction... Error: Execute requires the command to have a transaction object when the...
  12. B

    How to hide listview colunmn headers?

    Is there a way to hide the listview column headers like the HideColumnHeader VB6 property? Thanks
  13. B

    How to hide listview column header in VB.Net?

    Is there a way in Vb.Net to hide the listview columnheader like the HideColumnHeader VB6 property? Thanks
  14. B

    HideColumnHeader VB6 property. VB .Net?

    Is there a way to hide the listview column headers like the HideColumnHeader VB6 property? Thanks
  15. B

    CharArray to String conversion

    Is there a VB.Net function to convert a char array to a string variable Thanks!!
  16. B

    VB6 NodeClick Treeview event. In Vb.NET?

    Hello. My English is not very well... I'm an Italian Boy... sorry... Is there a way to reproduce in VB.Net the NodeClick event of VB6 treeview? Thanks!
Back
Top