r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[All] except covered in other channels

[unknown: 5]
29-Jun-2008
[2842]
I created a RBOL links thread over at my website for anyone that 
wants a backlink to their REBOL site or rebol app product page.  
You can post a link and image (if desired) at http://www.tretbase.com/forum/viewtopic.php?f=8&t=33&start=0&st=0&sk=t&sd=a
[unknown: 5]
5-Jul-2008
[2843]
Anyone have a source for some code that is supposed to generate prime 
numbers?  I'm curious what the standard formulas are for that.
Sunanda
6-Jul-2008
[2844x2]
You could take a look here:
http://www.scriptol.org/sieve.php#rebol
[unknown: 5]
6-Jul-2008
[2846x3]
Thanks Sunanda.  I have worked with primes before and decided to 
revisit some work I did in the past and started a hunt for certain 
primes that exhibit a bit different behavior.  I found what I term 
as scalable primes.
I'm trying to find more and if there is other patterns.
Not just relevant to Christianity --->  http://www.nytimes.com/2008/07/06/world/middleeast/06stone.html?_r=1&partner=rssyahoo&emc=rss&oref=slogin
Geomol
6-Jul-2008
[2849]
Paul, regarding primes, take a look in the Puzzles group at 17-Oct-2005 
and the Answers group from that date and a few days ahead.
[unknown: 5]
15-Jul-2008
[2850x2]
The REBOLers Yahoo Fantasy football league has been made open for 
public participation.
http://football.fantasysports.yahoo.com/f1/78924
[unknown: 5]
19-Jul-2008
[2852]
Anyone use REBOL with excel or Microsoft Exchange?
Graham
19-Jul-2008
[2853]
Just Excel.
[unknown: 5]
19-Jul-2008
[2854x2]
Is there anyway to access an excel "cell" via REBOL and retrieve 
its contents?
I have to automate a process of retrieving contents of certain cells 
and comparing them to other cells and then emailing the information 
to persons found in certain cells.
PeterWood
19-Jul-2008
[2856]
Have you checked the Library? This might help:


http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-message.r?m=rmlLHMQ
[unknown: 5]
19-Jul-2008
[2857x2]
I'll look into it.
thank.
PeterWood
19-Jul-2008
[2859]
Of course, it's no where near so difficult if you can export a CSV 
file from Excel first.
[unknown: 5]
19-Jul-2008
[2860]
Actually, I find it not difficult at all with a tab-delimited text 
file but not sure I can get the file brought to me in that format 
and not sure if I can automate the conversion to that type.
Gregg
19-Jul-2008
[2861x2]
I did an Excel automation dialect with Robert Muench a few years 
ago.
It was for Excel 9 I think.
[unknown: 5]
19-Jul-2008
[2863]
Yeah I actually found that but it seems more tailored to creating 
excel spreadsheets wasn't it?  Maybe I misunderstood what it was.
Graham
19-Jul-2008
[2864]
Using the comlib allows you to access indivdual cells in an Excel 
spreadsheet
Gregg
19-Jul-2008
[2865]
It was for programmatic control. You can read and write cells and 
ranges, etc.
Reichart
20-Jul-2008
[2866]
Do keep in mind, recent copies of Excel "are" simply XML.
[unknown: 5]
20-Jul-2008
[2867x3]
where is the comlib found at?
I just looked over comlib but looks like you gotta know comlib functions 
already and the documentation was a bit lacking for me.
I'll have to doublecheck tomorrow Reichart.
[unknown: 5]
31-Jul-2008
[2870]
Where do I find COM commands or reference materials.  I know nothing 
about COM but want to try Anton's COMLIB stuff.
BrianH
31-Jul-2008
[2871]
MSDN
[unknown: 5]
31-Jul-2008
[2872]
ok. I see if I can find it there.
BrianH
31-Jul-2008
[2873]
The main thing to remember is that the only thing you do with COM 
is tell other things to do stuff. Look to the developer's documentation 
for the things you want to do stuff.
[unknown: 5]
31-Jul-2008
[2874x2]
I want to be able to read cells data from EXCEL.  Could I do that 
with COM?  I can't find a way to automate the conversion of excel 
spreadsheets to tab deliminated format so I think I gotta work directly 
with the spreadsheet data.  Which sucks.
I pitched the idea and now I gotta make it work.  LOL.
BrianH
31-Jul-2008
[2876]
Yup, you can do that with COM. There are standalone conversion tools 
you can download that can do it too.
[unknown: 5]
31-Jul-2008
[2877]
Yeah but I can only use REBOL - we can't introduce any software other 
than what we already have.  I see a ton of conversion mods out there 
but that wont  be allowed.
BrianH
31-Jul-2008
[2878x2]
Can you use other scripting tools? Not that they would be better 
to use than REBOL in general, but COMLib may not be as good as a 
language with ActiveScripting support.
Good excuse to learn COMLib though :)
[unknown: 5]
31-Jul-2008
[2880x2]
We have access to other scripting tools but not allowed on this project 
because I said I would only be using REBOL and the application (EXCEL)
I'm looking at MSDN in the COM section and browing thru - I look 
days away from learning how to do this.
BrianH
31-Jul-2008
[2882x2]
Well, there you go. Look in MSDN in the Office API section.
Which version of Excel?
[unknown: 5]
31-Jul-2008
[2884]
2003
BrianH
31-Jul-2008
[2885]
Start here: http://msdn.microsoft.com/en-us/library/aa272254(office.11).aspx
[unknown: 5]
31-Jul-2008
[2886x2]
I'll check it out.
Thanks Brian.
BrianH
31-Jul-2008
[2888]
The VBA object model is the COM object model, just friendlier.
[unknown: 5]
31-Jul-2008
[2889]
Ok, this is all GREEK to me at this point but checking into it.
BrianH
31-Jul-2008
[2890]
Gotta go. Good luck!
[unknown: 5]
31-Jul-2008
[2891]
Heh, thanks.