Search the web
Sign In
New User? Sign Up
dyalogusers · Dyalog APL
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3288 - 3317 of 5369   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3288
... Shared variables?...
Phil Last
aphillast
Offline Send Email
Aug 1, 2007
7:41 am
3289
Does anyone know how to set Range, To and From options in PrintOut method following a MailMerge? I want to manage PrintOut method because zilde argument...
Andrew Chou
aquaman2022
Offline Send Email
Aug 1, 2007
12:15 pm
3290
... A.PrintOut enclose 'Range' wrd.wdPrintCurrentPage works (in Dyalog 11 in compatibility mode). And so does: A.PrintOut enclose...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Aug 1, 2007
1:07 pm
3291
Thanks a lot, Stefano! A.PrintOut {encl} 'Range' wrd.wdPrintCurrentPage does the job beautifully! However, A.PrintOut {encl} ('Range'...
Andrew Chou
aquaman2022
Offline Send Email
Aug 1, 2007
4:15 pm
3292
Too early to say what it will look like or even if/when we will decide to do something like this. Due no doubt to my background, my mental model is some...
Morten Kromberg
morten_kromberg
Offline Send Email
Aug 1, 2007
11:04 pm
3293
... I agree that this forum is not the place for detail design. I'm expressing a broad preference for new language features that fit organically with the...
Dick Bowman
bertybullfrog
Offline Send Email
Aug 2, 2007
7:02 am
3294
... One example that comes to the top of my head is running an FTP task, where I'd be happy to fire it off and get notification that it was done. ... < I have...
Ray Cannon
ray_cannon_apl
Offline Send Email
Aug 3, 2007
7:13 am
3295
I forgot... or just discovered I never knew... When a TabButton on a TabControl is selected, what brings its corresponding SubForm into view? S...
Stephen Taylor
sjt52
Offline Send Email
Aug 3, 2007
6:51 pm
3296
I think you want to set the TabObj property of the SubForm...cheers...r TabObj Property Applies to SubForm, TabBar, TabBtn, TabButton, TabControl ...
Richard Procter
rjprocter1
Offline Send Email
Aug 3, 2007
7:11 pm
3297
Hi, I have a Grid that I want to change the text color in one cell and also the backround. Is there a way to do this with SetCellType ? TIA Lenny Alexman...
lalexman
Offline Send Email
Aug 3, 2007
7:51 pm
3298
Yes, see the Help info for the CellTypes property - which describes the array and other properties you need to build/set first, then use SetCellType to...
Richard Procter
rjprocter1
Offline Send Email
Aug 3, 2007
9:10 pm
3299
I have seen that in the help. I tried many combinations and I can only change the grid lines and not a cell color. Is there somewhere better examples of how to...
lalexman
Offline Send Email
Aug 3, 2007
9:34 pm
3300
My trusty old ringBell function (which relied on ⎕na) recently stopped working. I rewrote it using two of my favorite Dyalog features: dfns & .net. ...
Jim
jimgoff2
Offline Send Email
Aug 3, 2007
9:38 pm
3301
... OK, how about something like this: 'F'ŒWC'FORM' 'F.G' ŒWC'GRID' 'F.G' ŒWS'VALUES' (2 2½'ONE' 'TWO' 'THREE' 'FOUR') 'F.G'ŒWS'FCOL' (-1 2 3 4) ...
Richard Procter
rjprocter1
Offline Send Email
Aug 3, 2007
10:38 pm
3302
... Difficulties arise when you have independent properties you want to address in different cells. In Richard's example above, say, you also want to be able...
Phil Last
aphillast
Offline Send Email
Aug 3, 2007
11:31 pm
3303
It sure is fun. Thanks for the responses. What is the difference between using f.g.Fcol and f.g.QUADWS 'Fcol' ? I looked under Fcol in help and the parameters...
lalexman
Offline Send Email
Aug 4, 2007
2:21 am
3304
... "New school" vs. "old school" perhaps? Functionally they are equivalent. ... I think the Help is quite complete. The first example below assigns FCol to a...
Richard Procter
rjprocter1
Offline Send Email
Aug 4, 2007
5:13 am
3305
Watch out: spelling is case-sensitive. Setting Fcol executes but has no effect on the grid; setting FCol does the trick. Your code doesn't have to look...
Stephen Taylor
sjt52
Offline Send Email
Aug 4, 2007
9:58 am
3306
Thanks Again for the help. It is starting to make sense now. I guess going from APL on an IBM 360 to modern day APL is a lot different. Plus learning all the...
lalexman
Offline Send Email
Aug 4, 2007
7:49 pm
3307
One could potentially implement CellTypesEx (following MS's bad example of how to name something that extends an existing concept without changing the meaning...
J. Merrill
jamesvmerrill
Offline Send Email
Aug 4, 2007
8:45 pm
3308
Tend to agree with Ray - especially about keeping the 'listener' as robust as possible! But surely there already exists a good conceptual model for inter-task...
Peter Merritt
prmerritt_mbx
Offline Send Email
Aug 6, 2007
9:34 am
3309
... Thinking a little more about this - I guess I'm looking to the possibility of spawning off a task that may not know that it was written for such a purpose,...
Dick Bowman
bertybullfrog
Offline Send Email
Aug 6, 2007
1:12 pm
3310
How do I instruct a Splitter's divider to move? SJT...
Stephen Taylor
sjt52
Offline Send Email
Aug 6, 2007
2:21 pm
3311
... hmm... what about 'f' []WC 'Form' 'f.e1' []WC 'Edit' ('BCol' 128 0 0) 'f.e2' []WC 'Edit' ('BCol' 0 128 0) 'f.sp' []WC 'Splitter' 'f.e1' 'f.e2' ...
Veli-Matti
vmjantunen
Offline Send Email
Aug 6, 2007
2:52 pm
3312
Can't you just set its Posn? ... From: "Stephen Taylor" <sjt@...>...
mariawells@...
mariawellsco...
Offline Send Email
Aug 6, 2007
3:04 pm
3313
... Don't see why not, and in the spirit of an oldspeak/newspeak Rosetta Stone (adapted from the GUI help file)... ? foo w;F [1] :Select w [2] :Case 0 ...
Dick Bowman
bertybullfrog
Offline Send Email
Aug 6, 2007
3:32 pm
3314
... Good! I love this approach. Then let me add a couple of comments and suggestions to try out if you are really bold. ... I commend this style but be warned:...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Aug 6, 2007
3:59 pm
3315
... "Function names" as names in callbacks for events, that is. -- Stef...
Stefano Lanzavecchia
lstefano2001
Offline Send Email
Aug 6, 2007
4:07 pm
3316
Tx â€" Posn was what I needed. Watch out for replacing names with refs when setting event handlers. Refs to fns are no doubt harmless, but if you pass some...
Stephen Taylor
sjt52
Offline Send Email
Aug 6, 2007
4:38 pm
3317
"indestructible self-referential form" -- I hate it when that happens. ... From: "Stephen Taylor" <sjt@...> ... "indestructible self-referential form"...
mariawells@...
mariawellsco...
Offline Send Email
Aug 6, 2007
5:41 pm
Messages 3288 - 3317 of 5369   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help