Re: [dev] Development Todo Page

2009-07-07 Thread Per Eriksson

Hello Mathias,

Mathias Bauer skrev:

In case there isn't any policy or something similar that forbids to
redirect here, that would be a very good idea. Alternatively (or in case
we think that the unexpected domain change could be confusing) we could
change all links in the OOo pages to links pointing to the wiki and
remove the above mentioned page.

  


Maybe this is even better. I'll ask louis to make this change.

Per

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



[dev] how to close the quickstarter ?

2009-07-07 Thread Oliver Brinzing
Hi,

i remember oo 2.x has had a command line option to close
the quickstart service on windows: 

.\program\quickstart -killtray

oo 3.x will start the quickstart service with soffice -quickstart
but how to close the quickstarter ?

Oliver
-- 
Neu: GMX Doppel-FLAT mit Internet-Flatrate + Telefon-Flatrate
für nur 19,99 Euro/mtl.!* http://portal.gmx.net/de/go/dsl02

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



[dev] Help regarding text editor for Basic Language

2009-07-07 Thread trupti.bang...@pcil.in

Dear Sir/Madam,

I need a help in OpenOffice Basic.
I am using Language Basic, Database is MySQL .
I used Macro and Dialogs but not compatible with my project.

So i need a text-editor with Compiler (C/C++ Complier would be suitable 
for Linux OS i.e Ubuntu) BUT NOT Java Compiler.


Please guide me on this  !!
Awaiting for your reply...

Thank  Regards,
--

Trupti Bangera
IT-Officer
Pest Control (India) Pvt. Ltd.



[dev] Help regarding text editor for Basic Language

2009-07-07 Thread Jian Hong Cheng
Return Receipt
   
   Your   [dev] Help regarding text editor for Basic Language  
   document:   
   
   waschen...@cn.ibm.com   
   received
   by: 
   
   at:07/07/2009 15:55:39  
   




[dev] Starting to learn Programming in Openoffice Basic.

2009-07-07 Thread trupti.bang...@pcil.in

Dear Sir / Madam,

How can i start with simple Program with OpenOffice Basic Language with 
C/C ++ Compiler for Linux OS i.e Ubuntu.
What all things i need to install for starting programming in Open 
Office Basic with database as MySQL.


Kindly guide us.

Awaiting for you reply

--
Trupti Bangera
IT-Officer
Pest Control (India) Pvt. Ltd.



Re: [dev] Starting to learn Programming in Openoffice Basic.

2009-07-07 Thread Mechtilde
Hello,

trupti.bang...@pcil.in schrieb:
 Dear Sir / Madam,
 
 How can i start with simple Program with OpenOffice Basic Language with
 C/C ++ Compiler for Linux OS i.e Ubuntu.
 What all things i need to install for starting programming in Open
 Office Basic with database as MySQL.

http://docs.sun.com/app/docs/doc/819-0439?l=en
 
 Kindly guide us.
 
 Awaiting for you reply
 

Regards


Mechtilde


-- 
Dipl. Ing. Mechtilde Stehmann
## http://de.openoffice.org
## Ansprechpartnerin für die deutschsprachige QA
## Freie Office-Suite für Linux, Mac, Windows, Solaris
## Meine Seite http://www.mechtilde.de
## PGP encryption welcome! Key-ID: 0x53B3892B


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



Re: [dev] Starting to learn Programming in Openoffice Basic.

2009-07-07 Thread Regina Henschel

Hi,

trupti.bang...@pcil.in schrieb:

Dear Sir / Madam,

How can i start with simple Program with OpenOffice Basic Language with 
C/C ++ Compiler for Linux OS i.e Ubuntu.
What all things i need to install for starting programming in Open 
Office Basic with database as MySQL.


Kindly guide us.


Besides the book Mechtilde mentioned, you should also have a look at 
http://www.pitonyak.org/oo.php and for Base 
http://www.pitonyak.org/database/, there especially Random DB Ramblins 
[http://www.pitonyak.org/database/AndrewBase.odt]


Working with the OOo Basic IDE you will find a useful tool in X - Ray 
Tool  [http://ooomacros.org/dev.php#101416]


kind regards
Regina

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



[dev] Is this how you create a bitmap image from using xDevice.createDisplayBitmap

2009-07-07 Thread Chris Fleischmann

I found this code here:

// System.out.println( The bitmap is going to be painted! );
XDevice xDevice = 
(XDevice)UnoRuntime.queryInterface( XDevice.class,
m_xWindow );
if ( xDevice != null )
{
// System.out.println( Step1 );
XGraphics xGraphics = 
xDevice.createGraphics();
if ( xBitmap != null )
{
// System.out.println( Step2 
);
XDisplayBitmap xDisplayBitmap = 
xDevice.createDisplayBitmap( xBitmap
);

com.sun.star.awt.Size aSize = 
xBitmap.getSize();
xGraphics.draw( xDisplayBitmap, 
0, 0, aSize.Width, aSize.Height,

aRect.X, aRect.Y, aRect.Width, aRect.Height );
}

// System.out.println( Step3 );

xGraphics.drawLine( aRect.X - 1, 
aRect.Y - 1,

aRect.X + aRect.Width + 1, aRect.Y - 1 );
xGraphics.drawLine( aRect.X + 
aRect.Width + 1, aRect.Y - 1,

aRect.X + aRect.Width + 1, aRect.Y + aRect.Height + 1 );
xGraphics.drawLine( aRect.X + 
aRect.Width + 1, aRect.Y + aRect.Height +
1,

aRect.X - 1, aRect.Y + aRect.Height + 1 );
xGraphics.drawLine( aRect.X - 1, 
aRect.Y + aRect.Height + 1,

aRect.X - 1, aRect.Y - 1 );

-

Is this how you draw to your new bitmap? Is it this command that says draw
to this bitmap from now on?

xGraphics.draw( xDisplayBitmap, 0, 0, aSize.Width, aSize.Height,

aRect.X, aRect.Y, aRect.Width, aRect.Height );

So the next few lines that are drawn are drawn to the bitmap?

Thanks in advance, the API on it was faily vague.
http://api.openoffice.org/docs/common/ref/com/sun/star/awt/XGraphics.html#draw

Thanks once again!!!
Chris
-- 
View this message in context: 
http://www.nabble.com/Is-this-how-you-create-a-bitmap-image-from-using-xDevice.createDisplayBitmap-tp24372638p24372638.html
Sent from the openoffice - dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



Re: [dev] ODF amendments for colored sheet tabs and more border types

2009-07-07 Thread Peter Junge
Hi Kirill,

I will not have the time to take action on these issues myself, but I
would like to briefly summarize how you (and of course others) can get
heard by the OASIS ODF TC.

For each standards TC, OASIS is offering a public comment list and they
have a policy, that each comment submitted must be tracked. I am a
member of the ODF TC for only six month now, but so far the process
seems to work, hence I can recommend using the list. As there are some
policies to consider, please have a look at [1] to learn about it and
also find the information for subscribing to the mailing list there.

Your comment to the ODF list can be just like the original mail, but I
would recommend to add some information like name, contact, application
(e.g. text, spreadsheet or presentation), category (formatting in your
case) and a brief use case.

If you or anyone else would like to invest more time, you might consider
to submit a complete proposal. A proposal template you can find at [2],
examples are available at [3].
Please refer the ODF TC wiki for more information [4].

Best regards,
Peter

[1] http://www.oasis-open.org/committees/comments/index.php?wg_abbrev=office
[2] http://wiki.oasis-open.org/office/ProposalTemplate
[3] http://wiki.oasis-open.org/office/List_of_Proposals
[4] http://wiki.oasis-open.org/office


Kirill S. Palagin wrote:
 Hello everybody.
  
 We have highly desired issues
 http://www.openoffice.org/issues/show_bug.cgi?id=5560 and
 http://www.openoffice.org/issues/show_bug.cgi?id=8275 , which require
 amendments for ODF specification. Issue 5560 is even implemented in
 code.
 So could somebody, who is member of OASIS ODF committee, introduce these
 two proposals for next version of ODF?
  
 TIA.
 WBR,
 KP.
 

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org