Forum: C# Aug 3rd, 2007 |
| Replies: 2 Views: 871 You can use a member of System.String called Substring(). This member returns a string that represents a substring of the current string. For example, your sample text is"DreamBoy". Now suppose we... |
Forum: C# Jul 31st, 2007 |
| Replies: 4 Views: 5,032 I've actually figured it out. After copying the assembly to the application folder, all i needed to do was to run regasm.exe again in the target computer. It now works ok.
... Thanks alot... |
Forum: C# Jul 31st, 2007 |
| Replies: 4 Views: 5,032 I copied the assembly to the application folder. When i instantiate the object as follows
Dim i As New Demo1.Numbers
it sees the class and the methods. but when i try to use them it doesnt... |
Forum: C# Jul 30th, 2007 |
| Replies: 4 Views: 5,032 Hi!
Am trying to create a C#.NET dll and use it in VB6.0 application. I've created the class library, generated the type library using tlbexp.exe, registered it using regasm.exe, but after... |