Re: For newbies by newbie

2010-04-25 Thread J. Landman Gay

Graham & Heather Harrison wrote:

Red face time.


Don't be -- we've all been there. We're an easy-going bunch. We'll only 
make fun of you after we know you better, so you're safe for now. :)




All of the tutorial/sample stacks I have been using have all had the
controls in layer order, so I didn't use it. Since I had no idea that
it created indenting (yes, not mentioned anywhere in the User Guide)
I saw no reason to. When the accidental double-click worked, I am
sure I tried single, but obviously not very effectively.


Sounds like the old trackpad glitch again.



When you say "rev's preferences" do you mean the OS Preferences
available from the Revolution menu, or is there another set
somewhere? I can't see any references to such things as sort mode in
the former.


Rev only has the one preferences dialog -- the one under the Rev menu 
(on Windows and Linux it's under Edit.) What Mark means is that your app 
browser settings are saved to Rev's preferences so they "stick" each 
time, but it's an auto-save, so there's no place to manually enter it in 
the Preferences dialog. Rev remembers lots of things you do and resets 
them automatically on next launch. But I'm too tired right now to 
remember what it remembers.


BTW, I did enter a bug report about group controls not showing up in the 
app browser when you're in edit mode, and it was confirmed. That used to 
work some versions ago, I'm not sure when it broke.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


For newbies by newbie

2010-04-25 Thread Graham & Heather Harrison
Red face time.

Mark W wrote:

> You don't need to double-click - a single click is all it takes. 
> Clicking on a column in the header bar sorts items by that column. 
> That's the way most apps work. And it's in the User Guide. 
> But I'm surprised to find that the User 
> Guide doesn't mention the indented layers as a feature. 

All of the tutorial/sample stacks I have been using have all had the controls 
in layer order, so I didn't use it. Since I had no idea that it created 
indenting (yes, not mentioned anywhere in the User Guide) I saw no reason to. 
When the accidental double-click worked, I am sure I tried single, but 
obviously not very effectively.

>  And your last sort mode is saved in rev's preferences, so that you really 
> never 
> need to switch back and forth.

Correct. But I have been confused over what rev saves and what it doesn't. I 
thought it was resetting the width of the Card Controls List in Application 
Browser, but it was actually the individual column widths (or at least the 
Layer column).

When you say "rev's preferences" do you mean the OS Preferences available from 
the Revolution menu, or is there another set somewhere? I can't see any 
references to such things as sort mode in the 
former.___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Problem in Multi line string (via Socket)

2010-04-25 Thread Mark Wieder
Shani-

Sunday, April 25, 2010, 7:09:39 PM, you wrote:

> write "2 line "  & return to socket tSocket   -- this not write to java

tSocket?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: where is RevWeb for linux?

2010-04-25 Thread Kay C Lan
On Sun, Apr 25, 2010 at 5:13 PM, Peter Alcibiades <
palcibiades-fi...@yahoo.co.uk> wrote:

>
> We need to stop treating this as a laughing matter.
>
> I apologise. I really did think that someone would have quickly replied
with the new link to the Alpha. I didn't appreciate that it really has
disappeared.

Sorry.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Problem in Multi line string (via Socket)

2010-04-25 Thread Jim Ault

Two methods could work

-- if using Rev cgi or irev you can get the smallest packets
write compress(line 1 to 2 of textBlock) to socket mSocket

-- if using Rev cgi or irev or other language
write base64encode(line 1 to 2 of textBlock) to socket mSocket

Hope this helps


On Apr 25, 2010, at 7:09 PM, Shani wrote:


HI,

open socket mSocket

write "1 line "  & return to socket mSocket  -- this write on java  
Server


read from socket mSocket until return

   put it into kResult

write "2 line "  & return to socket tSocket   -- this not write to  
java

server

read from socket mSocket until return

   put it into lResult



  -- when I comment first write then java read the other  
line form

rev

.

. when I use multi line string to (connect java through Socket), it  
write

first line to java but not write second and other lines.

When I comment first line then java read second line and display the  
result

against that one.



How can I use multi line string (via socket )



Jim Ault
Las Vegas



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: For newbies by newbie

2010-04-25 Thread Mark Wieder
Graham-

Sunday, April 25, 2010, 6:56:39 PM, you wrote:

> This is not in any documentation that I have seen, so I would
> like to know if it is documented anywhere, or is reasonably well
> known. Otherwise, it would be a good candidate for inclusion in the
> article.___

You don't need to double-click - a single click is all it takes.
Clicking on a column in the header bar sorts items by that column.
That's the way most apps work. And it's in the User Guide. I rarely
use any view other than the Layer view for the simple reason that, as
you mentioned, it does indent to show the object hierarchy. And your
last sort mode is saved in rev's preferences, so that you really never
need to switch back and forth. The only time I change from Layer mode
(and back again quickly) is if there are a lot of controls and I need
to find one alphabetically. But I'm surprised to find that the User
Guide doesn't mention the indented layers as a feature.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Problem in Multi line string (via Socket)

2010-04-25 Thread Shani
HI, 

open socket mSocket

write "1 line "  & return to socket mSocket  -- this write on java Server

read from socket mSocket until return

put it into kResult

write "2 line "  & return to socket tSocket   -- this not write to java
server

read from socket mSocket until return

put it into lResult



  -- when I comment first write then java read the other line form
rev

.

. when I use multi line string to (connect java through Socket), it write
first line to java but not write second and other lines.

When I comment first line then java read second line and display the result
against that one.

 

How can I use multi line string (via socket )

 

 

Regards,

shani

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


For newbies by newbie

2010-04-25 Thread Graham & Heather Harrison
I have promised Heather I will write an article for newbies on rev from a 
newbie perspective (necessarily an independent newbie perspective).

Just over a week ago I sent a request to the support desk about the inverted 
way the Application Browser handles groups when Edit Group is selected. Just 
when I want to see what controls are in the group, they disappear. Jacque sent 
me a good explanation of why it is so, but still left me with the problem of 
being unable to see the defined groups.

I was about to go trawling for a possible existing solution to listing group 
members, and attempt to write my own if nothing was available, when I 
accidentally discovered that double-clicking on the Layer heading in 
Application Browser causes all groups to be recursively indented. (Removing the 
indent requires double-clicking on any column but Layer.)

This is not in any documentation that I have seen, so I would like to know if 
it is documented anywhere, or is reasonably well known. Otherwise, it would be 
a good candidate for inclusion in the 
article.___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Move Rev to New Computer

2010-04-25 Thread J. Landman Gay

Mark Wieder wrote:

Bob-

Sunday, April 25, 2010, 10:17:34 AM, you wrote:


Thank you for the information.  I found and copied all the files from my old
computer over my home wi-fi. I appreciate your prompt and thoughtful response.
Do you ever sleep?


Jacque has the ability to be in multiple time zones simultaneously,
which enables her to sleep at the same time she's working.



You're just jealous because I'm not named Mark.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Move Rev to New Computer

2010-04-25 Thread Mark Wieder
Bob-

Sunday, April 25, 2010, 10:17:34 AM, you wrote:

> Thank you for the information.  I found and copied all the files from my old
> computer over my home wi-fi. I appreciate your prompt and thoughtful response.
> Do you ever sleep?

Jacque has the ability to be in multiple time zones simultaneously,
which enables her to sleep at the same time she's working.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Move Rev to New Computer

2010-04-25 Thread J. Landman Gay

Bob Cole wrote:

Do you ever sleep?


Only when I can't avoid it. It's a time sink.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [Datagrid] How to remove a column behavior? Bug or not?

2010-04-25 Thread zryip theSlug
2010/4/25 Andre.Bisseret :
>
> Le 25 avr. 10 à 14:30, zryip theSlug a écrit :
>
>> Dear List,
>>
>> How can I remove a column behavior in a datagrid?
>>
>> I thought to remove the column itself and recreate it with the same
>> name, but it seems that when a column with a behavior is deleted, the
>> behavior still stored somewhere in the datagrid. So when you create a
>> new column with the same name than the freshly deleted column, the
>> column is automatically attached to the old behavior.
>>
>> It's pretty odd. Is it a bug or what I'm doing wrong?
>>
>> And I confirm the posts, if I remember correctly, of Sarah and André
>> concerning datagrid columns with no name...
>> I was so enthusiast to test how delete my column behavior, that I have
>> progressively deleted the name of my column letter by letter, until
>> there is no letter to delete...
>> What a pity...
>>
>> Because I have to remove the datagrid, I bet it could solved all my
>> problems with behavior ghosts. A radical solution, but The Slug never
>> does things by halves! 8-)
>>
>> Thanks for any help.
>
> I already noticed this "phenomena" on the wole datagrid:
>
> 1 - set the dgProp[columns] of a data grid to a list of cr delimited names
>>> the columns are created
> 2 - populate the data grid
>
> Then
> 3 -set the dgProp[columns] to empty >> no columns defined anymore
> But the dgText is not emptied ("ghostified" ;-))i
> 4 - setting again the dgProp[columns] with the same names trigger the
> re-apparition of the dgText
>
> So, for the whole datagrid, after eliminating the columns it remains
> necessary to also set the content to empty

I obtain the same problem with the column behavior when I create a new
grid with no data, so totally empty.

> So it is the same for one only column
> I don't know if it's possible to delete straightforwardly the text of one
> only column?

Not test for the moment in my lab. But such as the data of the grid is
an array, I suppose that it is possible to delete the array key to
remove a column.

> I tried the tortuous following script; seems working:
>
> Assuming that the third column header is "age"; want to delete the column
> and recreate it but empty (might be with another content)
> on mouseUp
>   local tCols,tData
>   
>   put the dgProp["columns"] of grp "dataGrid 1" into tCols
>   put the dgText of grp "datagrid 1" into tData
>   ---
>   delete line 3 of tCols -- delete column 3
>   set the dgProp["columns"] of grp "dataGrid 1" to tCols
>   set the itemDel to tab
>   ## empty text of column 3
>   repeat with x = 1 to the number of lines in tData ## killing the ghost ;-)
>      put empty into item 3 of line x of tData
>   end repeat
>   wait 3 sec ## just to see the result ;-))
>   ## now reinstalling the previous column 3
>   put the dgProp["columns"] of grp "dataGrid 1" into tCols
>   put cr & "age" after line 2 of tCols
>   set the dgProp["columns"] of grp "dataGrid 1" to tCols
>   set the dgText of grp "dataGrid 1" to tData
> end mouseUp --- OUF! ;-))

Hum not really friendly user compared to the creation of the behavior,
but impressive ;)

Thanks for your answer André 8-)


Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [Datagrid] How to manage the empty area outside the selectable lines?

2010-04-25 Thread zryip theSlug
2010/4/25 Andre.Bisseret :

>
> Bonjour TheSlug,

Bonjour André

> one get,
> when clicking   on the headers line: graphic "dgBackground"
>                ""              on the Hscrollbar: graphic "dgBackground"
>                ""              on the rows part: graphic "dgAlternatingRows"
>                ""              on the VscrollBar: graphic
> "dgAlternatingRows"

I done the same observations when I tested. You obtain the
"dgBackground" or the "dgAlternatingRows" graphic, depending if you
have activated or not the alternating rows property of your grid.

> So it is possible to get "insensible" header line, horizontal scroll bar and
> the cornerPiece (bravo! sure I would not have think to this one ;-))

Thanks for the compliment. But I confess I would have preferred find
something more elegant ;)

> Thus one can script:
>
> on mouseUp
>   if the short name of the target is not in "dgBackground,dgCornerPiece"
> then
>      if the dgIndex of the target is empty then beep 3 -- here dispatch
> "addLine" etc.
>   end if
> end mouseUp

Can I suggest you to use "among the items" instead of "in" to prevent bugs?
I admit that is improbable in this case, but it's a good habit to have ;)

So instead of:

if the short name of the target is not in\
 "dgBackground,dgCornerPiece"

prefer:

if (the short name of the target is among the items of\
 "dgBackground,dgCornerPiece") then

Just a suggestion in case it could be useful ;)

> but the V scroll bar continue to beep like the empty rows part (even if one
> click beside a row whose is not empty)
>
> I tried different tricks but seems really impossible to distinguish the V
> scroll bar area from the rows area!!! (might be missing something?)
>

The datagrid background ends on the border of the group, so it include
the scrollbars. It seems difficult to do something by script at our
level.

> Sorry no great help! only confirmation (and for me, learning; thanks ;-))

Thanks for your feedback about this, André! ;)


Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Move Rev to New Computer

2010-04-25 Thread Bob Cole
J. Landman Gay  writes:
> You don't need to do anything special, just copy over all your files. If 
> you use the Mac's automatic file-copier (forget what it's called, but it 
> copies all your files from one Mac to another, and new Macs usually 
> offer to do that for you) then you probably won't need to do anything 
> else at all. If Rev asks for your key on launch, your current license 
> key will work because your platform hasn't changed, it's still OS X.
> 
> If you are manually moving your files, there are Rev-related files in 
> places other than the Applications folder, so it's probably easier to 
> just download the current version from the web site and install from 
> that. Your own stacks can be copied anywhere you want, of course.
> 

Jacque:
Thank you for the information.  I found and copied all the files from my old
computer over my home wi-fi. I appreciate your prompt and thoughtful response.
Do you ever sleep?
Thanks,
Bob


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [Datagrid] How to remove a column behavior? Bug or not?

2010-04-25 Thread Andre.Bisseret


Le 25 avr. 10 à 14:30, zryip theSlug a écrit :


Dear List,

How can I remove a column behavior in a datagrid?

I thought to remove the column itself and recreate it with the same
name, but it seems that when a column with a behavior is deleted, the
behavior still stored somewhere in the datagrid. So when you create a
new column with the same name than the freshly deleted column, the
column is automatically attached to the old behavior.

It's pretty odd. Is it a bug or what I'm doing wrong?

And I confirm the posts, if I remember correctly, of Sarah and André
concerning datagrid columns with no name...
I was so enthusiast to test how delete my column behavior, that I have
progressively deleted the name of my column letter by letter, until
there is no letter to delete...
What a pity...

Because I have to remove the datagrid, I bet it could solved all my
problems with behavior ghosts. A radical solution, but The Slug never
does things by halves! 8-)

Thanks for any help.


I already noticed this "phenomena" on the wole datagrid:

1 - set the dgProp[columns] of a data grid to a list of cr delimited  
names >> the columns are created

2 - populate the data grid

Then
3 -set the dgProp[columns] to empty >> no columns defined anymore
But the dgText is not emptied ("ghostified" ;-))i
4 - setting again the dgProp[columns] with the same names trigger the  
re-apparition of the dgText


So, for the whole datagrid, after eliminating the columns it remains  
necessary to also set the content to empty

So it is the same for one only column
I don't know if it's possible to delete straightforwardly the text of  
one only column?


I tried the tortuous following script; seems working:

Assuming that the third column header is "age"; want to delete the  
column and recreate it but empty (might be with another content)

on mouseUp
   local tCols,tData
   
   put the dgProp["columns"] of grp "dataGrid 1" into tCols
   put the dgText of grp "datagrid 1" into tData
   ---
   delete line 3 of tCols -- delete column 3
   set the dgProp["columns"] of grp "dataGrid 1" to tCols
   set the itemDel to tab
   ## empty text of column 3
   repeat with x = 1 to the number of lines in tData ## killing the  
ghost ;-)

  put empty into item 3 of line x of tData
   end repeat
   wait 3 sec ## just to see the result ;-))
   ## now reinstalling the previous column 3
   put the dgProp["columns"] of grp "dataGrid 1" into tCols
   put cr & "age" after line 2 of tCols
   set the dgProp["columns"] of grp "dataGrid 1" to tCols
   set the dgText of grp "dataGrid 1" to tData
end mouseUp --- OUF! ;-))

Best regards from Grenoble

André



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


[OT] Eve Teasing

2010-04-25 Thread Richmond Mathewson

 Sometimes things on the Use-list can get bit heavy.

So, to put things in perspective I should like to draw
your attention to a serious social evil:

http://www.banwasi.com/html/ete1.html
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [Datagrid] How to manage the empty area outside the selectable lines?

2010-04-25 Thread Andre.Bisseret


Le 25 avr. 10 à 00:31, zryip theSlug a écrit :


Hi all,

I'm actually working with datagrids.

First of all, I think that I have to explain my question, so:

Basically a datagrid is divide in 4 parts:
- headers
- scroll bars
- lines of data (that I call "the selectable lines")
- area with no data (that I call "the empty area outside the  
selectable lines")


I would like to manage this empty area. I planned to add a new line
when an user double click in it.
For doing that, I created this code in the datagrid script:

on mouseDoubleUp
  If ((the dgHeader of the target is empty) and \
(the short name of the mouseControl is not "dgCornerPiece"))  then
 dg_AddNewLine long id of me,"last",true --C
 put the dgNumberOfLines of me into tCurrentRow
 set the dgHilitedLines of me to tCurrentRow
 dispatch "EditCell" to me with line 2 of the cColumnNames of me,\
 tCurrentRow
  end if
end mouseDoubleUp


I have difficulties with the scroll bars. When they exists but are not
active (because the list is too small), they traps the double click
and performs the creation of the new line.

What is my best alternative if I assume that I have seen nothing in
the API to manage this empty area?
No doubt someone has already doing that. ;)

I have already give a try to the mouseControl function but it not
returns the scrollbar control because the datagrid bg objects rides
the scrollbar.


Bonjour TheSlug,

You are right; I am fighting with that for a while without any success  
(so my post won't not help much ;-((

If one write (in the dg script :
on mouseUp
put the target
end mouseUp

one get,
when clicking   on the headers line: graphic "dgBackground"
""on the Hscrollbar: graphic "dgBackground"
""on the rows part: graphic "dgAlternatingRows"
""on the VscrollBar: graphic "dgAlternatingRows"

So it is possible to get "insensible" header line, horizontal scroll  
bar and the cornerPiece (bravo! sure I would not have think to this  
one ;-))


Thus one can script:

on mouseUp
   if the short name of the target is not in  
"dgBackground,dgCornerPiece" then
  if the dgIndex of the target is empty then beep 3 -- here  
dispatch "addLine" etc.

   end if
end mouseUp

but the V scroll bar continue to beep like the empty rows part (even  
if one click beside a row whose is not empty)


I tried different tricks but seems really impossible to distinguish  
the V scroll bar area from the rows area!!! (might be missing  
something?)




About this, by testing this solution, I seen an odd behavior with
inactive horizontal scrollbars. When you click on the scrollbar and
have lines in the datagrid, you select the corresponding line. Is it
totally normal?
Right again! I did not noticed that before; seems not normal at all  
actually!


Sorry no great help! only confirmation (and for me, learning;  
thanks ;-))


Best regards from Grenoble

André









___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] MS Word Import Mac/Win: WordLib 1.3

2010-04-25 Thread Matthias Rebbe
Hi,

i meant of course " i could not resist" ;-)

Matthias
Am 25.04.2010 um 15:29 schrieb Matthias Rebbe:

> Curry,
> 
> that is an offer i could resist. I just ordered.
> 
> Matthias
> Am 25.04.2010 um 04:35 schrieb Curry Kenworthy:
> 
>> 
>>> Maybe you will sell both in a bundle for a special price? ;-)
>>> Matthias
>> 
>> Good idea, however, I would like to reward early adopters with the best
>> deal. So here's my special: anyone who orders WordLib before the release
>> of WordOut will get a $20 coupon for WordOut.
>> 
>> When WordOut is released, this offer ends, so order now for the best
>> price. :-)
>> 
>> Curry
>> 
>> --
>> WordLib: Import MS Word and OpenOffice documents
>> http://curryk.com/wordlib.html
>> 
>> Need custom software development or RunRev help?
>> http://curryk.com/consulting/
>> ___
>> use-revolution mailing list
>> use-revolution@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-revolution
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] MS Word Import Mac/Win: WordLib 1.3

2010-04-25 Thread David C.
> Curry,
>
> that is an offer i could resist. I just ordered.
>

Nor could I... just placed my order also.
Still haven't had a chance to run it through any trials yet, but after
viewing the demo I am already convinced of the quality. Besides,
that's a great deal!

Best regards,
David C.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] MS Word Import Mac/Win: WordLib 1.3

2010-04-25 Thread Matthias Rebbe
Curry,

that is an offer i could resist. I just ordered.

Matthias
Am 25.04.2010 um 04:35 schrieb Curry Kenworthy:

> 
>> Maybe you will sell both in a bundle for a special price? ;-)
>> Matthias
> 
> Good idea, however, I would like to reward early adopters with the best
> deal. So here's my special: anyone who orders WordLib before the release
> of WordOut will get a $20 coupon for WordOut.
> 
> When WordOut is released, this offer ends, so order now for the best
> price. :-)
> 
> Curry
> 
> --
> WordLib: Import MS Word and OpenOffice documents
> http://curryk.com/wordlib.html
> 
> Need custom software development or RunRev help?
> http://curryk.com/consulting/
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


[Datagrid] How to remove a column behavior? Bug or not?

2010-04-25 Thread zryip theSlug
Dear List,

How can I remove a column behavior in a datagrid?

I thought to remove the column itself and recreate it with the same
name, but it seems that when a column with a behavior is deleted, the
behavior still stored somewhere in the datagrid. So when you create a
new column with the same name than the freshly deleted column, the
column is automatically attached to the old behavior.

It's pretty odd. Is it a bug or what I'm doing wrong?

And I confirm the posts, if I remember correctly, of Sarah and André
concerning datagrid columns with no name...
I was so enthusiast to test how delete my column behavior, that I have
progressively deleted the name of my column letter by letter, until
there is no letter to delete...
What a pity...

Because I have to remove the datagrid, I bet it could solved all my
problems with behavior ghosts. A radical solution, but The Slug never
does things by halves! 8-)

Thanks for any help.


Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: where is RevWeb for linux?

2010-04-25 Thread Richmond Mathewson

 On 25/04/2010 12:44, Bernard Devlin wrote:

It's right.  It is no laughing matter.  Six months after the plug-in
went GA for 2/3 of the supported platforms in Rev 4, the linux plug-in
is not only NOT GA, the alpha is not even there.

Bernard

On Sun, Apr 25, 2010 at 10:13 AM, Peter Alcibiades
  wrote:

We need to stop treating this as a laughing matter.  The Linux people bought
licenses like everyone else, they like everyone else are trying to use Rev
as their main tool.  Is there supposed to be something ridiculous about
doing that?



It IS a laughing matter because . . .

I think it was George Bush senior who said "read my lips";

like reading Steve Jobs' silence re Hypercard.

It is fairly obvious to me that without actually saying it
RunRev for Linux is on the way out . . .

Unfortunately Bill Marriott seems to have been the chap
who kept it alive; with him gone we Linux fans are without
a champion.

I turned up at the Edinburgh conference with my wife's old
G4 laptop, only because the money I had set aside to buy a
laptop to run Linux on had, suddenly, to be spent on something
more urgent. Now had I turned up at Edinburgh with a laptop
running some sort of Linux I would have been heavily
cheesed-off because the USB drives we were all given did not
contain betas of RunRev 4 for Linux; only for Mac and Win.
However, in all the preconference 'guff' there was absolutely
no information to tell me that bringing along a Linux box
would have proved problematic (the "truly cross-platform" IDE).

Perhaps I should have done that and then "sued their pants off"
as they say in the USA; however, I am not American, and, oddly
enough I like the RunRev people.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: New to the Revolution

2010-04-25 Thread zryip theSlug
2010/4/25 Mark Wieder :
> Jacque-
>
> Saturday, April 24, 2010, 11:03:15 PM, you wrote:
>
>> I tried to get the last three Marks to change their names, but none of
>> them would. So you do it.
>
> Oh, sure... just because you get to be Jacques sometimes you think
> this is easy... just wait until Jacque 2 comes along and you'll see
> what things are like... I can't even use my last initial and be the
> only Mark W. here.

At least, I'm quiet 8-)

-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: where is RevWeb for linux?

2010-04-25 Thread Bernard Devlin
It's right.  It is no laughing matter.  Six months after the plug-in
went GA for 2/3 of the supported platforms in Rev 4, the linux plug-in
is not only NOT GA, the alpha is not even there.

Bernard

On Sun, Apr 25, 2010 at 10:13 AM, Peter Alcibiades
 wrote:
> We need to stop treating this as a laughing matter.  The Linux people bought
> licenses like everyone else, they like everyone else are trying to use Rev
> as their main tool.  Is there supposed to be something ridiculous about
> doing that?
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] MS Word Import Mac/Win: WordLib 1.3

2010-04-25 Thread Peter Alcibiades

If the export version permits exports from a field into predictably formatted
OO text documents, then it will be a solution to the revPrintField problem. 
If it runs on Linux, of course. 

Peter
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/ANN-MS-Word-Import-Mac-Win-WordLib-1-3-tp2063157p2064120.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: where is RevWeb for linux?

2010-04-25 Thread Peter Alcibiades


Kay C Lan wrote:
> 
> I believe Richmond is putting forward a conspiracy theory that
> unscrupulous
> individuals at RunRev are carrying out backyard appendectomies on little
> used Rev components. I assume he believes they are then sold on the black
> market. and if I understand correctly, Steve Jobs frequents such places
> and
> at some future time will carry out a reverse appendectomy on iPads so as
> to
> add missing features...

We need to stop treating this as a laughing matter.  The Linux people bought
licenses like everyone else, they like everyone else are trying to use Rev
as their main tool.  Is there supposed to be something ridiculous about
doing that?
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/where-is-RevWeb-for-linux-tp2063103p2064116.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution