You are not logged in.

Search results

Search results 221-240 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, November 20th 2011, 8:15pm

Author: theuserbl

Command1/Text1 Enabled = False - not the expected behaviour

Quoted from "Dani" is not a malfunction. It is the looks! In my LAF environment the disabled Command Botton changes to the disabled look BUT it's caption stays black (the 'enabled = True' appearence)! Is it wrong? I can change it, but I think it is the normal Java SystemLookAndFeel for Windows. So it should like to look like WindowsXP disable-buttons. The program at runtime looks also as WinXP and that in the designmode as Win2k. If you want, you can also at runtime use an different LookAndFeel...

Sunday, November 20th 2011, 5:45pm

Author: theuserbl

Facebook API

Oh, it uses a lot of external libraries: Quoted Jabaco Source 1 2 import static com.emobus.stuff.LoggerConstants.facebookUserId; import static com.emobus.stuff.LoggerConstants.ipAddress; Can't find the needed one. Quoted Jabaco Source 1 2 3 4 5 6 7 8 9 import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServ...

Sunday, November 20th 2011, 5:08pm

Author: theuserbl

RE: Command1/Text1 Enabled = False - not the expected behaviour

Quoted from "Dani" when setting Jabaco Source 1 Command1.Enabled = False the caption is not greyed out! It just does not look right at runtime. It is fine at designtime though. Disable the CommandButton works fine for me. I have no problems with enable and disable it. Quoted Jabaco Source 1 Text1.enabled = False does not seem to change anything. It should be greyed out and locked! Thanks for the info. Bug is now fixed: [ http://code.google.com/p/jabacoframework/source/detail?r=87 ] [ Jabaco-rev...

Thursday, November 17th 2011, 1:33am

Author: theuserbl

Treeview - Node Add

@ GDR: I thank you too. I have uploaded the changes to the svn: http://code.google.com/p/jabacoframework/source/detail?r=86 @ aawaad: I have uploaded a new binray: [ Jabaco-rev86.jar ] The added key-property in node/nodes is the only change of this new version. Greatings theuserbl

Thursday, November 17th 2011, 12:39am

Author: theuserbl

Present Snatch

Nice. But after closing the browser window with this game, there comes every time a NullPointerException. Can you please trying, if it helps to add the following SUB to your Applet1 class? Jabaco Source 1 2 3 4 5 6 Public Sub destroy() Timer1.Enabled = False Timer2.Enabled = False Timer3.Enabled = False Timer4.Enabled = False End Sub There existing four SUBs which are automatically called in Java Applets: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 Public Sub init() ' Is called one time after the Appl...

Thursday, November 10th 2011, 5:03pm

Author: theuserbl

RE: Tree Node Key

Quoted from "aawaad" I wish to have the code for extending the tree node & nodes, I need to use the key & tag. Do you mean the code of Node.jsrc and Nodes.jsrc? Node.jsrc Nodes.jsrc All files you can find at http://code.google.com/p/jabacoframework…work%2Fsrc%2FVB To download the complete source as compressed zip-file: jabacoframework-src-rev84.zip Greatings theuserbl

Monday, November 7th 2011, 8:29pm

Author: theuserbl

Translate Jabaco into your native language

Updated spanish (the file from da20) and added slovak (the file from MMI). http://code.google.com/p/jabacoframework/source/detail?r=85

Monday, November 7th 2011, 12:04am

Author: theuserbl

Can not initialize Type variable (multidimensional array)

Quoted from "Dani" Jabaco Source 1 2 3 'ERROR: 'java.lang.VerifyError: (class: Form1, method: Form_Load signature: ()V) Unable To pop operand Off an empty stack 'at Module1.<clinit>(Module1.jsrc) Oh, and this sound very much as an compiler bug. The JavaVM is a stack-vm. So there are numbers of variables and so, whoich are first "pushed" to a stack and later "poped" from it. And the error is, that the stack is empty and the program says, to take something from it. If a compiler works correct, it...

Sunday, November 6th 2011, 11:47pm

Author: theuserbl

Can not initialize Type variable (multidimensional array)

the only people, who have best knowlege aboutr Jabaco is Manuel. But he don't answers questions in this forum since years. He only writes, when and if upcimming new versions of Jabaco come. Quoted from "Dani" Actually on second thought Jabaco does support multidimensonal arrays! Jabaco Source 1 2 3 4 5 6 7 8 9 10 Option Explicit Public Sub Form_Load() Dim a() As Long Redim a(0 To 4, 1 To 2) MsgBox "a " _ & Lbound(a, 1) & " bis " & Ubound(a, 1) & ", " _ & Lbound(a, 2) & " bis " & Ubound(a, 2) Unl...

Sunday, November 6th 2011, 7:36pm

Author: theuserbl

Can not initialize Type variable (multidimensional array)

Additional links to this topic: [ http://www.jabaco.org/board/p2651-sense-of-vbarray.html ] [ http://www.jabaco.org/board/p2293-dim-in…mpiler-bug.html ] [ http://www.jabaco.org/board/p743-it-seem…towidechar.html ] Greatings theuserbl

Sunday, November 6th 2011, 7:21pm

Author: theuserbl

RE: Can not initialize Type variable (multidimensional array)

Quoted from "Dani" why does the following not work for a multidimensional array? Don't have looked at your code now. But Multidemsinal Arrays are currently not supported in Jabaco. I don't know why Manuel haven't used Java-Arrays for it. But at currently Arrays in Jabaco are based on VBArray: http://code.google.com/p/jabacoframework…BA/VBArray.java And VBArray and the current Jabaco-compiler are only supporting One-dimensional Arrays. Jabaco Source 1 Dim A() As Integer is exacly the same like J...

Sunday, November 6th 2011, 6:06pm

Author: theuserbl

Small fast Lexer for Jabaco files

If you need for any purpose an small and fast Lexer for Jabaco-code, here is one: [ JbaLexer.jar ] and the Sourcecode: [ JbaLexer-src.zip ] The Jar-file, which includes additional an example program - is only 3082 bytes small. To use the test program: Be use, that in your choosen directory are *.jsrc files. You can either start it with Source code 1 java -jar JbaLexer.jar file1.jsrc file2.jsrc file3.jsrc or simple write Source code 1 java -jar JbaLexer.jar * It creates files with the extrension ...

Tuesday, November 1st 2011, 6:54pm

Author: theuserbl

Applet in Applet

Possible this could help you: [ http://www.jabaco.org/board/711-solved-s…ava-applet.html ]

Tuesday, November 1st 2011, 6:52pm

Author: theuserbl

ORPG in Jabaco-applet

It is already before the login. It is a short time "38" and switches fast to "30". After some time it changed for a short time again to "38" and back to "30". And so on. I have no idea if the error comes before "30" or "38" or with this. Because it goes so fast. My Java-Version I have alraedy postet at [ http://www.jabaco.org/board/p2988-orpg-i…t.html#post2988 ] Java 6 Greatings theuserbl

Saturday, October 29th 2011, 2:40pm

Author: theuserbl

ORPG in Jabaco-applet

Quoted from "JasonS" I have set it so that if its not running under Windows, to completely disable the sound, this should allow us to know if that is the main problem or not. I have tested it. And now it worked really normal. Only two NullPointerException windows exists. But the said one of this windows is, that a VB#Timer or so creates this exception. When I close the Exception-window, it comes again and again. I only wonder, why on Windows the exceptions are not called. And why the program ev...

Friday, October 28th 2011, 11:01pm

Author: theuserbl

RE: Newbie - Downloaded but Nothing works

Jabaco works fine. Quoted from "K.C." and did update. Thats the problem. The updater takes the last snapshot file of [ http://www.jabaco.org/framework.html ] and the new files are broken. Download Jabaco-rev84.jar, rename it to Jabaco.jar and replace your existing Jabaco.jar in your Jabaco-directory with this one. Greatings theuserbl

Friday, October 28th 2011, 9:36pm

Author: theuserbl

ORPG in Jabaco-applet

Quoted from "JasonS" Jabaco Source 1 2 3 4 5 6 7 8 9 10 Public Function LoadResData(resID As IResource) As InputStream Set LoadResData = Nothing Set LoadResData = getClass.getResourceAsStream(resID) End Function Public Function GetWavResClip(ResID As IResource) As Clip Set GetWavResClip = Nothing GetWavResClip = AudioSystem.getClip GetWavResClip.open(AudioSystem.getAudioInputStream(LoadResData(ResID))) End Function Hmmm.... seems that the compiler do more then what I have expected. Have decompi...

Friday, October 28th 2011, 7:59pm

Author: theuserbl

ORPG in Jabaco-applet

Quoted from "JasonS" I have trapped and corrected a couple more bugs: Nice. But it seems, there are still some bugs for Linux. Now only the character is drawn in the playing field. And I can't move it. Greatings theuserbl

Wednesday, October 26th 2011, 11:40pm

Author: theuserbl

ORPG in Jabaco-applet

It worked and gives now out Error-Messages: Source code 1 2 3 4 5 6 7 java.lang.NullPointerException at VB.PictureBox.getGraphics(PictureBox.jsrc) at VB.PictureBox.$Image(PictureBox.jsrc) at Applet1.RecData(Applet1.jsrc:122) at Applet1.Winsock1_DataArrival(Applet1.jsrc:68) at Applet1$Winsock._DataArrival(Applet1.jsrc:201) [... etc] In Firefox 64bit on OpenSuSE 11.4. "about:plugins" gives for Java out: Source code 1 Java(TM) Plug-in 1.6.0_21 Edit: The Error messages comes, but the applet still wo...

Wednesday, October 26th 2011, 11:34pm

Author: theuserbl

ORPG in Jabaco-applet

Yes, the drawing program works on Linux. Is there Winsock used, too? Seems, that the picture is there saved on an server. Because when I reload the Applet, the created picture is reloaded.

WoltLab Burning Board