You are not logged in.

Search results

Search results 61-80 of 500.

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, February 18th 2011, 8:48pm

Author: A1880

Error: Java.lang.NoSuchMethodError

Well, if it is of no use, it should be taken out or replaced by something better. JGoodies? Greedings A1880

Friday, February 18th 2011, 8:37pm

Author: A1880

Error: Java.lang.NoSuchMethodError

So, one needs a proper Jabaco.jar to circumvent this error? A1880

Friday, February 18th 2011, 3:23pm

Author: A1880

how call javascript from applet

To find the error, you should add extra debugging statements. It is not fully clear to me what you intend to achieve with your Java code. Is that a working original sample you intend to port to Jabaco? A null pointer exception usually happens if either a variable is not properly initialized or an object creation failed for some reason. To pin-down what has happened, you should trace the code execution and narrow down the area of failure. Add code to your catch() part to actually get more informa...

Friday, February 18th 2011, 8:46am

Author: A1880

Error: Java.lang.NoSuchMethodError

Thanks for your input. In fact, I am running Jabaco sucessfully on several machines. My main systems are Windows XP Home SP3 and Windows XP Professional SP3. I have no decent statistics on how many users affected by the problem, but I doubt that this would exceed 5% The error is somehow related to Java Swing. To fully clarify, one has to use Java debugging tools and trace back from the stack dump.Sadly, I neither have the Swing knowledge nor the resources to do this on my own. Greetings A1880

Wednesday, February 16th 2011, 1:59pm

Author: A1880

Error: Java.lang.NoSuchMethodError

I've just updated to JDK 1.6.0_24 on Windows XP Professional SP3 Source code 1 2 3 java version "1.6.0_24" Java(TM) SE Runtime Environment (build 1.6.0_24-b07) Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode, sharing) Jabaco works just fine! Greetings A1880

Tuesday, February 15th 2011, 8:36am

Author: A1880

jabaco and printers.

Due to platform dependencies, printing is not really easy in Jabaco (, and in Java in general). Please use the search facility of this forum and look for "printing". Success! A1880

Thursday, February 10th 2011, 8:03pm

Author: A1880

Error: Java.lang.NoSuchMethodError

I've followed your suggestion and decativated all but the last JRE version. Then I started a new Jabaco project and compiled it to project.exe From within the IDE and outside the IDE I could start the project application without any problem or error message. The suggestion sounded good, but ... Greetings A1880

Tuesday, February 8th 2011, 7:21pm

Author: A1880

Jabaco how to connect to the sqlserver database?

Sorry, I have no specific example at hand. You can connect to the SQL Server via JDBC. To do that you have to download and install a JDBC driver which is compatible to your SQL Server version. Use the search facility of this forum to find JDBC samples. Most of them should work happily with MS SQL. Please post your findings here! Success! A1880

Sunday, February 6th 2011, 6:57pm

Author: A1880

Error: Java.lang.NoSuchMethodError

Could you tell us in more details about your observations? Greetings A1880

Thursday, February 3rd 2011, 7:58pm

Author: A1880

JBGrid Click event

That's weird! The MouseDown event gets triggered as expected: 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 Option Explicit Public Sub JBGrid1_Click() Debug.Print "clicked!" End Sub Public Sub JBGrid1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) Debug.Print "Mouse Down " & JBGrid1.Parent.getSelectedRow & ";" & JBGrid1.Parent.getSelectedColumn End Sub Public Sub Form_Load() Dim row As Int...

Tuesday, February 1st 2011, 11:32am

Author: A1880

string conversion from utf8

As far as I know, all Java strings are composed of two-byte Unicode characters. To resolve your problem, you should find out where the information gets lost or disturbed. Is it between mySQL server and local application recordset? Or is the data transfered correctly but garbled up when it comes to the TextBox? Do you get two characters for one Umlaut character? Greetings A1880

Friday, January 28th 2011, 11:54am

Author: A1880

No blinking cursor in textbox

My Jabaco applications suffer from a minor problem in TextBox controls. When I set the mouse cursor into the TextBox area, no blinking cursor is shown. It is not visible to the user that the TextBox actually has the focus and is waiting for user entries. Any idea how to circumvent that? Greetings A1880

Friday, January 28th 2011, 11:51am

Author: A1880

Neue Controls

Der Server scheint abgeschaltet zu sein. Hier ist eine andere Anleitung. Google-Suchwörter: Java JavaScript aufrufen communication Fröhliches Ausprobieren! A1880

Friday, January 28th 2011, 11:46am

Author: A1880

how to connect to a database? MDB/SQL

As far as I know, such code samples are not available in this forum. Sorry! But obviously, the Internet is full of code snippets written in Java. It takes a couple of minutes to re-write them in Jabaco. Copy & paste programming has its limits. Unless you understand what you are doing, you'll end in problems. I am not fully sure about your aim. But if you plan to implement an application with mutliple databases and multiple users, you have to make sure to have a proper concept for locking. Otherw...

Thursday, January 27th 2011, 8:12pm

Author: A1880

Neue Controls

Diese Controls sehen ja wirklich toll aus. Leider kann man sie nur indirekt in Jabaco nutzen. Es sind JavaScript-Routinen, die man in einem Applet ansteuern könnte. In dem Falle würde die Jabco/Java-Logik innerhalb einer HTML-Seite aufgerufen, die auch die JavaScript-Logik aufruft. Hier ist ein Beispiel. Insgesamt keine einfache Sache für furchtsame Gemüter. Man muss sich mit Java, JavaScript und HTML bzw. DHTML beschäftigt haben. Ein komplett ausgearbeitetes Beispiel würde dieses Forum sicher s...

Thursday, January 27th 2011, 3:00pm

Author: A1880

Frameworktest JAR as source?

You might want to have a look at the "ControlDemo" which is part of the Jabaco samples. You can find them in the "..\samples" subdirectory below the Jabaco installation directory. Happy trying! A1880

Thursday, January 27th 2011, 1:06pm

Author: A1880

Frameworktest JAR as source?

Frameworktest.jba seems to be an artificial project which simply calls all standard components. All the files involved can be found in the Framework repository at Google. Source code 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 <File Name="Frame.jsrc"/>...

Thursday, January 27th 2011, 11:01am

Author: A1880

Accessing external java classes

It is possible in Java. Ask Google for "Java Reflection" or look here. Greetings A1880

Wednesday, January 26th 2011, 9:37am

Author: A1880

how to connect to a database? MDB/SQL

Quoted SORRY TO SHOW UP WITH A LIST, ALL in ONE POST!!! I have several questions on this. Yes, your questions are a bit inconvient to answer. Quoted 1. Were does this code go? Is it in the Form_Load()? You can include it in any function or method you want. In Form_Load usually only the one-time actions without direct visibility are placed or called. Quoted 2. I am assuming this is tied to "database" control dialog, correct? No, the code is independent of a DataBase control. It directly accesses...

Wednesday, January 26th 2011, 9:19am

Author: A1880

Change color of right-click menu

Yes, I am working with XP. The Jabaco installation path cannot be chosen during install. It always ends up in the program files directory, not necessarily on C: though. I have admin rights on my systsms. Keep on trying! A1880

WoltLab Burning Board