You are not logged in.

Search results

Search results 241-260 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, October 26th 2011, 10:57pm

Author: theuserbl

ORPG in Jabaco-applet

Hmmm.. dont find the bug. On Windows XP your program runs fine. But on Linux it don't work. If I start your program at your side in the browser, there comes always this error: Source code 1 2 3 4 5 6 7 java.lang.NullPointerException at VB.PictureBox.PaintPicture(PictureBox.jsrc) at Applet1.Timer3_Timer(Applet1.jsrc:1758) at Applet1$Timer._Timer(Applet1.jscr:1985) at VB.Timer.actionPerformed(Timer.jsrc) at javax.swing.Timer.fireActionPerformed(Timer.java:313) [... etc.] This is, when I start in t...

Wednesday, October 26th 2011, 6:37pm

Author: theuserbl

ORPG in Jabaco-applet

Quoted from "JasonS" #1) I cannot upload a zip file of the complete zip file of the jabaco project due to a file size limitation of the board Possibly it helps to split the file? One possibility could be to create one file with the sources and one file with the graphics. Your sourcecode as compressed file could never be too big for the forum. The problem could only be the graphics. An additional possibility to upload it, could be the use of SPLIT.EXE: [ http://www.martinvogel.de/prog/split.html...

Wednesday, October 26th 2011, 6:21pm

Author: theuserbl

RE: RE: Console application

Ok, before you ask, what I mean with Quoted from "theuserbl" Then go over the menu to the temp-path, where the Jaabaco *.class-files are generated and ctreate with this files your jar. I mean: Going over the menu "Project" -> "Open Working Directory". If you start Jabaco, the directory is at first empty. But if you start your program in the IDE (with [F5] or "Project" -> "Start"), then there are all neded files are generated. Greatings theuserbl

Wednesday, October 26th 2011, 6:16pm

Author: theuserbl

RE: Slovak translation for 1.5 version

I will add your file later to svn. Quoted from "MMI" Just some remarks: I have found some items (namely for example GotoFlag (F12) untranslated but I have not located it in xml file (english version). Does somebody have the same problem ( or I need to buy a new glasses ) and if, how did you solve ? It exists in the english XML-file: MySQL queries 1 <Item Name="mnuGotoFlag" value="Next Flag"/> But it is a bug of th IDE, that it makes not use of it. Greatings theuserbl

Wednesday, October 26th 2011, 6:07pm

Author: theuserbl

animated gif - how to?

Quoted from "Dani" but I can not add more than one item to the cbo list and it appears in every cell of the JBGrid1. Haven't looked particularly at it. But possibly this side could help you: [ http://www.jabaco.org/wiki/ComboBox ] Greatings theuserbl

Wednesday, October 26th 2011, 5:18pm

Author: theuserbl

ORPG in Jabaco-applet

Two points in relationship to your code: 1. If you want to publish complete sourcecode of a project, then you can add a compressed file (like a *.zip file) with the *.jba and *.jsrc files as attachment here in the forum. For examples your code is too much. And for publishing a complete project, it have to less informations. Jabaco files are XML-files. The text you input is only one part of it. Informations like the name of the Superclass, the Class-name itself and so on is only in the complete X...

Wednesday, October 26th 2011, 5:00pm

Author: theuserbl

RE: Console application

Quoted from "Vicamau" I don't want to know why the executeQuery goes in troubles, but i want to know why a console application do a graphical call [...] If you compile your code to a *.jar file the compiler generates a link to a window for exceptions. For example: If your application gives out an FileNotFoundException, then in the IDE it will be printed out in the textbox at the bottom of the IDE. But if you have compiled it, for the error-outpuit there will be created a Window, where yo can se...

Sunday, October 23rd 2011, 2:02pm

Author: theuserbl

animated gif - how to?

Uploaded demonstrating file Hope it helps. Greatings theuserbl

Sunday, October 23rd 2011, 3:24am

Author: theuserbl

animated gif - how to?

Ypu need to use a Java-way in this case, too. If your gif is called "loading.gif", then load it to your resources and create a Usercontrol with Jabaco Source 1 2 3 4 5 6 7 Public Sub Usercontrol_Initialize() Dim myIcon As javax#swing#ImageIcon myIcon = New javax#swing#ImageIcon(getClass.getResource("res/loading.gif")) Dim myPic As javax#swing#JLabel = New javax#swing#JLabel(myIcon) myPic.setBounds(0,0,105,16) Me.add(myPic) End Sub In the uploaded file I have already done it.

Saturday, October 22nd 2011, 3:09am

Author: theuserbl

KeyPress Events - Filter

Ok, I have now uploaded a solution which goes the Java way. Quoted from "Dani" I would have to do that for every TextBox I need one for. You only need to do it one time in a Usercontrol. And then use the Usercontrol again and again. For the solution I have looked at http://edenti.deis.unibo.it/utils/Java-t…0JTextField.txt Greatings theuserbl

Friday, October 21st 2011, 11:57am

Author: theuserbl

KeyPress Events - Filter

Ok, then it seems, that you have to write your own Usercontrol. Here I tried out something. Its quick and dirty code: 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 Dim Buffer As String = "0" Public Sub Usercontrol_Initialize() Text1.Left = 0 Text1.Top = 0 Text1.Width = Me.Width Text1.Height = Me.Height Text1.Text="0" End Sub Public Sub Text1_KeyPress(KeyAscii As Integer) If ((KeyAscii < 47 Or KeyAscii > 57) And KeyAscii <> 8) Then Text...

Friday, October 21st 2011, 1:26am

Author: theuserbl

KeyPress Events - Filter

Don't know whats your problem. On my computer it works fine. Greatings theuserbl

Thursday, October 20th 2011, 11:50pm

Author: theuserbl

RE: Any progress?

Quoted from "scGuy" I'm curious about a couple things... This NoSuchMethodError rather forced me to be done with Jabaco for a while, since I was hoping to build some utilities, but couldn't have the error popup be part of my compiled app Oh, an additional thread, where the solution isn't posted. The solution for this problem is to download the latest Jabaco.jar version: Jabaco-rev84.jar Download it, rename it to Jabaco.jar and copy it in your Jabaco-directory. (Replace there the existing Jabaco...

Thursday, October 20th 2011, 3:16am

Author: theuserbl

Resourcefiles have wrong directory separator

Jabaco 1.5.2 creates in its Jar-files resource-files which begins with "res\". The problem: If you unzip the Jar-File on Linux or an other Non-Windows system, the backslash is interpreted as part of the file. So instead a directory called "res" and for example a file in it called "myimage.png", there exist in the main directory of the zipped file a file called "res\myimage.png". The directory-seperator in zip (or jar-) files is the slash ("/") like on unix-systems. I know this is only a very sma...

Tuesday, October 11th 2011, 12:09am

Author: theuserbl

Text file reading and writing

Answered at http://www.jabaco.org/board/743-text-from-a-file.html

Tuesday, October 11th 2011, 12:08am

Author: theuserbl

RE: Text from a file

Quoted from "steveraymon" Can anybody tell me whats wrong with this code: Nothing is wrong with your code. On my computer with WinXP it works perfct. Here as Console Application: Jabaco Source 1 2 3 4 5 6 7 8 9 10 Public Sub main(ByJava args() As String) Dim FNam As String Dim FNr As Integer FNam = "C:\Test.txt" FNr = 1 Open FNam, Output, FNr Print FNr, "Irgendwas ist hier faul" Close FNr End Sub Possibly it helps to mention the class from where Open, Print and Close comes from direct: Jabaco S...

Friday, October 7th 2011, 10:13am

Author: theuserbl

Error when when getting newest snapshot.

Already know, that the latest snapshots don't work. Actually rev84 is actual. You can find the links at my post at: [ http://www.jabaco.org/board/p2898-no-bli…x.html#post2898 ] Or here the direct link: [ Jabaco-rev84.jar ] Download the file, rename it to Jabaco.jar and replace the Jabaco.jar in your Jabaco-directory with it. The complete sourcecode you will find in [ jabacoframework-src-rev84.zip ] it comes with an example program called "FrameworkTest", which demonstrates some of the Framework-...

Wednesday, October 5th 2011, 12:15am

Author: theuserbl

RE: Change IDE Font size/rolor

Quoted from "rudyking" I would like to see that I can change the fonts in the IDE. I'm legally blind so I use bigger fonts in VB6. If you want only change the size of the fonts of the Editor of the IDE, then it is already possible. If you are in the Editor, then press the [Ctrl]-key and hold it down and scroll the mouse-wheel up and down.

Monday, September 26th 2011, 6:52pm

Author: theuserbl

Empty String

Don't know, if it works correct. But your code without exception: 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 ...

Monday, September 26th 2011, 5:22pm

Author: theuserbl

Enum tyoe variables...

Possible the reason is, that you wrote the numbers in parenthesis/round bracket. For me it works fine. In Class module called "Class1": Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Public Enum ERegistryValueTypes 'Predefined Value Types REG_NONE = 0 'No value type REG_SZ = 1 'Unicode nul terminated string REG_EXPAND_SZ = 2 'Unicode nul terminated string w/enviornment var REG_BINARY = 3 'Free form binary REG_DWORD = 4 '32-bit number REG_DWORD_LITTLE_ENDIAN = 4 '32-bit number (same as REG_DWO...

WoltLab Burning Board