Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

kvelu d

@kvelu d
About
Posts
13
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • vb2008 doesn't call a sub in a form Called through assembly
    K kvelu d

    just two days back only i solved this problem, Try this below code and this may help you to find out your solution

    ******This is your windows application or class library project, but it should be "Public Module"******
    Public Module TestModule
    Public Sub Test()
    MsgBox("Test successfully completed")
    End Sub
    End Module

    ******Below Code to your Current Project******
    Imports System.Reflection

    ******Use the below code at any event or funtions******
    Dim Path As String = "......\"
    Dim FileName As String = "XXXX.dll" 'Or "XXXX.exe"
    Dim FileAssembly As Assembly = Reflection.Assembly.LoadFile(Path & FileName)
    Dim ModuleName As String = "TestModule"
    Dim SubName As String = "Test"
    Dim RefType As Type = FileAssembly.GetType(FileAssembly.GetName.Name & "." & ModuleName)
    Dim MyForm As Form = New Form
    RefType.InvokeMember(SubName, BindingFlags.InvokeMethod, Nothing, MyForm, Nothing)

    Please tell me the above codes are working or not.......

    Visual Basic help

  • Create setup project using own code
    K kvelu d

    please give me any sample code Thanks KV

    Visual Basic sysadmin help workspace

  • Create setup project using own code
    K kvelu d

    Without using any setup and deployment, how can we create the setup file using fresh code. Please help me to find out the solution. Thanks in Advance, KV

    Visual Basic sysadmin help workspace

  • who is event
    K kvelu d

    infragistics is a third party control download the tool from the below link http://www.infragistics.com/dotnet/netadvantage.aspx[^]

    Visual Basic

  • who is event
    K kvelu d

    Better u can use "Infragistics" "UltraWinGrid" control to solve this problem. There is a "CellChange" event, this event fire when u start typing the first letter itself.

    Visual Basic

  • Is Vs = and nothing
    K kvelu d

    "=" represents the string values "is" represents the object type values

    Visual Basic question visual-studio help tutorial

  • How can i get the reference file (dll) information from the other application (exe) file
    K kvelu d

    In my windows application project, with the help of openfiledialog control i choose a other exe file like word.exe, notepad.exe... then how can i get the (dll) reference file and location information for that selected exe file. For example: when we add an exe file in a setup project then it will automatically insert all the reference/dependencies file with in it. Like that i need to get all the file and location information. Thanks in advance KV

    Visual Basic help tutorial question workspace

  • how do i get the exe reference (dll) files using vb.net
    K kvelu d

    i want that reference (dll) information at runtime and not for current application

    Visual Basic csharp visual-studio question workspace

  • closing the word doc
    K kvelu d

    write the below code in closing event wrdDoc.Close(False) wrdDoc = Nothing wrdApp = Nothing or kill the application from the process

    Visual Basic question

  • how do i get the exe reference (dll) files using vb.net
    K kvelu d

    Hi, If i choose a windows application (exe) file then it will shows the reference file (dll) information like VS setup project Thanks KV

    Visual Basic csharp visual-studio question workspace

  • How to use third party dll at runtime with help of (dll) file path and procedure name
    K kvelu d

    Download link http://www.2shared.com/file/4835939/1eaac353/RunTime\_Dll.html

    Visual Basic tutorial help question

  • How to use third party dll at runtime with help of (dll) file path and procedure name
    K kvelu d

    hi, i used your link sample, but i was got this error Value cannot be null. Parameter name: ptr FYI: Please download my sample project from this link http://www.2shared.com/file/4835939/1eaac353/RunTime_Dll.html[^] Note: Please send me any sample project attachment to my email id (to_velu@yahoo.co.in) if possible.

    Visual Basic tutorial help question

  • How to use third party dll at runtime with help of (dll) file path and procedure name
    K kvelu d

    Sample dll code: Public Class SWTest Public Shared Sub kv() MsgBox("Code Project") End Sub End Class Please help me, how can i import this dll and call the procedure at runtime Note: My windows application only have the string inputs of (dll) file path and procedure name Example: Input1 = "D:\SWTest.dll" Input2 = "kv" Thanks KV

    Visual Basic tutorial help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups