You are not logged in.

Search results

Search results 21-40 of 436.

Dear visitor, welcome to Jabaco - Community. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Wednesday, July 23rd 2014, 10:46pm

Author: theuserbl

Is there a way to refer to a form at runtime?

Quoted from "jbExplorer" The examples are still hard-coded in the Form_load event unfortunately, but I might be able use this. Will give it a try, thanks. Possible this will help you: [ http://www.oracle.com/technetwork/articl…on-1536171.html ] Not all what you can do in Java is possible in Jabaco. For example, if you must use "void", that don't exists in Jabaco. Greatings theuserbl

Wednesday, July 23rd 2014, 10:24pm

Author: theuserbl

menubar creator

Good and bad news: Good news: It is now feature-complete. Bad News: You need a new JabacoFramework to make use of it: [ http://www.jabaco.org/wiki/Latest_JabacoFramework_Binary ] Good news: It can create menus, save them as XML-file, load them and creating Jabaco-code. Bad news: If you choose a "shortcut", then there are problems with the Jabaco-Compiler. You have to - first start it. - An error "java.lang.Exception: CallByName 'getKeyStroke' failed!" comes. - Comment out the lines, with the Key...

Wednesday, July 23rd 2014, 6:48pm

Author: theuserbl

Is there a way to refer to a form at runtime?

Quoted Dani/theuserbl, this is the type of thing I'm looking for. Good to know that the actual design names are no longer available. One more question - how would I find properties like the MousePointer (vbDefault) or Caption, for a parent form? I already mentioned this link: [ http://www.jabaco.org/board/1129-me-cont…k.html#post4192 ] Every control have a SuperClass. That have itself a superclass, etc. You can ask, in the program code, what control it is: Jabaco Source 1 2 3 4 5 6 7 Public Sub...

Wednesday, July 23rd 2014, 2:48pm

Author: theuserbl

Is there a way to refer to a form at runtime?

Quoted from "jbExplorer" But I was looking for a way to access the forms, by sort of compiling a component name string that is typed, while the application is running. It can't be hard-coded. It has to be typed in, during runtime. Don't know, what you mean, Do you mean something like [ http://www.jabaco.org/board/1129-me-cont…k.html#post4192 ] Where yoiu can access all created controls. Or do you want to create your own control on runtime? : Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 Public Sub Form...

Wednesday, July 23rd 2014, 9:25am

Author: theuserbl

MSGBOX

Quoted from "spysonic" Is there a way to change the default title of the Msgbox? Yes: Jabaco Source 1 MsgBox("Yes, you can.", vbOkOnly, "other title") But you have to set the MsgBoxStyle (in this case: "vbOkOnly") in the middle. Btw. is vbOkOnly the default Style, which is used, if you write only Jabaco Source 1 MsgBox "a text" Greatings theuserbl

Wednesday, July 23rd 2014, 5:04am

Author: theuserbl

menubar creator

Because the menucreator by klctal is no longer downloadable, I have written my own one. If you have looked at [ https://code.google.com/p/jbaindi/downloads/list ] you see, that I have begun with it in 2011. Then I have for three years no more done on it. For some days I have continued on it and I hope, it will be soon finished. With the current Preview you can already create every menu. The only thing, which is missing, is that you can not save to an xml-file and later load the xml-file again. B...

Sunday, July 20th 2014, 9:40am

Author: theuserbl

New MonthCalendar Control for the Jabaco framework

Quoted from "Dani" by the way, the problem seems to be the Now() function: You are right. Thanks to find the buggy function. Quoted Time() ... returns What you don't know is, that the Time()-function in Jabaco don't exist. You can write "Times()", "Honolulu()" or something other instead and it doing exactly the same. Greatings theuserbl

Saturday, July 19th 2014, 9:37am

Author: theuserbl

New MonthCalendar Control for the Jabaco framework

Quoted from "Dani" Hey there, Calendar.MONTH is zero based!!!!!!!!!!!! So here is a working Calendar Control: Nice. But there are two point of criticism: 1. Now after your change in the Monthcalendar dropdown is the time showing, too. But with the Monthcalendar is only changed the year, month and date. And the time is only updated, if the "Today"-button was clickt. So it would be better, to show no time. 2. I think, with this program was worked around Jabaco-Framework bugs. Here an example: Jab...

Thursday, July 17th 2014, 6:50pm

Author: theuserbl

New MonthCalendar Control for the Jabaco framework

Oh, and it shows again, that there is a bug in the framework with the date. Have to fix it in the future.

Thursday, July 17th 2014, 6:47pm

Author: theuserbl

New MonthCalendar Control for the Jabaco framework

Last month I played a little bit around with that program. Uploading it, before I don't find it again on my computer. The difference is now, that the calendar is a dropdown menu. So the Window don't need a special size. It only needs to be big enough for the button. Greatings theuserbl

Thursday, July 17th 2014, 6:30pm

Author: theuserbl

Translating XML Parser Example from Java

Oh, have forgotten to answer to this post. Create on your desktop the file "Stocks.xml" with this text in the file: Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 <?xml version="1.0" encoding="UTF-8"?> <stocks> <stock> <symbol>Citibank</symbol> <price>100</price> <quantity>1000</quantity> </stock> <stock> <symbol>Axis bank</symbol> <price>90</price> <quantity>2000</quantity> </stock> </stocks> Then this Jabaco-port works: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25...

Monday, July 14th 2014, 6:58pm

Author: theuserbl

Jabaco Reverse-engineer (question/request herein)

Quoted from "uaktags" To be clear, this is a question, not a posting of a PoC. You have in your post a lot of abbreviations. Do you mean with "PoC" "Proof of Concept" or "Percentage of Completion"? Both makes no sense in your context. Quoted So, I've been reading the Manuel is MIA With "MIA" you mean "Missing in Action", right? Quoted and jabaco has been "dead" for quite some time. We haven't seen a new version since 2009 according to the Download page. Yes. And in 1.5 months Jabaco 1.5.2 celeb...

Sunday, July 13th 2014, 8:59pm

Author: theuserbl

Installation error

Have you installed and started it with Administrator-rights? If not, then try it out, to start is with Admin rights: Click with the right mouse button on the Jabaco-icon and choose in the popup-menu then "Start as administrator" (a shield-icons is before of that entry). If it don't help, please try out the portable version of Jabaco, if that runs: [ http://www.jabaco.org/board/1191-jabaco-as-portable-app.html ] Greatings theuserbl

Monday, June 23rd 2014, 10:32am

Author: theuserbl

App.Path returns wrong values

Quoted from "yogiyang" I am experimenting with Jabaco and have run into a problem. The call to App.Path returns wrong path. It's the right path. Quoted The actual path of my project is: c:\Job\Junk\Jabaco And it will be given out with Jabaco Source 1 MsgBox (CurDir) Quoted But the App.Path returned is: C:\Users\Admin\AppData\Local\Temp\Jabaco3148396 Right. Thats where your class-files are in. Have you looked in that directory? The class files are compiled to that directory. Quoted An update: If...

Saturday, June 21st 2014, 2:32pm

Author: theuserbl

Jabaco as portable app

I have tried out Cameo, to create a portable app of Jabaco. If your are interested in it, here is it: [ JavaTM-Update-15-Jabaco-1.5.2-BETA-MSXML.cameyo.exe ] Greatings theuserbl

Wednesday, June 18th 2014, 6:45pm

Author: theuserbl

Something is happening

Quoted from "swissmade" also hope that we can use JavaFX in the feature. I personally don't like JavaFX for some reasons (if you want to know them, I can count them up). But because you are interested in it, I have now uploaded a little demo program written in Jabaco. JavaFX is very different to Swing. Additional there seems to be a bug in Jabaco, which makes it hard to implement a JabacoFX-Framework: If the line Jabaco Source 1 root.getChildren.add(btn) is in the code, then Jabaco ends up, wit...

Wednesday, May 28th 2014, 11:55pm

Author: theuserbl

Framework UPDATE - JBGrid HeaderAlign() Property

Compiled Binary uploaded: [ http://www.jabaco.org/wiki/Latest_JabacoFramework_Binary ]

Tuesday, May 20th 2014, 7:22pm

Author: theuserbl

Framework UPDATE - Form Focus Events

Binary of Rev 142 now uploaded: [ http://www.jabaco.org/wiki/Latest_JabacoFramework_Binary ] Greatings theuserbl

Friday, May 16th 2014, 10:53am

Author: theuserbl

Jabaco and ROS CE

Only for your information: There existing an OpenSource Windows-rewrite called ReactOS: http://www.reactos.com/de For money-income, they want to create a "ReactOS coimmunity edition": https://www.indiegogo.com/projects/reactos-community-edition For that, they have choosen Indiegogo as funding platform. One of the perks there is "push your app". If you have before May, 14th donated there and choosen the "puch your app"-perk, you will be informed, on which place your perk is: https://www.indiegogo...

Thursday, May 15th 2014, 12:46pm

Author: theuserbl

assigning hex constants

Added the Hex-Support algorithm of A1880 in the newest Jabaco Framework: [ http://www.jabaco.org/wiki/Latest_JabacoFramework_Binary ] For information of the changes, look at the linked page. Now this is possible: Jabaco Source 1 2 3 4 5 6 7 8 Public Sub Form_Load() RichTextBox1.Text = "" RichTextBox1.Print CLng("142") RichTextBox1.Print CLng("&H1ad2") RichTextBox1.Print CLng("&O142") RichTextBox1.Print CLng("&B101") RichTextBox1.Print Bin("148") End Sub Greatings theuserbl

WoltLab Burning Board