You are not logged in.

Search results

Search results 261-280 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.

Monday, September 26th 2011, 5:12pm

Author: theuserbl

RE: TextBox Alignment - false input behavior

Possible I will try to implement it sometimes. The problem exists with Java. With Text1.Parent you are using the JTextArea of the VB.TextArea component. And the ComponentOrientation "RIGHT_TO_LEFT" is for fonts red from right to left, like arabic fonts. Right-aligned or Centered-aligned don't exists for JTextArea.

Saturday, September 24th 2011, 12:35pm

Author: theuserbl

Usercontrol wont Close and unload

Haven't tried it out yet (I am again on Linux), but for Java existing for this the method finalize(). So try out to create a Jabaco Source 1 2 3 Sub finalize() Timer1.Enabled=False End Sub in your Usercontrol.

Saturday, September 17th 2011, 12:22pm

Author: theuserbl

Progress Bar

Quoted Hab ich das richtig verstanden, wenn ich die Klasse anlege wie von dir als kompilerfreundlich gepostet. Dann sollte es funktionieren? Es funktiniert dann bei dem von mir gezeigten Programm, das einen Button hat, der "Command1" heißt und nur auf "Click" reagiert wird. Wenn Du mehrere Buttons verwendest, die evtl. anders heißen und möglicherweise teilweise beim Drüberfahren mit der Maus schon ähnliche Aktionen durchführen sollen, dann solltest Du die Datei Form1$CommandButton.class erst mi...

Saturday, September 17th 2011, 2:41am

Author: theuserbl

Progress Bar

Wollte nur noch mal die Compiler-freundliche Modifizierung hier auch noch mal reinsetzen: 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 import VB.CommandButton; public class Form1$CommandButton extends CommandButton { int ID; Form1 Owner; int Index; public void setOwner(Form1 var1, int var2) { Owner = var1; ID = var2; Index = -1; } public void _Click() { Click click = new Click(); click.start(); } public class Click extends Thread { public void run() { if(...

Saturday, September 17th 2011, 1:39am

Author: theuserbl

Progress Bar

Was das Problem betrifft, sieht die Lösung so aus, daß der Compiler etwas abgeändert werden muß. Ich habe mal folgendes kleines Jabaco-Programm geschrieben Jabaco Source 1 2 3 4 5 6 7 Public Sub Command1_Click() Label1.Caption = "Please wait..." For i = 1 To 100000 System.out.println(i) Next i Label1.Caption = "Ok." End Sub der Quellcode läßt sich hier downloaden: [ WaitingLabelSrc.zip ] Wenn man es kompiliert, erscheint das von Dir beschriebene Problem. Hier als kompilierte Jar-Datei: [ Waiting...

Friday, September 16th 2011, 11:10am

Author: theuserbl

Progress Bar

Zwei Punkte: 1. daß in der IDE das "Ok" als Text erscheint, bevor die Schleife abgearbeitet wird, liegt mit hoher wahrscheinlichkeit an der Pipe von Java zur IDE. Das heißt, Java jat schon den Text der kompletten Schleife alles abgearbeitet und ausgegeben und auch an die IDE weitergereicht, nur die IDE ist nicht schnell genug den Text bei sich wiederzugeben. 2. das seltsame Verhalten, daß der Text "Bitte warten" nicht erscheint, obwohl er vor der Schleife vorkommt, irritiert mich noch immer. Dah...

Wednesday, September 14th 2011, 2:00am

Author: theuserbl

Progress Bar

Quoted from "theuserbl" Wenn in Button_click etwas steht wie Jabaco Source 1 2 3 4 5 Label1.Caption = "Bitte warten..." For I = 1 to 100000 System.out.println(i) Next I Label1.Caption = "Ok" Dann erscheint als Label-Text nur "Ok". Gleichzeitig läuft die innere Schleife noch immer weiter. Habe es gerade noch mal überprüft, Sieht so aus, daß nur in der Jabaco-IDE das Programm sich selbst überholt und ein "Ok" ausgibt, bevor die For-Schleife zu Ende abgearbeitet wurde. Aber auch als kompilierte Ve...

Wednesday, September 14th 2011, 1:34am

Author: theuserbl

Progress Bar

Quoted from "schnitzelbrain" Quoted Oder ein Label einbauen, das wärend alles abläuft einen Text anzeigt wie "Bitte warten ...". Das hatte ich Versucht, der Text wird nicht angezeigt Erst wenn mein Button5_click rum ist erscheint das "Done" im Textfeld Gleiches mit einem Label mit Label1.Enabled = True wird es bei Click auf den Button nicht Sichtbar. Habs auch ausprobiert. Du hast recht. Wenn in Button_click etwas steht wie Jabaco Source 1 2 3 4 5 Label1.Caption = "Bitte warten..." For I = 1 to...

Wednesday, September 14th 2011, 1:15am

Author: theuserbl

BeanBuilder modification

I only want to mention, that the last version of that program can be found here: [ Problem.jar ] Nearly all Enum-Settings are added. One of the bugs is, that if you have choosen an entry in the JComboBox of the Properties, that it jumps back to the first entry, which is then selected. I thoughted, that this problem (thats the reason why I called the file "Problem.jar") or bug would be earlier fixed. But because Problem.jar is until now 4 days old and I have still no fix for this bug, I decided t...

Sunday, September 11th 2011, 4:06pm

Author: theuserbl

Progress Bar

Quoted from "schnitzelbrain" Leider kann ich dann den Vorgang für mein Projekt nicht gebrauchen. Da der refresh von den Feldern (und vom Bar) erst kommt wenn der Button_click oder der Timer_click abgearbeitet ist. Mein "Tue Irgendwas" sind ein paar geschachtelte schleifen die zwischendrin eigentlich Werte(Fortschritt) anzeigen sollten. Das haut leider aus bekannten Gründen nicht hin. Möglicherweise könnte man es erreichen, indem Timer wiederum einen anderen Timer aufruft, etc. Wobei der Quellco...

Sunday, September 11th 2011, 3:56pm

Author: theuserbl

RE: No blinking cursor ... and some other!

New Version of the files: [ Jabaco-rev84.jar ] [ FrameworkTest-rev84.jar ] [ FrameworkTest-rev84-OnTheFly.zip ] [ jabacoframework-src-rev84.zip ] Normally you need only Jabaco-rev84.jar. Rename it to Jabaco.jar and copy it in your Jabaco-directory. Quoted from "Dani" Did anyone come up with a fix to this yet? Yes. Done. Quoted 2. at runtime when I set a Textbox (or other control) to FontBold nothing happens! Fixed. Quoted 1. when I set a mouse listener for example tp a Jbgrid I can't get Me.mous...

Sunday, September 11th 2011, 2:25am

Author: theuserbl

RE: No blinking cursor ... and some other!

Quoted from "Dani" Did anyone come up with a fix to this yet? Thx for the reminder. Will be updated the next time. Quoted 1. when I set a mouse listener for example tp a Jbgrid I can't get Me.mousepointer = vbHoureglass / vbDefault to work --> does anyone know when setting a mouse listener to the JbGrid header, how to change the mousecursor? Currently not tested. I will look at it the next times. Quoted 2. at runtime when I set a Textbox (or other control) to FontBold nothing happens! I have tr...

Saturday, September 10th 2011, 12:18pm

Author: theuserbl

Progress Bar

Kleine Ergänzung. Damit der Progessbar auch richtig läuft: Es wird angenommen, daß ProgressBar1.Min 0 ist. Jabaco Source 1 2 3 4 5 6 7 8 Public Sub Timer1_Timer() ProgressBar1.Value = I/10000000*ProgressBar1.Max 'Tue irgendwas I=I+1 If I >= 10000000 then Timer1.Enabled=False end if End Sub

Saturday, September 10th 2011, 12:11pm

Author: theuserbl

Progress Bar

Quoted Wenn ich dein Beispiel um eine For/next schleife ergänze, passiert mit dem ProgressBar so lange nichts bis die Schleife abgelaufen ist. Ist ja auch klar, wenn Du die Schleife in Command1_Click() setzt. Solange die Schleife läuft, kannst Du auch keinen anderen Button drücken. Und der Computer eben nicht den Timer. Quoted Das heißt der Timer Event kann die Schleife nicht unterbrechen. Wenn Du einen Timer verwendest, dann ist der Timer Deine Schleife. Ohne es jetzt getestet zu haben (bin wi...

Saturday, September 10th 2011, 12:24am

Author: theuserbl

Progress Bar

Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 Public Sub Timer1_Timer() ProgressBar1.Value = ProgressBar1.Value +1 End Sub Public Sub Command1_Click() Timer1.Enabled=True Timer1.Interval=1 ProgressBar1.PaintString=True End Sub Public Sub Command2_Click() Timer1.Enabled=False End Sub Public Sub Command3_Click() ProgressBar1.Value=0 End Sub Hilft das? Stell Dir Timer wie einen Button vor, der vom Computer in bestimmten Zeitabständen gedrückt wird. Grüße theuserbl

Monday, September 5th 2011, 1:29am

Author: theuserbl

BeanBuilder modification

Quoted from "theuserbl" - Vales of byte, double, long an short can be read, but not set. fixed. Added SwingLongEditor.java, SwingShortEditor.java, etc for that. Updated version you can again find here: jbaBuilder.jar Greatings theuserbl

Monday, September 5th 2011, 12:16am

Author: theuserbl

BeanBuilder modification

Some known bugs: - Enum-Vales are not integrated - Vales of byte, double, long an short can be read, but not set. Values in boolean, float, int and String works fine. Related to the last bug: When a byte, double, long or short value is input in the property field, the method setValueOf() of the file PropertyTableModel.java isn't called. The method comes from AbstractTableModel and isn't direct called in the program. Greatings theuserbl

Sunday, September 4th 2011, 4:28pm

Author: theuserbl

BeanBuilder modification

All Java-Beans properties are removed in the BeanBuilder and some Jabaco-Properties added. You can download the newest executable jar file at: [ jbaBuilder.jar ] And again, the Sourcecode is included. Changes until JbaBeanBuilder: - jbaPropertyDescriptors.java added - PropertyTableModel.java modified Greatings theuserbl

Saturday, September 3rd 2011, 9:21am

Author: theuserbl

RE: Widget for animation play?

Quoted from "wshore" In the Applet interface, I don't see a tool which would display a short animation on a form. Does such a tool exist and how can I add it to my toolbox? Thanks. Don't know what you mean. Would a animated gif help? If yes, then you can set a PictureBox on your Form and load an animated gif in the PictureBox. Greatings theuserbl

Wednesday, August 31st 2011, 10:48pm

Author: theuserbl

IDE performance with extra referenced jars

Quoted from "IceFan" It seems like there is no access to any support ???? Not from Manuel, the developer of Jabaco. Right. I think that is one of the reasons, why the most active users like A1880 and Olimilo are no longer active on that board. Why helping newbies for a closed source program, where the developer say, that he wants to make money with it in the future, if the developer itself is no longer active on the board? Quoted There are some serious issues with the IDE performance Only the J...

WoltLab Burning Board