Edit field weirdness

2009-11-22 Thread David Coker
I've spent the better part of a full weekend designing a new user
interface that among many other things (like the "oh so cool"
datagrid), contains around 50 edit fields. My problem is although they
are editable (can type into or delete text from), for some reason I am
unable to cut (ctrl x), copy (ctrl v) or paste (ctrl p) into any of
them.

One of my earlier versions that I archived does not share the same
difficulties and after comparing property settings for both, I can see
nothing wrong with what I have. I have also started the process of
re-layering all of the above, but that seems to make no difference at
all. This thing has left me scratching my head a bit and would
appreciate some advice if it is available.

(Well, that is just about any advice -except- for hearing that I'm
gonna have to rebuild this monster UI from scratch.)

I'm running a freshly re-installed version of Vista if it matters.

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: increasing dpi in export snapshot

2009-11-22 Thread Terry Vogelaar
Hi Durgesh,

Try not to forget that every snapshot is just taking (part of) the bitmap image 
displayed on screen. Thus, it IS a low resolution image and there is no way to 
really change this.

You might consider these workarounds:
You might bring up the print dialog and print to a postscript or PDF file. Or 
you might just enlarge what you see on screen before you take a snapshot. So 
just double the size of everything. When you print or import the image in 
another program, you just reduce the size to 50%. Your screen resolution is 
either 72 or 96 pixels per inch. With 50% reduction, you have 144 or 192 ppi.

Terry

Op 22 nov 2009, om 19:00 heeft use-revolution-requ...@lists.runrev.com het 
volgende geschreven:

> I am using export snapshot on group of text boxes and saving it to a JPG
> file. Looking at the resulting JPEG file, it does not look very smooth. It
> is pixelized as if some low resolution image.
> 
> Is there any way to increase the dpi or some other mechanism to enhance the
> image file generated from export snapshot ?
> 
> Thank you all in advance,
> Kind Regards,
> -Durgesh

___
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


Hot Tracking a text line in a field

2009-11-22 Thread Mark Stuart
Hi Terry,
After looking at your scripts and searching on the 'net, I came to this
script conclusion.

Script to handle TreeView like field in RunRev.

on mouseDown
  --when user clicks on the line, this script selects all node/line text
  --you could use "-1" instead of "the number of words..." in the next line
  select word 1 to (the number of words in the selectedLine) of the
selectedLine
end mouseDown

on mouseMove
  --I added a check box button to the form, 
  --using its checked state to run the following script.
  if the hilite of btn "Hot Tracking" then
 lock screen  --this must be done, else the text in the field flickers
  --reset textStyle of each line in the field
   repeat with x = 1 to the number of lines in me
  set the textStyle of line x of me to plain
   end repeat
   --as the mouse moves over the line, underline it
   if the mouseLine is not empty then
  put word 2 of the mouseLine into tLine
  set the textStyle of word 1 to -1 of line tLine of me to underline
   end if
   unlock screen
  end if
end mouseMove

on mouseLeave
   --clears the underline of the last "mouse over"
   if the hilite of btn "Hot Tracking" then
  --reset textStyle of each line in the field
  repeat with x = 1 to the number of lines in me
 set the textStyle of line x of me to plain
  end repeat
   end if
end mouseLeave

This is an example of my field values. The tab character was used for
indenting.

General Preferences
  File Types
  Playlist
  Titles
  Playback
  Video
  Jump to file
Missing Files
Shell Options


HTH anyone,
Mark Stuart

___
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


Front Scripts Issue

2009-11-22 Thread Peter Haworth
I'm having an issue with the use of front scripts that I need some  
advice on.


I have a number of message handers set up as front scripts to carry  
out standard processes on any cards in my stack,things like  
closeField, selectionChanged, etc.  The problem is it appears that  
these scripts are being executed when the events they handle come from  
the Rev IDE, which causes some pretty severe problems.  I'm quite  
surprised that the IDE would pass it's events to my front scripts  
since they are part of my application not the IDE but be that as it  
may, I need to find a way around this issue.


I've made execution of my front script code dependant on the current  
tool being the pointer but that doesn't help when I'm in edit mode to  
modify cards or scripts.


I guess my question is whether there is a better place to put these  
scripts in the message path to avoid them being  called from the IDE,  
or if there is some reliable way to check if the messages they receive  
are coming from my application stacks and not the IDE.




Pete Haworth








___
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] tRev Feature Friday: drag-n-drop layering; inline editing!

2009-11-22 Thread Jerry Daniels

Wow...you're absolutely right. Having too much fun.

On Nov 22, 2009, at 7:44 PM, Alex Tweedly wrote:


Jerry Daniels wrote:


I should also say that you are right in your comment—about the  
price going up. Now is a good time to buy in. We now have 223 users  
of tRev. We're a mere two users away from reaching the 25% mark on  
our goal of 1,000 happy users.



Jerry - that must be an example of tMath
223 + 2 = 250 ?? :-)

But you know that if you ever do produce a tMath, I'll buy it - just  
because I've been so delighted by Galaxy, GLX, tRev, tText, 


A very satisfied customer,
Alex.
___
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: Hot Tracking a text line in a field

2009-11-22 Thread tsj
How about using 'the mouseline'

Word 2 of the mouseline will give you the relevant line number for your
field and as you're using a field with its dontWrap set to true you can just
trap this and do your underlining. Say for example the text you want to
highlight is the second 'column' in your field then you could do something
like - this is probably a bit simplistic but...

Local pLine

on mouseMove
put word 2 of the mouseLine into tLine
set the itemDel to tab
if pLine > 0 then
set the textStyle of item 2 of line pLine of me to plain
end if
put tLine into pLine
set the textStyle of item 2 of line pLine of me to underline
end if
end mouseMove

HTH,

Terry...


On 23/11/09 2:11 PM, "Mark Stuart"  wrote:

> Hi all,
> Platform: WinXP
> RunRev: 4.0
> 
> I've built a TreeView like field with parent nodes and indented child nodes.
> If you're familiar with Tree Views in Windows, you'll notice that as you
> mouse over a node in the tree, it underlines the text. And as you leave the
> node, it returns to plain formatting.
> 
> I'd like to apply this behavior to my field.
> I've tried different mouse commands in the "on mouseMove" handler, but can't
> get the desired effect.
> 
> How would I go about that?
> 
> Regards,
> Mark Stuart
> 
> ___
> 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


Hot Tracking a text line in a field

2009-11-22 Thread Mark Stuart
Hi all,
Platform: WinXP
RunRev: 4.0

I've built a TreeView like field with parent nodes and indented child nodes.
If you're familiar with Tree Views in Windows, you'll notice that as you
mouse over a node in the tree, it underlines the text. And as you leave the
node, it returns to plain formatting.

I'd like to apply this behavior to my field.
I've tried different mouse commands in the "on mouseMove" handler, but can't
get the desired effect.

How would I go about that?

Regards,
Mark Stuart

___
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] tRev Feature Friday: drag-n-drop layering; inline editing!

2009-11-22 Thread Alex Tweedly

Jerry Daniels wrote:


I should also say that you are right in your comment—about the price 
going up. Now is a good time to buy in. We now have 223 users of tRev. 
We're a mere two users away from reaching the 25% mark on our goal of 
1,000 happy users.



Jerry - that must be an example of tMath
223 + 2 = 250 ?? :-)

But you know that if you ever do produce a tMath, I'll buy it - just 
because I've been so delighted by Galaxy, GLX, tRev, tText, 


A very satisfied customer,
Alex.
___
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: revlet works locally - fails on server

2009-11-22 Thread Sarah Reichelt
On Mon, Nov 23, 2009 at 8:21 AM,   wrote:
> This works with the app saved for web in Revolution 4.0:
> file:///C:/Documents%20and%20Settings/username/Desktop/MyAppFolder/Web/MyApp.html
>
> I upload the 2 files (MyApp.revlet and MyApp.html) to web server, and they
> fail in ie and firefox:
> http://myserver.com/somewhere_on_server/RevApps/MyApp.html
>
> Error displayed in browser:
> runrev (logo)
> "Powered by runrev.com"
> "There was an error loading the revlet - could not open input file"


I assume that the revlet & the html file are still in the same folder
on the server?
Did you upload the files as text? FTP clients can do that sometimes
and it converts any binary files into garbage. Make sure it is set to
auto or binary.
Next idea: does the revlet try to access another file that it could
find on your computer, but not on the server?

HTH,
Sarah
___
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


revlet works locally - fails on server

2009-11-22 Thread Roger . E . Eller
This works with the app saved for web in Revolution 4.0:
file:///C:/Documents%20and%20Settings/username/Desktop/MyAppFolder/Web/MyApp.html

I upload the 2 files (MyApp.revlet and MyApp.html) to web server, and they
fail in ie and firefox:
http://myserver.com/somewhere_on_server/RevApps/MyApp.html

Error displayed in browser:
runrev (logo)
"Powered by runrev.com"
"There was an error loading the revlet - could not open input file"

Any ideas?

~Roger Eller  


___
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: Connecting directly to On-Rev SQL

2009-11-22 Thread stephen barncard
One can create any number of MySQL databases in the ON-REV control panel.
This arrangement is typical of ISP hosted MySQL servers:  One has to set up
each new database through the control panel, One cannot create new databases
from within a MySQL instance here.  One can create as many tables as one
likes, however. The GUI is strange and alien and it takes a few stabs to get
it right. One must create the database first  then add users.   There's an
option to set the IP numbers allowed  for individual users.

the "host name"is.on-rev.com
   ^
  dot
username is_
   ^

 underscore
password is


sqb

I sure used the word ONE a lot.

-
Stephen Barncard
San Francisco
http://houseofcubes.com/disco.irev


2009/11/22 Bob Sneidar 

> Hi all.
>
> I have browsed through the Use Rev posts but can't seem to find any info on
> this. I'd like to connect directly to the On-Rev MySQL from my Rev stacks.
> What is the URL or address to do that?
>
> 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
>
___
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: Slightly OT. When your machine decides it is time for a break.

2009-11-22 Thread stephen barncard
He's taking his Navicat out for a walk.


.sorry...
-
Stephen Barncard
San Francisco
http://houseofcubes.com/disco.irev


2009/11/22 Mark Wieder 

> Malte-
>
> Sunday, November 22, 2009, 1:34:24 AM, you wrote:
>
> > revdberr,MySQL server has gone away
>
> It's Sunday morning. Maybe he's just sleeping late.
>
> --
> -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
>
___
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: CantModify/saveStackRequest

2009-11-22 Thread J. Landman Gay

Mike Kerner wrote:

Sorry, y'all, it's been the better part of a year.

If I have a stack that I want the user to be able to interact with,
including fields, but I don't want the changes to be saved, do I just catch
saveStackRequest, or is there some other way?



Set the cantmodify property of the stack to true, then save the stack. 
This is a permanent property you only have to set once during 
development. Make sure your stack is final before you set it, or the 
stack won't save your own development changes either. ;)


--
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


Connecting directly to On-Rev SQL

2009-11-22 Thread Bob Sneidar
Hi all. 

I have browsed through the Use Rev posts but can't seem to find any info on 
this. I'd like to connect directly to the On-Rev MySQL from my Rev stacks. What 
is the URL or address to do that?

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: Slightly OT. When your machine decides it is time for a break.

2009-11-22 Thread Mark Wieder
Malte-

Sunday, November 22, 2009, 1:34:24 AM, you wrote:

> revdberr,MySQL server has gone away

It's Sunday morning. Maybe he's just sleeping late.

-- 
-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: Repeat Loop

2009-11-22 Thread Jim Ault
Another way to deal with decimal-digital dichotomies is to use the  
equivalent of the good old FPU.


Remember the days when the Floating-point Processor Unit was a  
separate chip that was optional?  Using floating point math always  
slowed down computations because of the monster iterations and rules  
it would use.  We in the scientific community required this, but  
accounting and business did not.  Of course, my days in the scientific  
community started before there were personal computers or even  
calculators ( we used slide rules where the FPU was us ).


One could build an external and call it to do math when decimals and  
rounding rules were important.


Jim Ault
Las Vegas

On Nov 21, 2009, at 7:28 AM, dunb...@aol.com wrote:


Rounding it must be. But the error is related to the startValue.

I would have thought that it did not matter, when incrementing by  
0.1, say,

what the StartValue was. In other words, I would have thought that
incrementing like this:

repeat with y = 1 to 2 step 0.1

would have the same rounding error progression as:

repeat with y =   3 to 4 step 0.1

Half the possible startValues (up to infinity?) round down at the  
nominal
last step, and therefore force an addiional unwanted loop, and half  
must
round up, and act properly. There is a precise method to the error,  
since it

falls within the odd binary sequence I posted yesterday.

It is a real shame that setting the numberformat (per Jacques  
Hausser) does
not seem to affect step increments. That would be a logical  
workaround that

forgives digital hardware limitations in a sensible way.

As has been suggested, I suppose one could always just normalize to
integers, though the startValue and increments usually driectly  
relate to the

thinking behind process we are working with:

repeat with y = 10 to 20 step 1

Not the same, is it?

Craig Newman
In a message dated 11/21/09 6:20:50 AM, w...@wjm.org writes:


Rounding error. On the second-to-last iteration, Rev doesn't think  
it's

quite reached "1" yet, so it goes through the loop one more time.



___
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


Jim Ault
jimaultw...@yahoo.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: [ANN] tRev Feature Friday: drag-n-drop layering; inline editing!

2009-11-22 Thread Jerry Daniels

Joe,

Thanks for you kind words, patronage and comments here as well. We had  
a sale this morning for both tRev and tText—both of which I attribute  
directly to your endorsement. I'm super glad you are getting as much  
out of these tools as I am. I don't know about you, but thanks to  
inline editing I'm now naming all those "cd id 1002" names that I have  
in my stacks!


I should also say that you are right in your comment—about the price  
going up. Now is a good time to buy in. We now have 223 users of tRev.  
We're a mere two users away from reaching the 25% mark on our goal of  
1,000 happy users.


Happy tRev-ers out there: keep spreading the word...don't keep all  
that enthusiasm bottled up...I'm pretty sure it causes heart disease.


Best,

Jerry Daniels

The latest Rev Editor Video:
http://reveditor.com/feature-friday-part-2-ttext-a-super-text-edit



On Nov 22, 2009, at 3:05 AM, Joe F. wrote:

I have to speak up here and urge anyone who hasn't been keeping up  
to check out the tRev blog and videos.
At this point tRev is worth a lot more than the $50 introductory  
price, so as a guy on a budget I have to strongly recommend that my  
fellow cheapskates get in on a good deal before it goes up. The more  
time you spend coding in Rev, the more time tRev will save you. It's  
a very nice environment to work in.


Joe F.


On Nov 21, 2009, at 9:10 PM, Mikey wrote:


Looks like I have some catching up to do.

--
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
and did a little diving.
And God said, "This is good."
___
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] tRev Feature Friday: drag-n-drop layering; inline editing!

2009-11-22 Thread Jerry Daniels

Mikey,

Right NOW the retail price for tRev is $50. We WERE going to keep the  
renewal at $50, because the retail price is so low.


We have been talking about this the last couple of weeks and decided a  
modest discount for renewals would be in order.


So, YES, at this moment, we have set the renewal price at $40.

Best,

Jerry Daniels

The latest Rev Editor Video:
http://reveditor.com/feature-friday-part-2-ttext-a-super-text-edit



On Nov 22, 2009, at 8:34 AM, Mikey wrote:


Jerry,

So it's $40 for an upgrade?

Mike

--
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
 and did a little diving.
And God said, "This is good."
___
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 Sorting

2009-11-22 Thread RevList
In my datagrid, I load in a column from a SQLite database that is the
number of seconds that a person has been logged in to a particular server.
 I have a function that converts the data into days, hrs, mins, seconds
and populates another column in the datagrid at fill time.  This works
perfectly.

I have have hidden the original column in the datagrid and have modified
the SortDataGridColumn so that when one clicks on the modified column it
either sorts or reverse sorts the datagrid based on the actual, hidden
numeric "seconds" column.  This too works fine, except, I am not getting
any visible clues on my converted column header to indicate that the
column has been sorted.  No up/down arrows and no shading.

My code tracks which column was really sorted and what the sort order is
(ASC or DESC).  Is there any way I can replicate the Column shading and
sort order arrow on this converted column to match what would be the case
if I were clicking on the hidden column?

Stewart


This message and any attachments are intended only for the use of the
individual to whom they are addressed and it may contain information that
is privileged or confidential. If you have received this communication by
mistake, please notify us immediately.


___
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


CantModify/saveStackRequest

2009-11-22 Thread Mike Kerner
Sorry, y'all, it's been the better part of a year.

If I have a stack that I want the user to be able to interact with,
including fields, but I don't want the changes to be saved, do I just catch
saveStackRequest, or is there some other way?

-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
  and did a little diving.
And God said, "This is good."
___
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] tRev Feature Friday: drag-n-drop layering; inline editing!

2009-11-22 Thread Mikey
Jerry,

So it's $40 for an upgrade?

Mike

-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
  and did a little diving.
And God said, "This is good."
___
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: Does revweb run under osx 10.4.11 / ppc?

2009-11-22 Thread Richard Miller
Solved it. It was that bug in revweb that requires the security window 
(under OSX 10.4.11, at least) to be slightly moved before buttons on it 
will respond. I certainly hope this bug is resolved very shortly.


Richard Miller



Richard Miller wrote:
Just tried getting a revlet to run on an older G4 IBook (PPC), OSX 
10.4.11. I can get as far as the security page for revweb, but that's 
it. Clicking on Allow Always, Allow Once or Deny does nothing. Have to 
force quit Firefox at that point. Same results under Safari. All 
software on this unit was just updated, including the latest revweb 
plugin for Mac PPC.


Anyone have any luck with this configuration or is it a known bug?

Thanks.
Richard Miller
___
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 question

2009-11-22 Thread Yves COPPE

Hello,


I have a question with DataGrid

A datagrid in "Form" Style
I have a fld "body" that I can edit by doubleclick (on  
mouseDoubleUp ...)


Now my text is editable
I'd like to make a selection in the edited Text (this can  
automatically) but I'd like to pick up this selectedtext in a handler,  
but don't know how


My goal is to store automatically this word in a list of data



Greetings.

Yves COPPE
yvesco...@skynet.be

___
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: Slightly OT. When your machine decides it is time for a break.

2009-11-22 Thread Mark Schonewille

Have a break, too, Malte. You sound like you need it ;-)

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer

Download Strõm Flow Chart Software
http://flowproject.economy-x-talk.com

Op 22 nov 2009, om 10:34 heeft Malte Pfaff-Brill het volgende  
geschreven:


Currently I am in a phase where I work a lot. I am about to complete  
a module for our clinic information system build with rev and it is  
still a lot of work till I go install it. However rev made my  
morning. When I opened my Laptops lid and wanted to dive into the  
session where I left off yesterday I received this revdb error:


revdberr,MySQL server has gone away

mwahahaha. I better go search for him, because we really need to get  
this stuff done. Maybe I meet him at the coffee machine.


Cheers,

Malte *thinksheneedstowriteasongaboutthis*



___
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


Slightly OT. When your machine decides it is time for a break.

2009-11-22 Thread Malte Pfaff-Brill
Currently I am in a phase where I work a lot. I am about to complete a  
module for our clinic information system build with rev and it is  
still a lot of work till I go install it. However rev made my morning.  
When I opened my Laptops lid and wanted to dive into the session where  
I left off yesterday I received this revdb error:


revdberr,MySQL server has gone away

mwahahaha. I better go search for him, because we really need to get  
this stuff done. Maybe I meet him at the coffee machine.


Cheers,

Malte *thinksheneedstowriteasongaboutthis*


___
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] tRev Feature Friday: drag-n-drop layering; inline editing!

2009-11-22 Thread Joe F.
I have to speak up here and urge anyone who hasn't been keeping up to  
check out the tRev blog and videos.
At this point tRev is worth a lot more than the $50 introductory  
price, so as a guy on a budget I have to strongly recommend that my  
fellow cheapskates get in on a good deal before it goes up. The more  
time you spend coding in Rev, the more time tRev will save you. It's a  
very nice environment to work in.


Joe F.


On Nov 21, 2009, at 9:10 PM, Mikey wrote:


Looks like I have some catching up to do.

--
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
 and did a little diving.
And God said, "This is good."
___
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