Click here to Skip to main content
15,896,118 members
Home / Discussions / C#
   

C#

 
GeneralRe: Interprocess communication Pin
petst17-Oct-04 5:40
petst17-Oct-04 5:40 
GeneralRe: Interprocess communication Pin
CerebralKungFu17-Oct-04 6:31
CerebralKungFu17-Oct-04 6:31 
GeneralRe: Interprocess communication Pin
petst17-Oct-04 6:55
petst17-Oct-04 6:55 
GeneralURL Encoding - prevent "|" encoding as %7C Pin
Helix017-Oct-04 2:06
Helix017-Oct-04 2:06 
GeneralRe: URL Encoding - prevent "|" encoding as %7C Pin
WillemM17-Oct-04 7:25
WillemM17-Oct-04 7:25 
GeneralRe: URL Encoding - prevent "|" encoding as %7C Pin
Helix018-Oct-04 2:15
Helix018-Oct-04 2:15 
QuestionHow using class from another project Pin
Mikel Fayad16-Oct-04 22:50
Mikel Fayad16-Oct-04 22:50 
AnswerRe: How using class from another project Pin
nxde200016-Oct-04 23:26
nxde200016-Oct-04 23:26 
You load the Dll of used project into your current project. I give to you some code:
Imports System.Reflection
.........
.........
Dim objClass As Object
Dim tType As Type
Dim strFileName As String
Dim strClassName As String
strFileName = "D:\Setup\TaoMenuDong\Test\bin\Test.dll"
strClassName = "Test.Form1"
Dim MyAssembly As [Assembly] = [Assembly].LoadFile(strFileName)
objClass = MyAssembly.CreateInstance(strClassName)
tType = MyAssembly.GetType(strClassName)
Dim PIF As PropertyInfo
PIF = tType.GetProperty("strDuLieu")
PIF.SetValue(objClass, "OK, Don't move, what's your name, bud", Nothing)

Dim Res As String
Res = PIF.GetValue(objClass, Nothing)
MessageBox.Show(Res)

GeneralRe: How using class from another project Pin
Mikel Fayad17-Oct-04 21:55
Mikel Fayad17-Oct-04 21:55 
GeneralUse Graph.Chart in MSWord Pin
nxdess16-Oct-04 21:45
sussnxdess16-Oct-04 21:45 
GeneralDataTable already belongs to another DataSet Pin
myNameIsRon16-Oct-04 20:40
myNameIsRon16-Oct-04 20:40 
GeneralRe: DataTable already belongs to another DataSet Pin
Heath Stewart16-Oct-04 20:49
protectorHeath Stewart16-Oct-04 20:49 
GeneralRe: DataTable already belongs to another DataSet Pin
myNameIsRon17-Oct-04 15:29
myNameIsRon17-Oct-04 15:29 
GeneralCount Char in String Pin
Bedevian16-Oct-04 19:08
Bedevian16-Oct-04 19:08 
GeneralRe: Count Char in String Pin
Alex Korchemniy16-Oct-04 20:58
Alex Korchemniy16-Oct-04 20:58 
GeneralPlease help User Control Pin
robmays16-Oct-04 16:45
robmays16-Oct-04 16:45 
GeneralRe: Please help User Control Pin
afinnell17-Oct-04 8:57
afinnell17-Oct-04 8:57 
GeneralRe: Please help User Control Pin
robmays17-Oct-04 20:47
robmays17-Oct-04 20:47 
GeneralMultiline text not displayed correctly in text box Pin
Luis Alonso Ramos16-Oct-04 12:38
Luis Alonso Ramos16-Oct-04 12:38 
GeneralRe: Multiline text not displayed correctly in text box Pin
Heath Stewart16-Oct-04 21:09
protectorHeath Stewart16-Oct-04 21:09 
GeneralRe: Multiline text not displayed correctly in text box Pin
Luis Alonso Ramos16-Oct-04 21:23
Luis Alonso Ramos16-Oct-04 21:23 
GeneralRe: Multiline text not displayed correctly in text box Pin
Heath Stewart16-Oct-04 21:31
protectorHeath Stewart16-Oct-04 21:31 
GeneralRe: Multiline text not displayed correctly in text box Pin
Luis Alonso Ramos16-Oct-04 21:58
Luis Alonso Ramos16-Oct-04 21:58 
GeneralRe: Multiline text not displayed correctly in text box Pin
Heath Stewart16-Oct-04 22:13
protectorHeath Stewart16-Oct-04 22:13 
GeneralNo validation events when clicking on a toolbar Pin
Luis Alonso Ramos16-Oct-04 12:33
Luis Alonso Ramos16-Oct-04 12:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.