View previous topic :: View next topic |
Author |
Message |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Thu Oct 28, 2004 12:56 am Post subject: |
|
|
You say W.M.I ... I say "WHIMMY" ... You say A.D.S.I ... I say "ADD-SEE" ...
All together now !!!
Heheee .... |
|
Back to top |
|
 |
Les KiXforms Aficionado

Joined: 24 Dec 2003 Posts: 317
|
Posted: Thu Oct 28, 2004 1:51 am Post subject: |
|
|
Whimmy I can take...
I will even let you go either way with SQL (squeal/sequel)
But Active Directory (AD) is AYE-DEE, so where do you get ADD-SEE?
Sheesh!
I hope FSMO is fizzmo and SCSI is scuzzy down your way but what is USB? _________________ The Repro Man
Stealing for a living! |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Thu Oct 28, 2004 2:03 am Post subject: |
|
|
nah, when we refer to AD we say AYE-DEE, when we refer to ADSI we say AD (ADD) SI (SEE) ... idk ... I say SEQUEL, i loooove FIZMO ... Scuzzy is another great one. USB ? We just say U.S.B., nothing funky there.
Another thing I love to say is BLADE SERVER ... I have no idea what a blade server is, or how to set one up, just loving saying "BLADE SERVER" ... "BLADE SERVER" ... "BLADE SERVER" ... |
|
Back to top |
|
 |
Jochen KiXforms Devotee


Joined: 05 Mar 2003 Posts: 1204 Location: Stuttgart, Germany
|
Posted: Thu Oct 28, 2004 8:24 am Post subject: |
|
|
a BLADE SERVER is a tricky thing to set up ... I got nearly cut my fingers off once due to the sharp edges it got  _________________ Jochen
Tell me, and I will forget.
Show me, and I may remember.
Involve me, and I will understand. |
|
Back to top |
|
 |
Jochen KiXforms Devotee


Joined: 05 Mar 2003 Posts: 1204 Location: Stuttgart, Germany
|
Posted: Wed Nov 10, 2004 11:12 am Post subject: |
|
|
Allright,
now that I run into this problem too, I'd like to set focus back on topic for obviously egoistical reasons
My Observations are the same as Bens' [this apostrophy feels just wrong to me, correct me if it's wrong] regarding the stuck of the splitter when resizing a groupbox with containing anchored controls, getting smaller than the contained controls' left Postion..
Will try to strip a sample scriptlet later today to satisfy Les  _________________ Jochen
Tell me, and I will forget.
Show me, and I may remember.
Involve me, and I will understand. |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Wed Nov 10, 2004 1:41 pm Post subject: |
|
|
ok, standing by for the scriptlet. |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Wed Nov 10, 2004 3:09 pm Post subject: |
|
|
Still standing by ... |
|
Back to top |
|
 |
Jochen KiXforms Devotee


Joined: 05 Mar 2003 Posts: 1204 Location: Stuttgart, Germany
|
Posted: Wed Nov 10, 2004 3:21 pm Post subject: |
|
|
Scriptlet comes here (might look familiar to you )
Code: | break on
$s = createobject("Kixtart.System")
$f = $s.form()
$f.Text = "drag the splitter beyond TextBoxes' left position"
$f.SizeGripStyle = 1
$f.MinimumSize = 500,400
$f.Size = 550,480
$tabs = $f.Controls.TabControl()
$tabs.SizeMode = 2
$tabs.Dock = 5
$tab1 = $tabs.Controls.TabPages.Add("Tab1")
$tab2 = $tabs.Controls.TabPages.Add("Tab2")
$tab3 = $tabs.Controls.TabPages.Add("Tab3")
$g1 = $tab1.Controls.GroupBox("GroupBox1", 3, 5, 230, $tab1.ClientHeight - 70)
$g1.Dock = "Left"
$l1 = $g1.Label("Label 1 ...", 5 , 20, 50, 20)
$t1 = $g1.Controls.TextBox("Textbox might contain longer text than can only be read when g1 gets resized ;)", $l1.Right + 5, 20, 160, 20)
$t1.Anchor = 13
$s1 = $tab1.Controls.Splitter()
$g2 = $tab1.Controls.GroupBox("GroupBox2", $g1.Right + 3, 5, $tab1.ClientWidth - 279, $tab1.ClientHeight - 70)
$g2.Dock = "Fill"
$f.show
while $f.Visible
$ = execute($f.DoEvents)
loop
exit 0 |
_________________ Jochen
Tell me, and I will forget.
Show me, and I may remember.
Involve me, and I will understand. |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Wed Nov 10, 2004 3:29 pm Post subject: |
|
|
hmmmm ... scratch-scratch .... hmmmm |
|
Back to top |
|
 |
|