You are not logged in.

Search results

Search results 301-320 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.

Sunday, June 12th 2011, 6:43pm

Author: theuserbl

FormViewer for Jabaco *.jsrc files

If you want to show a GUI-Jabaco Sourcefile on other systems then Windows. Or you want to see a GUI file without installing Jabaco on an computer, then it is now possible. Download this file: FormViewer.jar It is an executable jar-file. You can start it with java -jar FormViewer.jar in a console. Or double click on it in the Exlorer of Windows. After that cliock in the menu "File" -> "Open...". Navigate to the directories and files to a Jabaco-Sourcecode file with GUI (a Form, Applet, etc. Not a...

Tuesday, May 31st 2011, 10:24pm

Author: theuserbl

Java 7 and Java 8 features

If you want to know, which are the new features of the upcomming Java 7 and shrtly after that comming Java 8, then have a look at that RedHat Summit 2011 slides: http://www.redhat.com/summit/2011/presen…_lies_ahead.pdf For example in Java 7 it will be - like in Jabaco - possible to use switch for Strings: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 public static void printFullMonthName(String month) { switch (month) { case "jan" : System.out.println("Januaray"); break; case ...

Thursday, May 26th 2011, 1:11am

Author: theuserbl

FleListBox control

Quoted from "A1880" Thanks for this hint/correction. How do I include these new controls in my projects? They don't appear in the list of controls within the IDE. Have a look at the uDirBrowse-example: http://code.google.com/p/jabacoframework…uDirBrowse.jsrc DirListBox is a UserControl written by FrancoAA. In this case, it is better to integrate the DirListBrowse code completly as Sourcecode in the own project. Because integrating only the binary code, then in the IDE there is no widget to use....

Wednesday, May 25th 2011, 2:17am

Author: theuserbl

FleListBox control

Quoted from "A1880" Yes, you are right. The DirListBox and FileListBox still have to be added to the Jabaco framework. DirListBox and FileListBox are already added ! FileListBox added July 6, 2010: http://code.google.com/p/jabacoframework…ileListBox.jsrc DirListBox added July 23, 2010: http://code.google.com/p/jabacoframework…DirListBox.jsrc And at http://www.jabaco.org/board/p2575-framew…e.html#post2575 I posted a precompiled jar-file of the framework (which includes FileListBox and DirListBox...

Tuesday, May 17th 2011, 12:01am

Author: theuserbl

Miguel de Icaza announced new Mono-company

If you like OpenSource-Java and OpenSource-.NET, then this news makes you happy: Miguel de Icaza announced a new company called Xamarin: http://tirania.org/blog//index.html This is a very good news for Mono and Moonlight (the OpenSource .NET implementations). After the sad news in the last times in this area, this make me happy. Hopefully there comes in the future some nice Java news, too. At the moment Oracle and the Java-community are a little splitted.

Sunday, May 15th 2011, 3:53pm

Author: theuserbl

QuickDialogs?

You are right. The (nearly) only problem is the layout. It needs the use of different layoutmanager. I have create at the moment a quick and dirty skeleton of that code, without different laqoutmanager. This Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public class Simple { public static void main(String[] args) { QDialog d = new QDialog(); d.title("My second dialog"); d.image("ChickenEgg.png"); d.message("Which came first, the chicken or the egg?"); d.buttons(d.button("&Chicken"),...

Wednesday, May 4th 2011, 5:28pm

Author: theuserbl

Can be parts of Mono Basic used for Jabaco framework?

I am thinking if mathematical formulas are general without copyright. Then it would be possible to port the Mono-Basic Financial over to the Jabaco Framework without to mention Mono or the MIT-license.

Wednesday, May 4th 2011, 4:48pm

Author: theuserbl

Can be parts of Mono Basic used for Jabaco framework?

Mono is an OpenSource .NET Framework for Windows, Linux and MacOSX. It also exists for Android, iPad and so on. Mono comes with the C# compiler called mcs. But there existing additional a Visual Basic Compiler for it with the VisualBasic runtime classes. The VB Mono side you can find at http://www.mono-project.com/VisualBasic.NET_support The Sourcecode you can find at http://ftp.novell.com/pub/mono/sources/mono-basic/ If you download mono-basic-2.10.tar.bz2 and unpack it, you will find in the di...

Friday, April 8th 2011, 1:53am

Author: theuserbl

OT: Monkey

Ok, its a little bit off topic. But for people who look also around about other BASIC-dialects this would be interesting: Mark Sibly, author of the famous BlitzBasic, Blitz3D, BlitzPlus and BlitzMax (http://www.blitzbasic.com/) have created a new BASIC-like programming language: Monkey (http://www.monkeycoder.co.nz/). Monkey compiles its code to HTML5, Native OpenGL/OpenAL (Windows + Mac), Android, Flash, iOS and XNA. There existing a commercial version and for testing a demo-version. The demo-v...

Monday, April 4th 2011, 12:28pm

Author: theuserbl

Hide Cursor

The nice thing of your wanted program is, that it is so easy and small. So I have written it in Java, if it will help you: 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 import javax.swing.*; import java.awt.*; import java.awt.image.*; public class BlackScreen extends JFrame { public BlackScreen() { Toolkit toolkit = Toolkit.getDefaultToolkit(); // get the smallest valid cursor si...

Friday, April 1st 2011, 6:59pm

Author: theuserbl

Hide Cursor

Read this one: http://stackoverflow.com/questions/19159…-exclusive-mode There is an example code. When you port it to Jabaco, it looks like 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 26 27 28 29 30 31 32 33 Import java#awt#Toolkit Import java#awt#Graphics2D Public Sub Form_Load() Dim myToolkit As Toolkit myToolkit = Toolkit.getDefaultToolkit ' get the smallest valid cursor size Dim myDim As Dimension myDim = myToolkit.getBestCursorSize(1, 1) ' create a new im...

Friday, March 11th 2011, 8:18pm

Author: theuserbl

Linklist: Converter in the Internet

I have tried out the demos at http://www.tangiblesoftwaresolutions.com/ for code snippets. Intrestingly in VB.net existing - in comparision to VB6 - more keywords. Some could also be interesting for Jabaco. Currently I have found two intresting one. Currently there existing the keywords And ' in C/C++/C#/Java: & Or ' in C/C++/C#/Java: | (bit-wise operators) But in VB.net existing additional AndAlso ' in C/C++/C#/Java: && OrElse ' in C/C++/C#/Java: || (logic operators) But where VB6 using the bit...

Wednesday, March 9th 2011, 9:18pm

Author: theuserbl

Linklist: Converter in the Internet

Hi! I have looked how Microsoft creates with VB.NET and C# the same code. With .NET Reflector you can decompiler .net programs to C#, VB.NET and so on. But to convert direct the sourcecode there existing surprisingly a lot of online converters in the internet: http://www.developerfusion.com/tools/convert/vb-to-csharp/ http://www.developerfusion.com/tools/convert/csharp-to-vb/ http://www.dotnetspider.com/convert/vb-to-csharp.aspx http://converter.telerik.com/ http://authors.aspalliance.com/aldotn...

Thursday, February 24th 2011, 7:43pm

Author: theuserbl

Sense of VBArray?

Are "[" and "]" already used in BASIC? Possible Jabaco could use it for Arrays. So in Java: Source code 1 2 3 4 5 6 int a[] = new int[4]; double b[][] = new int[45][23]; int a(int h) { return h*7; } is in the current Jabaco (and in BASIC): Jabaco Source 1 2 3 4 5 Dim a(4) As Integer Dim b(45,23) As Double 'Currently not supported in Jabaco Function a(h As Integer) As Integer End Function And it could be in Jabaco: Jabaco Source 1 2 3 4 5 Dim a[4] As Integer Dim b[45,23] As Double 'Currently not ...

Thursday, February 24th 2011, 7:25pm

Author: theuserbl

Sense of VBArray?

Here is an additional funny thing. In this case it have more to do with the BASIC syntax: 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 26 27 28 29 Dim SomeThing1(5) As Integer Dim Both(3) As Integer Public Sub CallIt() SomeThing1(0) = 7 SomeThing1(1) = 6 SomeThing1(2) = 3 SomeThing1(3) = 45 SomeThing1(4) = 34 Both(0) = 23 Both(1) = 47 Both(2) = 63 End Sub Public Function SomeThing2(a As Integer) As Integer Something2=a*2 End Function Public Function Both(b As I...

Wednesday, February 23rd 2011, 6:11pm

Author: theuserbl

Sense of VBArray?

Do anybody know, which advantages VBArray have? http://code.google.com/p/jabacoframework…BA/VBArray.java Jabaco code like Jabaco Source 1 Dim b() As Double is compiled to Jabaco Source 1 Dim b As VBA#VBArrayDouble With Dim it happens everytime. And in functions it can be prevented with the Jabaco key-word ByJava: Jabaco Source 1 2 Public Sub main(ByJava args() As String) End Sub But currently I don't see any advatage, to use for example VBArrayDouble over instead of an real array of double. http...

Wednesday, February 23rd 2011, 5:58pm

Author: theuserbl

Error: Java.lang.NoSuchMethodError

Quoted from "A1880" It would probably make sense to remove or change the "Call net#java#plaf#LookAndFeelPatchManager.initialize()". Thanks for your help. I will look later more at it. Quoted The difference between standard L&F and WinLAF is described in the WinLAF files. I have read in the internet, that WinLAF looked more like Windows then Suns implementation. But I think - because WinLAF is BSD-licensed and time have gone - in newer Java-version all the WinLAF things are integrated. Possible ...

Sunday, February 20th 2011, 7:23pm

Author: theuserbl

Error: Java.lang.NoSuchMethodError

Ok, I have no tried myself to rename the old Java-directory. It have no effect. Jabaco works still fine. But the WinLAF-mysterious go on: I have tried here in an Internetcafé (where I can nearly all install, without to need to deinstall later all) to delete the complete WinLAF-part in Jabaco.jar. I expected, that Jabaco now will no loger run. But thats not true. If I create a SDI program and start it, there comes an Jabaco-error window index.php?page=Attachment&attachmentID=265 But after that, J...

Friday, February 18th 2011, 9:29pm

Author: theuserbl

Error: Java.lang.NoSuchMethodError

Quoted from "A1880" What is the effect of modifying Module1 to something like this? Don't know. To all the people with the error message: Trying A1880s code for Module1 out and writing here, if the error still exists! Quoted Would this help around WinLAF? Don't know. Quoted Why doesn't the WinLAF problem blow *my* applications? I don't understand it exactly, too. And I am also wondering about it, too. But the reason is, that you still have an older JRE where the method DesktopProperty(String, O...

Friday, February 18th 2011, 9:06pm

Author: theuserbl

Error: Java.lang.NoSuchMethodError

Quoted from "A1880" Well, if it is of no use, it should be taken out That is, what I prefer in this situation. But I don't know why Manuel uses WinLAF. It uses com.sun.java.swing.plaf.windows.DesktopProperty. So the WinLAF implementation is based on the Windows-implementation which is thegrated in Java. For me it makes really no sence. The complete WinLAF makes for me no sence. But some advantages it would be having. And thats what I miss to know, before I know which decision would be best. Quo...

WoltLab Burning Board