Search results for query: *

  • Users: PwUP
  • Content: Threads
  • Order by date
  1. P

    Creating a Class by its name as string

    I'm going to show you an example of what i mean, Public Class ClassX Public Sub New() MsgBox("You created me!") End Sub End Class [...] Dim class As Object class = CreateClassByName("ClassX") 'and "class = New ClassX()" would be the same Is it possible?
  2. P

    Compile code on the fly

    Hi there, i was trying to accomplish to that task with codedom classes, but i can't compile my code! May you post here an example which does succesfully that? I already searched through this forum and the web but i still can't even make a step towards the solution. Thanks in advance! Here are...
  3. P

    Trouble with api CreateWindowEx function

    Hi all. I'm here with a new trouble, as you can see on the title. I apologize for posting on VB general discussion, i haven't found a better place, feel free to move this topic wheter this is not the appropriate section. Anyway, i'm trying to create a button control with CreateWindowEx function...
  4. P

    Question ReadProcessMemory trouble

    Hi :D I'm here with a new problem! This time i have to read a string from a textbox on an other window (not one form in my project). I've got the correct address to that string memory, i can always get the correct handle and process of the window, but i don't know how to use them with...
  5. P

    Transparent Background

    Hi. I have a class which draws stuff like lines, rectangles ad images in a form. But it also draw a background rectangle before other things. How may i disable it? (I've taken a screenshot to show you better what i mean: When i create my second class it draws a gray rectangle, as well as the...
  6. P

    Question String Evalutator

    Hi! I've been searching so far for a way to read a string and execute it as vb code. eg. string_evalutate("dim a as integer = 23") should make a new variable a with 23. Or string_evalutate("MsgBox(a.tostring)") should show a message with input "23". I've already searched on the internet :( I...
  7. P

    Resolved Using OnPaint method of an other class

    Hi, i'm a new comer here. First of all i'm not english, so forgive me whether i'll write something wrong.;) (nice smilies!) I'm trying to use the OnPaint method of the class "Form1" from an other class, my purpose is to draw something in form1 like a rectangle or a string. What should i...
Back
Top