Search results for query: *

  1. E

    Question Reflection Error Loading Assembly

    Hi all! i am writing a simple games client using an XNA 2.0 engine to play games. The games are written in dll files and the client uses the assembly.loadfrom method to read and execute the games accordingly... Now this all works fine on my computer and my laptop. However when i give it to my...
  2. E

    Reading Control Properties At Runtime

    Ah! lucky im using vb2005 :P and it works a treat! thankyou very much for all your help :) rob
  3. E

    Reading Control Properties At Runtime

    control types hey! thanks for the prompt reply.... i had a question, but i worked it out.... the problem i have now is that i use that technique, then i use img.ToString to place it in the text for the compiler.... but when i show a message box of the text i just added to it, it considers the...
  4. E

    Reading Control Properties At Runtime

    Ok, heres my problem dudes... i have an app with panels created at runtime, and these panels all have controls on them... the compiler i wrote creates these controls at runtime. heres the issue.. i have a loop to scan through the controls on the panel, get its control type and add the text to...
  5. E

    Proportional Resizing

    Hey! i need to be able to resize controls in a panel proportioanlly to the forms size. What ive done is check one control with all the others to find if its the furthest left (in the panel) and the top. Then if it is just add the forms difference (new height - old height) to the control. Do the...
  6. E

    Index Of Panels

    Solved! never mind :P i forgot that panels are the same backcolor as the form! hehe :D all fixed thanks for your help!
  7. E

    Index Of Panels

    Showing Yeh thats cool, i picked that bit up :P just wondering how you would go about showing these panels and getting thier index based on the sender control i tried using Me.Panels(1).visible = true and i changed many other properties, but it didnt show up!
  8. E

    Index Of Panels

    For my program i have different panels containing data. Wat i tried to do was when the panel was focused (or clicked/brought to front) the following code would execute currentpanel = Me.Controls.IndexOf(sender) 'Sender bieng the panel control the problem is that these panels are created at...
  9. E

    Tag based compiler

    Cheers Thanks :) ill give it a whirl!
  10. E

    Tag based compiler

    Hey! im using vb.net 2005 express (ill upgrade when im not a student :D) and i need to be able to read a tag based language from a single line of text: <textbox(left=26,width=30,top=0,content="Hello")><label(left=0,content="WELCOME> summin like that! im wondering wat the easiest way to...
Back
Top