Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - draxxter

Pages: 1 [2] 3
16
Ok i will have a look at it as soon as possible due to work.

EDIT: Attachment added with SaveAs method, although its a dummy, just shows you the structure.

17
OK i made you a testForm with a menu and usual submenus under them. I implemented the About that opens a new window and 2 buttons. 1 that closes the window.

Hope this gets you starting :)

18
Scripting Languages / Re: VS 2008 C# Form Dropdown box Question.
« on: March 10, 2010, 01:36:34 AM »
Ask if you need anything else, will try to help as always. :)

19
Scripting Languages / Re: VS 2008 C# Form Dropdown box Question.
« on: March 09, 2010, 02:55:33 AM »
I was tempted but my free time is already limited and my wife would start kicking my butt :P.

20
Scripting Languages / Re: VS 2008 C# Form Dropdown box Question.
« on: March 08, 2010, 10:21:20 PM »
hehe. Web App C# Developer my job description. :) Glad i could help you. :)

21
Scripting Languages / Re: VS 2008 C# Form Dropdown box Question.
« on: March 08, 2010, 12:17:58 AM »
Code: [Select]
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            if ((string) comboBox1.SelectedItem == "Hide")
            {
                label1.Visible = false;
            }
            if ((string) comboBox1.SelectedItem == "Show")
            {
                label1.Visible = true;
            }
        }

Also assign the event in design mode or in Form constructor with
Code: [Select]
comboBox1.SelectedIndexChanged+=comboBox1_SelectedIndexChanged;

Hope i helped.

22
Scripting Languages / Re: VS 2008 C# Form Dropdown box Question.
« on: March 04, 2010, 05:31:06 AM »
Well i guess you mean DropDownList control. Then you need to hook your code in SelectedIndexChanged Event to hide/show the Grids.
With controlid.SelectedItem you get the ListItem, with controlid.SelectedValue you get the Item Value, etc etc.
Also you will need to have the grid for option 1 visible by default since option 1 will be already selected since you have only 2 options.
A work around is to add another item as a dummy something like "Nothing Selected...".


Not sure i got the selection path part of your question.


23
General UO Chat / Re: So, whose gonna imbue a wand?
« on: December 23, 2009, 10:12:14 PM »
yeah :( tested it again yesterday, you pause when you use the wand. Not sure on the disruption.

24
General UO Chat / Re: So, whose gonna imbue a wand?
« on: December 22, 2009, 09:39:06 AM »
Well Cerv spoke of specials along with OMG :) and you cannot do specials with real skill / tact combo. 70/70 for primary, 90/90 for secondary.

25
General UO Chat / Re: So, whose gonna imbue a wand?
« on: December 21, 2009, 10:12:31 PM »
You need macing and tactics to use wands specials. So why make it mage weapon -20 if you going for specials?

26
General UO Chat / Re: Merry Christmas All SUO ers !!!
« on: December 20, 2009, 10:13:45 PM »
Heheh.

Merry Christmass to all. Take Care.

27
Player Templates / Re: Pets in PvP
« on: December 08, 2009, 10:27:51 PM »
Best Combo so far but really expensive that never failed me so far is DreadMare + Kitsune. Huge Magery DMG output + i am a mage with scribe ^^ :P

28
Hardware Design / Re: TM I need your help!! 2 Monitors 1 HD TV! BSOD
« on: December 02, 2009, 10:30:28 PM »
From Vista and after BSOD produces in C:\windows\minidump\ .dmp files you can open with debuggers to see what caused the BSOD.

I would follow Cerv's route though cause usually BSODs are produced by win services that you cannot really disable like ntkrpamp.exe.

Good luck :)

29
Off Topic / Re: Got a new laptop
« on: November 11, 2009, 10:27:28 PM »
Well for resource farming will be ok anything up from p3 1.4mhz with 1gb ram. I was farming hell of a lot back when i had that pc. So if that's the case just get RAM and maybe some HDD so you have enough room for D/Led stuff ^^

30
Scripting Chat / Re: Cheap Relic Creator !!
« on: October 23, 2009, 12:44:01 AM »
Hahaha best song!

Specially for leechers. like "where is the script?"

Pages: 1 [2] 3