Jeff,

Many requests have been made in the past.
It can't hurt to ask.

James Belisle

Making Information Systems People Friendly Since 1990


-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of
Richardson, Jeff
Sent: Monday, January 27, 2014 9:44 AM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Re: Rbase Blob Editor Question

Mike:

I like it, except... 

Using your method: When I'm finished editing the image in the BLOB
Editor I would need to manually save the file (by entering a file name
and location), and then update the record in the table with the new
file. I am looking for a solution that avoids writing the BLOB to a
file, editing, and re-importing the BLOB. I can see a scenario where I
need to edit hundreds of pictures and I want to automate as much as I
can to eliminate repetitive clicks.

Right now, I like the way that I can click on the DB image control in a
form (or say, "EDIT varbitcolumn FROM m_ytable" and opening the BLOB by
double clicking on the cell) and the BLOB opens, I make my changes,
press save, and the BLOB is magically saved in my_table. However, I just
wish there was a way to change many of the BLOB Editor default settings.
For instance, when I press "Save", the default format is "JPG". It sure
would be nice if I could change that to BMP permanently, and I would
need to change it ever ytime.

Perhaps, I need to wishfully submit an enhancement request at this point
for a "change BLOB editor default settings" 

Thanks a lot!



-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of MikeB
Sent: Monday, January 27, 2014 10:18 AM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Re: Rbase Blob Editor Question

Whatever Blob image you have selected from your db, set a variable to
type varbit and then using the Select Command do this:

Select SomeBlobColumn into vTheVarBItVariable ind Vin0 from
WhatEverTableTheBlobIsIn where the UniqueColumnID =
.vSomeVaraibleContainingTheUniqueID

--Then Write The Varbit Variable To Disk like:

WRITE . vTheVarBItVariable TO
TheFileNameYouAreGoingToSpecifyForTheBlobEditor

-- then Execute your Blob Editor Command With Whatever Parameter You are
going to use as Razzak Said:

{Replacing zoom_parameter in the following command with one of these:
     ACTUAL
     FULL
     FIT_WIDTH
     FIT_HEIGHT
     FIT_PAGE}

filename.ext zoom_parameter {using whatever parameter}




> -----Original Message-----
> From: [email protected] [mailto:[email protected]] On Behalf Of 
> Richardson, Jeff
> Sent: Monday, January 27, 2014 6:27 AM
> To: RBASE-L Mailing List
> Subject: [RBASE-L] - Re: Rbase Blob Editor Question
> 
> I see. This is very helpful, but I'm looking for a solution from a 
> different approach. I have a table with a VARBIT column that holds 
> images. I access the images through a form containing a DB Image 
> control, and that control has a "ON CLICK EEP" that launches the BLOB 
> Editor via the command: PROPERTY component_id SHOW_EDITOR 'true'
> 
> Will there be a way to set BLOB Editor parameters through this method 
> as well?
> 
> Thanks again!
> 
> 
> 
> -----Original Message-----
> From: [email protected] [mailto:[email protected]] On Behalf Of A.
> Razzak Memon
> Sent: Sunday, January 26, 2014 6:23 PM
> To: RBASE-L Mailing List
> Subject: [RBASE-L] - Re: Rbase Blob Editor Question
> 
> At 04:18 PM 1/26/2014, Richardson, Jeff wrote:
> 
> >It's a rather simple question I have: Can the settings for the BLOB 
> >Editor be configured and saved? For example, say I want to always 
> >draw a red circle on an image I've opened instead of the default 
> >white. Or, say I always want the image to "Fit to Screen" instead of 
> >"actual size". Is there a configuration file somewhere that can be 
> >edited, or
> a
> >setting somewhere on a toolbar?
> >
> >I'm using 9.5 (64) with the latest update.
> 
> 
> Jeff,
> 
> Here's how:
> 
> 01. Start R:BASE eXtreme 9.5 (32/64), Update 4, Build: 9.5.4.30130,
>      or higher ...
> 
> 02. At the R> Prompt, or in a command file:
> 
>      RBBEDIT filename.ext zoom_parameter
> 
>      Supported Zoom Parameters:
> 
>      ACTUAL
>      FULL
>      FIT_WIDTH
>      FIT_HEIGHT
>      FIT_PAGE
> 
>      -- Examples 01:
> 
>      RBBEDIT filename.ext ACTUAL
> 
>      The above example would display the R:BASE Blob Editor with 
> specified
>      file in a zoom mode as "Actual Size".
> 
>      -- Examples 02:
> 
>      RBBEDIT filename.ext FIT_PAGE
> 
>      The above example would display the R:BASE Blob Editor with 
> specified
>      file in a zoom mode as "Fit to Screen".
> 
> That's all there s to it!
> 
> Very Best R:egards,
> 
> Razzak.
> 
> www.rbase.com
> www.facebook.com/rbase
> --
> 31 years of continuous innovation!
> 16 Years of R:BASE Technologies, Inc. making R:BASE what it is today!
> --


Reply via email to