You are not logged in.

Search results

Search results 341-360 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.

Friday, January 14th 2011, 10:05pm

Author: theuserbl

Is VB and VBA implementation documented?

Quoted from "A1880" We could remove all public functions and just let DateDiff survive. Done: http://code.google.com/p/jabacoframework…A/DateTime.java

Friday, January 14th 2011, 5:36pm

Author: theuserbl

Is VB and VBA implementation documented?

Shit have edited me post. Wantet to reply it. Ok. My last post was, that I am not sure, which will be better. There existing already a VBA/DateTime.java , which have not all implemented. And I am not sure, if it would be better to take the original one and modify it or to delete the VBA/DateTime.java and creating your VB/DateTime.jsrc instead of it. Also I have thanked you, that you have mentioned your nice code again, so that I am remembered, that it would be a nice idea, to upload it in svn. M...

Friday, January 14th 2011, 5:21pm

Author: theuserbl

Installing under linux (ubuntu)

Quoted from "Crabro" That's a shame. Never mind, I'll use GAMBAS: http://gambasrad.org/ GambasRAD.org ??? Never heard before. The news seems also be a little bit outdated (2007). I know only the oficial GAMBAS-page at http://gambas.sourceforge.net/ and there the last news is from 2011.

Sunday, January 9th 2011, 10:13pm

Author: theuserbl

Picture1.Scale and Picture1.Circle

I am currently on Linux, so that I have at the moment not looked deeper at it. But possible at [ http://www.jabaco.org/board/589-examples…s-and-more.html ] the first example program helps you

Wednesday, December 29th 2010, 12:42pm

Author: theuserbl

vbProperCase problem

Ok, here is now the actual version: http://www.file-upload.net/download-3086723/Jabaco.jar.html And it is again compiled with the Java 1.4 options. Here the little changes, to make it work with 1.4: http://code.google.com/p/jabacoframework/source/detail?r=80#

Wednesday, December 29th 2010, 12:05pm

Author: theuserbl

vbProperCase problem

Oh, and by the way: Here is the String I used, to test PCase: Jabaco Source 1 s = "Dieses ist ein kleiner Test. [dsf],{ff]sd{sf/fd[&feg§sdgbföfsd65ghfÜrgreh fhth 456fgfg"

Wednesday, December 29th 2010, 12:01pm

Author: theuserbl

vbProperCase problem

Quoted from "A1880" How can we get the updated framework for download? From http://www.file-upload.net/download-3086647/Jabaco.jar.html But it is only a minor change. Only the Systems-class was chenged. And there is a little problem. Currently I have compiled Systems.java with the options "-source 1.5 -target 1.5", because with "-source 1.4 -target 1.4.2" there comes for Systems.java the following errors: Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 VBA\Strings.java:205: incompatible type...

Wednesday, December 29th 2010, 1:59am

Author: theuserbl

vbProperCase problem

Quoted from "A1880" So, this feature needs a volunteer to implement it. Done. Current implementation is Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 public static String PCase(String String1) { String String2 = ""; boolean lastWasLetter = false; for (int i=0; i<=String1.length()-1; i++) { Character ch = String1.charAt(i); if (Character.isLetterOrDigit(ch)) { if (Character.isDigit(ch)) { String2 = String2.concat(ch.toString()); } else if (lastWasLetter) { String2 = Stri...

Monday, November 8th 2010, 12:04pm

Author: theuserbl

RE: Aktuelles SVN als Binary zur Verfügung stellen

Quoted from "Peter" ich hätte eine Bitte an Euch: Es wäre toll, wenn mir jemand das aktuelle SVN als Binary zur Verfügung stellen könnte. Unter [ In which revision of works the ant way correct? ] hatte ich schon mal Links gepostet: Quoted Btw: If you want the latest Jabaco.jar I have here created one for you: http://www.file-upload.net/download-2908341/Jabaco.jar.html Copy it in your Jabaco-directory. The Framework comes with an example program which is automatical compiled, too. If you want to...

Tuesday, October 26th 2010, 12:22pm

Author: theuserbl

RE: android und zukinft von jabaco

Quoted wichtig sind mir u.a. die problemlose einbindung von windows api's. (hat schon jemand winpcap, opencv etc probiert??) Dafür gibt es den Befehl WinAPI. Dann ist aber die plattformunabhängigkeit futsch. Quoted Wie siehts eigentlich mit der weiterentwicklung von jabaco aus. 2009 lastrelease. tut sich da noch was? ist das projekt noch aktiv? Einfach re:New version nachlsesen: Zwischen 2011 und 2012 soll die nächste Version draußen sein. Quoted Wie siehts mit support aus? Bei größeren udn pro...

Thursday, October 21st 2010, 8:04pm

Author: theuserbl

In which revision of works the ant way correct?

Btw: The download side looks normaly something like this: index.php?page=Attachment&attachmentID=256 It looks like there are two download buttons. To download my file you have to click on the little button on the right one. Thats the real button. The big one is only a banner.

Thursday, October 21st 2010, 7:58pm

Author: theuserbl

In which revision of works the ant way correct?

Quoted from "A1880" I just have been playing around with Class Dependency Analyzer There is nothing new information in it. VB depends on VBA and Quoted VBA depends on Jabaco Source 1 2 VB IJabacoClass VB VBFileHandler this is right for older version. This shows, that you are using still a very old Jabaco.jar. Until March, 15th 2010 FileSystem.jsrc was the only Jabaco-source file with the namespace VBA. So this Jabaco-file compiles in the Java-directory. FileSystem.jsrc have the enums VBFileMode...

Thursday, October 21st 2010, 7:11pm

Author: theuserbl

In which revision of works the ant way correct?

Quoted from "theuserbl" I am not sure, if the compilation order is really the reason. For me it seems, that over the command line (and so with ant), no Jabaco-Source file can see an other Jabaco-Source file. In that case it would only help to compile all files direct. Setting as projectpath every jsrc file instead of the jba file But then there are not all links imported (You know the thing with <Implements ...> in the jba files). So the other imports have to be written in the files. Which mean...

Thursday, October 21st 2010, 7:02pm

Author: theuserbl

In which revision of works the ant way correct?

Quoted from "A1880" My guess is, that a precompiled Jabaco.jar is needed for compilation due to problems of compilation order. Thats the reason why I want to begin with a working revision. I can also try to compile the current revision, which compiles with ant only the Java-files, at the command line: Source code 1 C:\jabacoframework\Framework>C:\Programme\Jabaco\Jabaco.exe -jabacoframework=C:\jabacoframework\Framework\bin-tmp -projectpath=C:\jabacoframework\Framework\src\VB\FrameworkTest.jba -...

Thursday, October 21st 2010, 6:24pm

Author: theuserbl

In which revision of works the ant way correct?

Hi! I currently try to let the Jabaco-Framework again compiled with the ant way. For this I want to know, in which revision of the Framework works the ant way correct?? I have tested some revions out: rev 9, rev 25, rev 53 and rev 55. I have set up Apache Ant correct and changed the local pathes in build.xml correct. I have also deleted the "delete" parts, so that after the compiling the "bin-tmp" path with the build.log still exists. Rev 55 comes direct with the error 2010-10-21 Fehler in 'Glob...

Friday, October 15th 2010, 12:02am

Author: theuserbl

Turn off WinLAF???

The easiest way is to download the latest Jabaco-Framework Sourcecode http://code.google.com/p/jabacoframework/ and removing in your local copy all WinLAF-calls. Then compile it and take it as your Jabaco.jar

Friday, October 8th 2010, 11:41pm

Author: theuserbl

New Version

Quoted from "OlimilO" JabacoDir\Jabaco.exe -projectpath=ProjectDir\MyJabacoProject.jba -d=BuildDir I have looked now a little bit more at Jabaco and find more command line options (I hope that are now all): Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 Jabaco.exe [-projectpath | -d | -log | -jabacoframework | -javaframework] -projectpath : The name of the main project file. It can be either a .jba or .jsrc file -d : The directory where the binary .class files will be created -log : The ...

Friday, October 8th 2010, 6:20pm

Author: theuserbl

New Version

Quoted think it would be easier to write in the complete Framework everytime the full name of classes (for example "java#awt#event#WindowEvent" instead of "WindowEvent". In this case the *.jba file is not needed and it would be possible, that Manuel creates a compiler which compiles a *.jsrc file direct. So in this case you can compile the framework file by file.Only a Makefile or Ant-file is needed, to compile the *.jsrc files in the right order. I have now tested around and that is already po...

Friday, October 8th 2010, 6:07pm

Author: theuserbl

New Version

Quoted from "A1880" What do you think? It sounds a little bit like Jigsaw in JDK7. But at the end it is completely different and I think it would have more disadvantages then advantages. The advantage: - "This speeds up recompilation of the framework during testing." - "Another advantage probably is the reduced amount of resources (memory, disk) to perform a compile step." The disadvantages: Instead of one *.jba file to compile you have a lot of them. This means - if you have imported a class o...

Thursday, October 7th 2010, 6:44pm

Author: theuserbl

New Version

Quoted when we extract the useful informations we get: JabacoDir\Jabaco.exe -projectpath=ProjectDir\MyJabacoProject.jba -d=BuildDir Thanks for that info, OlimilO. Quoted As you can see here: http://www.jabaco.org/framework.html the Jabaco-Framework does not completely compile any more. the Jabaco-source part is missing. I will later have a look at it. Currently it only don't compile with ant. The older way still works. The last revision have had only problems, because Franco addeed files, which...

WoltLab Burning Board