[REBOL] Re: .Net C# and Rebol

2003-09-27 Thread A J Martin
Hi, Brett. You wrote: How does one use the printing for reports? Is it at the level of calls to TextOut, Draw, etc on a canvas or are there higher level reporting functions? Here's an example from MSDN: // C# private void printDocument1_PrintPage(object sender,

[REBOL] Re: .Net C# and Rebol

2003-09-27 Thread A J Martin
Ahh printing. :^) And after a bit more searching, I found this article: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vbcode/html/vbtskCodeExampleDrawingTextOnForm.asp which shows how to print reports. Which is a bit more advanced. :) Andrew J Martin ICQ: 26227169

[REBOL] Searching for the Grail...

2003-09-27 Thread A J Martin
] subs0to5=: subsets 5 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 3 1 0 0 0 1 7 6 1 0 0 1 15 25 10 1 addelem=: 0: , (]+ 1:|. (]* [EMAIL PROTECTED])) NB. modification of subsets subs0to5-: addelem^:(i. 1+ 5) 1 1 ] perm0to5=: ! i. 1+ 5 1 1 2 6 24 120 subs0to5(+/ .*)

[REBOL] REBOL for business apps?

2003-09-27 Thread jennyw
I recently ran across REBOL and I'm a little confused as to what it's for. It seems like it'd be a nice way to develop business apps at first glance, but I'm not sure after looking at it. In particular, I'm thinking of rewriting an order entry application written in Access. Some questions about

[REBOL] Newbie: some questions about VID

2003-09-27 Thread Arie van Wingerden
Hello, in the following trial program I have a few difficulties using VID. Question 1: how can I fill out the text-list. The results never show up Question 2: I tried the hideattribute on the pwd field; if I print the pwd field, I don't see the actual value, but only the ***. How

[REBOL] Re: REBOL for business apps?

2003-09-27 Thread Maarten Koopmans
Hi, 1. What support is there for printing? The application prints several forms (e.g. invoices) and reports, using Access' report functions. Is there anything in REBOL that could be used to do something similar? None, but you export to html and launch a browser that starts printing. Works

[REBOL] Newbie: some questions about VID

2003-09-27 Thread philb
Hi Arie, Q1 You need to move show emails down 1 line outside the if count = 0 block. Q2 Use the pwd/data with the hide attribute. A couple of suggestions : 1. You could use compose to compose the user:[EMAIL PROTECTED] something like mb: compose [scheme: 'pop host:

[REBOL] Re: .Net C# and Rebol

2003-09-27 Thread bry
It might even be possible for the C# client to understand Rebol/IOS, perhaps? Well if you had a rebol script for generating/consuming at least some msil then you should be at the first step of working with .Net: as per Mercury: http://www.cs.mu.oz.au/research/mercury/maili

[REBOL] Re: rebol plugins

2003-09-27 Thread bry
well an xml file in Internet Explorer has its intrinsic handling done via an wd-xsl file inside of the msxml.dll as a resource. This generates a dynamic html page which shows the treeview you get when you double click and open an xml file, an xml file in mozilla has not intrinsic display on

[REBOL] Re: REBOL for business apps?

2003-09-27 Thread Gregg Irwin
Hi Jen, Welcome to REBOL! j I recently ran across REBOL and I'm a little confused as to what j it's for. REBOL is a messaging language, meaning it's designed for the semantic exchange of information between people and machines. It's not a programming language in the same sense as most others,

[REBOL] Re: delete-emails.r

2003-09-27 Thread Robert M. Mnch
On Tue, 23 Sep 2003 16:42:07 +0200, Robert M. Münch [EMAIL PROTECTED] wrote: Hi Dide, I mad a quick patch to the program to fix a bug that happens if the msg/from is 'none that can happens sometimes. ; populate colomn blocks

[REBOL] Re: REBOL for business apps?

2003-09-27 Thread Robert M. Mnch
On Sat, 27 Sep 2003 14:33:09 +0200, Maarten Koopmans [EMAIL PROTECTED] wrote: 1. What support is there for printing? The application prints several forms (e.g. invoices) and reports, using Access' report functions. Is there anything in REBOL that could be used to do something similar?

[REBOL] Re: .Net C# and Rebol

2003-09-27 Thread Robert M. Mnch
On Sat, 27 Sep 2003 11:49:30 +1200, A J Martin [EMAIL PROTECTED] wrote: I just got hold of Microsoft's .Net SDK (100MB!). Hi, new versions of Windows will have it pre-installed. So expect this .NET stuff to flood the world. It would be really, really nice to have Rebol running under .NET.

[REBOL] delete-emails.r extension

2003-09-27 Thread Robert M. Mnch
Hi, I have made an extension to the delte-emails.r script from Dide. I add a new button to select by filter. +line 292 btn By Filter [select-by-filter] Further I added the select-by-filter function: select-by-filter: does [ foreach m b-msg [

[REBOL] Access to Rebol forms converter

2003-09-27 Thread James Marsden
Hi all, Currently at work we deal in a lot of legacy Access databases and we are in the process of creating an Access plugin to convert forms into REBOL/view and PHP objects. We already have shifted the majority of our data backends to SQL Server, or MySQL and Access Forms is the only

[REBOL] Re: Access to Rebol forms converter

2003-09-27 Thread Brett Handley
James Marsden wrote: Currently at work we deal in a lot of legacy Access databases and we are in the process of creating an Access plugin to convert forms into REBOL/view and PHP objects. ... Hi James, Sounds like a really interesting project. I'm certainly interested to hear of how things