[perl-win32-gui-users] looking for Mike Blazer - sorry this was the last place I saw him

2001-06-03 Thread Jake Skinner
this seems to be defunct! > == > Mike Blazer > [EMAIL PROTECTED] > http://base.dux.ru/guest/fno/perl/ > == Hello Mike Are you still maintaining the RAS perl module? If you are, have you created a patch for Win2K Adv Server? I am una

Re: [perl-win32-gui-users] showing firstvisible in a combo box

2001-06-03 Thread Chris Etzel
phew. Thanks folks. that was the last bug to figure out. I am finished and your suggestions worked. I created a CSS Generator for a friend and now he can test it. If anybody wants to pick it apart for fun, here it is. Chris - Original Message - From: "Piske, Harald" <[EMAIL PROTECTED]> T

RE: [perl-win32-gui-users] showing firstvisible in a combo box

2001-06-03 Thread Piske, Harald
FirstVisibleItem takes an Index, not a string. The Index is zero-based, as Dave said. The points are a) if you want a specific entry to be selected by default, so that the user can change is if she wants and leave it if she doesn't, then you want $LB->Select(), not FirstVisibleItem. b) use $LB->F

RE: [perl-win32-gui-users] showing firstvisible in a combo box

2001-06-03 Thread Dave
I'm not sure this is the best way, but what I would do is change $bftextdecdd->FirstVisibleItem(); to $bftextdecdd->Select(0); That will automatically select the first element in your list. ( it is 0 because combobox uses a 0-based index to reference the items in the list ). Hope that helps.