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

World: r3wp

[SDK]

Henrik
4-Mar-2010
[1580]
they are all listed on rebol.com
Ashley
5-Mar-2010
[1581]
It would be nice if there was a bundle option ... "Buy all SDK's 
for only ...".
Graham
13-Mar-2010
[1582x5]
Wonder why this returns an empty set


list-reg/HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts"
Is this a bug ?
keys: list-reg/HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts"
    probe keys

    keys: get-reg/HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" 
    "URW Palladio L Italic (TrueType)"
    probe keys

    keys: exists-reg?/HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts\URW 
    Palladio L Italic (TrueType)" 
    probe keys

produces this

[]
URWPA32_0.TTF
false
think it should be
[ ... list of fonts .. ]
URWPA32_0.TTF
true
this is Ashley's code 


call/output {reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows 
NT\CurrentVersion\Fonts"} fonts: copy ""


but although it works for me, I see that on other systems it just 
locks up.
Geocaching
14-Mar-2010
[1587x2]
hello all, as a long time licensee of rebol SDK, I upgraded to 2.7.7 
for
Sorry, I repeat... I upgraded to sdk 2.7.7 for $50. I am a very old 
Command and SDK legally licensed user. I am a macosx and windows 
user. My original license was for windows. According to a mail from 
Cindy, when upgrading to 2.7.7 existing license file would work for 
all platforms. I am willing to support rebol development and this 
why I choose to upgrade even if I do not really have the use for 
such a minor update. But, it looks that current sdk 2.7.7 release 
is not really bullet proof: under macosx, rebcmd et rebpro complain 
they could not find a valid license key file, while encap binaries 
seem to recognize my license key. Under windows XP, my license seem 
to be recognized, but rebcmd returns the following error: 'REBOL 
Internal Error: Boot error: 316' Anyone enconutering such problems? 
Thanks in advance.
BrianH
9-Apr-2010
[1589]
I have also been having problems with the Windows SDK. I was supposed 
to be sent a new license for all platforms, but never received it.
Carl
9-Apr-2010
[1590x4]
This is one reason we are working on 2.7.8.
BH: checking the DB, 1 min.
Not in either DB. (Will msg you directly with info.)
The 2.7.7 release wasn't originally going to be an SDK update, but 
we realized the changes were quite minor, so did it anyway. "A mistake." 
The 2.7.8 release will be correct for the SDK/Command etc.
Maxim
9-Apr-2010
[1594]
ok thanks for the update.
Graham
9-Apr-2010
[1595]
I have command sdk license for Windows and also a separate sdk license 
for linux.  So, there is no point in upgrading both ??
Graham
5-May-2010
[1596]
I don't know if this is an SDK issue or what.  I have an encapped 
application that under windows xp, the copy and paste works fine 
with control c and v.  But under Windows 7, it's not doing anything.
Maxim
6-May-2010
[1597]
probe the keystrokes events within a face to see just what is happening.
Graham
6-May-2010
[1598]
Restart windows and the issue goes away
Rondon
14-May-2010
[1599]
So, do we have to wait for 2.7.8 SDK to upgrade ? What about the 
upgrade command inside Rebol? When R3 is finished, do we have to 
buy a new sdk for R3?
Graham
14-May-2010
[1600]
2.7.7 sdk seems to be a mistake.
Rondon
14-May-2010
[1601]
I know Graham, but what about the next updates?
Graham
14-May-2010
[1602x3]
I would expect that you either won't need a sdk for R3 if you have 
host kit ... or, it will cost you :)
the message is that it costs $50 to upgrade and that's good for a 
year
Of course ignoring the fact that for years there are not upgrades
Rondon
14-May-2010
[1605x2]
ok
to move to R3, would be an upgrade too ? or new acquisition?
Graham
14-May-2010
[1607]
Who knows?
Rondon
14-May-2010
[1608x2]
:-)
ok
Graham
14-May-2010
[1610x2]
Making $$ from languages is a dead end
It's a micro economy .. the $$ is to be made from consulting
Rondon
14-May-2010
[1612]
I know, that's what I'm doing.
Graham
14-May-2010
[1613]
and you don't get consulting requests unless you have ( usually ) 
a popular language
Rondon
14-May-2010
[1614]
noop,  I'm doing wonderful things with rebol.. Take a look. http://www.tse.gov.br/internet/cd/tse/index.html
Graham
14-May-2010
[1615]
my last was intended for Carl!
Pekr
14-May-2010
[1616]
I think that Host Kit is going to be for free. But RT might produce 
some commercial Extensions ...
Rondon
14-May-2010
[1617x2]
Ok
How does it work? the host kit, I'm kind of lost here...
TomBon
14-May-2010
[1619]
very nice rondon, so you are doing rebol consulting in brazil?
Graham
28-May-2010
[1620]
I seem to have misplaced my linux sdk license key purchased a few 
years ago.  I thought maybe I could use my windows license key instead 
.. but sadly, no go.  Oh well, emailed sales  to see if they can 
resend it to me.
Graham
31-May-2010
[1621]
Which they did  :)
Louis
18-Jun-2010
[1622]
.
Louis
21-Jun-2010
[1623]
What is the best way to debug software made with the SDK?
Gregg
21-Jun-2010
[1624]
If you mean debugging an encapped app, there is no single best way. 
It depends on the app. If you have a system in place for catching 
errors, and logging them, that can help a lot.
Louis
22-Jun-2010
[1625x4]
Gregg, thanks for responding. What system for catching errors are 
you referring to?
I have an encapped program that has worked for years.  But it contains 
a password, and the password had to be changed. Now it won't work 
when encapped. I get:
** Script Error: Cannot use path on none! value
** Where: insert-event-func
** Near: insert system/view/screen-face/feel/event-funcs :funct
:funct
** Press enter to quit...
If I replace all the #include's with do, and run it with rebview, 
it runs without problem.
Graham
22-Jun-2010
[1629]
sounds like you got your includes in the wrong order