Search results for query: *

  1. D

    List Running Process with Child

    Dear All, How can I get the titiles of the running process with child ? Dana
  2. D

    Add User to Group

    Here is my code Imports System.DirectoryServices Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click AddUsertoComputer("\\mydomain\dana", "ftest", True, "Danasekarane") End Sub Public Shared Function AddUsertoComputer(ByVal...
  3. D

    Add User to Group

    Hi all , I am using this link to add a Domain user to the administrator group of my system. But I am getting the error as "The user name is invalid" Can any one help Dana
  4. D

    Menu Click event

    Dear Jhon, Thanks for your reply. I want to know something like this RAISEEVENT (Button4, "Click" ) But this gives the error as Error 4 Identifier expected.
  5. D

    Menu Click event

    Dear All, How to invoke the particular menu(Menustrip) click event during the form load event. ome think like RaiseEvent("Finding_Click") ? Thanks in Advance Dana
  6. D

    ArrayList problem

    Hi all, I am using Array List to store values.I am using this code. Public Class Recovery Public nFilename As String Public nLockedby As String Public nActivityID As String Public Sub New(ByVal nfilename As String, ByVal nLockedby As String, ByVal nActivityid As...
  7. D

    Access password

    No Problem. I found the answer.Here is the Full code 'Mark Reference to 'Microsoft ADO Ext.2.8 for DDL and Security 'From the COM tab Public Shared Function CreateDatabase(ByVal DatabasePath As String, Optional ByVal DatabaseType As JetEngineTypes = JetEngineTypes.Jet4X) As...
  8. D

    Access password

    Hi all, I am using this code to create a Access Database. 'Mark Reference to 'Microsoft ADO Ext.2.8 for DDL and Security 'From the COM tab Public Shared Function CreateDatabase(ByVal DatabasePath As String, Optional ByVal DatabaseType As JetEngineTypes = JetEngineTypes.Jet4X) As Boolean...
  9. D

    Table from SQL to MSAccess

    How to link the Access to SQL .Please explain
  10. D

    Table from SQL to MSAccess

    Dear All, I am using this code to insert table to MSAccess from SQL.But it is not producing any data in the Access table.Can some body help Private Sub FillAccesstables(ByVal sTablename As String) Dim sqltemptable As DataTable 'sql temp table Dim datemptable As DataTable...
  11. D

    Export tables from SQL to Access

    Dear Gurus, How can Export the tables from SQL DataBase to Access database Thanks in Advance
  12. D

    Graphs in Crystal Report

    Dear All, Where can I found information about drawing graphs using CR using VB.Net. Thanks in Advance Dana
  13. D

    Read Image

    Dear All, How to read the images in Xlx,doc and Doc files Thanks in Advance
  14. D

    DataGridview Problem add combobox column

    Dear All, Now I have code this to display the combo box in a datagrid.But I am not able to edit the combo values.How can I add the entered values in the combobox to the item collection.I am using this code ngrid = New DataGridView ngrid.Name = sname...
  15. D

    UserControl

    Dear All, Does any one have any idea of creating a user control like this Thanks & bestRegards Dana
  16. D

    Enum

    The members list will varry.How can build this during design
  17. D

    Enum

    I am retriving the values from the sql table .The returned rows may contain values depends upon the query.This may varry like Val1 val2 Val3 or Val1 Val2 Val3 Val4 Val5
  18. D

    Enum

    Dear John, I am using the code to display some file information. Imports System.ComponentModel Imports System.IO Public Class FilePropertyGrid Public sInputFileName As String Private sFileName As String Private lFilesize As Long Private sFiletype As String Private...
  19. D

    File Properties

    Dear John, Thanks for the reply.I want to fill one property from database how can I?
  20. D

    Enum

    Dear All, How can Build a Enum during run time. Now i have like this Public Enum Test val1 val1 End Enun Now the problem is that the members cannot be declared during design time.It will be defined during run time only.How can I build during run time Thks...
Back
Top