You are not logged in.

Search results

Search results 141-160 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.

Friday, February 15th 2013, 12:15am

Author: theuserbl

JBGrid - .Parent.print()

Can you please repost the part, which you want to change on TablePrintable. From which code to which code you want to change it. Only the part you want to change. Not the complete one. Greatings theuserbl

Wednesday, February 13th 2013, 2:45am

Author: theuserbl

Imported .class file does not load when reopening Jabaco

Right. But you can bypass it, by zipping the class-file and then including the .jar-archive or .zip-archive, instead of an directory. Additional it will help to have this .jar-archive in the same directory where you save your Jabaco-project. Then you can move your project everywhere with the .jar-archive, so long the project and the .jar archive are in the same directory, the .jar-archive and the .class-files in it will everytime found. Greatings theuserbl

Wednesday, February 13th 2013, 2:29am

Author: theuserbl

JBGrid - .Parent.print()

Quoted from "Dani" Do you have any link to download a sole java compiler without all the overhead of a sun JDK? Which JRE-version do you have? I have now temporary uploaded a self-compiled Java 7 javac; http://jbaindi.googlecode.com/files/javac.jar Compile with Source code 1 java -jar javac.jar Program.java If you have Java 6, then I will compile it later for you, if you want it. Until this time, you can use the uploaded tools.jar from Roberts unimozer side: unimozer.fisch.lu/webstart/tools.jar...

Tuesday, February 12th 2013, 11:00am

Author: theuserbl

JBGrid - .Parent.print()

Quoted from "theuserbl" It seems to be the old non-opensource version. Btw: With "old" I mean only that the license is the old one. It can be possible, that a file is over ten years unchanged, only the license changed. Then the non-opensource file is the old one and the opensource one is the new one. Greatings theuserbl

Tuesday, February 12th 2013, 10:49am

Author: theuserbl

JBGrid - .Parent.print()

Quoted from "Dani" I know you are missing the modified TablePrintable.class here. The code is copyrighted and I do not know if I can just post it here. Anyways since this is for private testing only... I found the original code here: http://kickjava.com/src/javax/swing/TablePrintable.java.htm It seems to be the old non-opensource version. Since some years Java is OpenSource as OpenJDK: http://openjdk.java.net/ Here the OpenJDK7 source: http://hg.openjdk.java.net/jdk7/jdk7/jdk…ePrintable.java I ...

Friday, February 1st 2013, 2:55am

Author: theuserbl

SendMessage

Hallo Smily, willkommen im Forum. Hat es einen Grund, weshalb Dein Nickname ohne "e" geschrieben wird? Ich mag Dein Beispiel. Ich kenne mich nicht so gut mit VB6 und der Windows API aus. Daher finde ich Dein Programm doch sehr integressant. Vor allem habe ich bisher nicht gewußt, daß man von den Controls ein Array erstellen kann und auch in den Funktionen den Array-Index verwenden kann ("Private Sub Command2_Click(Index As Integer)"). Wußte gar nicht, daß auch Jabaco soetwas unterstützt. In Jaba...

Thursday, January 31st 2013, 12:32am

Author: theuserbl

Startup issue in Windows 7 RC1

Quoted from "htillmann" It really depends on the web access which is blocked by the proxy. A few minutes ago i was able to register via a WLAN connection without proxy. Now everything is fine. For a long time I have had no internet-connection at home and registration of Jabaco works. So you don't need internet, to register Jabaco. But possibly, if Jabaco "recognized", that an internet-connection exist, then it wants to use the internet (and outputs errors, if it have problems with the connectio...

Tuesday, January 29th 2013, 11:28pm

Author: theuserbl

Startup issue in Windows 7 RC1

Try to install and run Jabaco with Administrator rights. On Win7 you have as default not all needed rights. So click with the right mouse-key on the program icon and select then from the pop-up-menu "Run as Administrator" (in german: "Als Administrator ausführen"). Hope that it now work. Greatings theuserbl

Monday, January 28th 2013, 12:51pm

Author: theuserbl

InStr / InStrRev - Different results compared to VB6

Updated framework [ Jabaco-rev105.jar ] theuserbl

Monday, January 28th 2013, 12:51pm

Author: theuserbl

can't copy my directory

Updated framework [ Jabaco-rev105.jar ] theuserbl

Monday, January 28th 2013, 10:30am

Author: theuserbl

InStr / InStrRev - Different results compared to VB6

Thanks for the nice testing-proigram. Does the following changed functions help? Jabaco Source 1 2 3 4 5 6 7 8 public static int InStr(int Start, String String1, String String2, VBCompareMethod CompareMet) { if (String1.equals("")) return 0; switch (CompareMet.intValue()) { case (0): { return String1.indexOf (String2, Start - 1) + 1; } case (1): { return String1.toLowerCase().indexOf (String2.toLowerCase(), Start - 1) + 1; } } return String1.indexOf (String2, Start - 1) + 1; } Jabaco Source 1 2 ...

Saturday, January 26th 2013, 1:52pm

Author: theuserbl

send my textfields and JBGrid to printer

Quoted from "fomaxrge" java.lang.Exception: CallByName 'FIT_WIDTH' failed! BUT when i delete the code and write again it works! When i close my pc and next day open to work i happens again. Have you got any idea? Try to write the complete part: Jabaco Source 1 Dim Mode As javax#swing#JTable$PrintMode = javax#swing#JTable$PrintMode.FIT_WIDTH Jabaco IDE and Jabaco Compiler are working together. When you write the code the IDE doing more. Greatings theuserbl

Thursday, January 24th 2013, 4:15pm

Author: theuserbl

can't copy my directory

Because FileCopy copies only files, here a first implementation of DirCopy, which copies complete directories: 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 Public Static Function DirCopy(Source As String, Destination As String) As Boolean Dim SourceFile As java#io#File = New File(Source) Dim DestinationFile As java#io#File = New File(Destination) DirCopy = True If (NOT SourceFile.exists) Then MsgBox "Source-directory " & Chr(34) & ...

Wednesday, January 23rd 2013, 4:44pm

Author: theuserbl

RE: can't copy my directory

Quoted from "fomaxrge" Do you have any idea why is this happening? Because - as the name said - FileCopy copies files and not directories. To copy a directoy is a little more difficult. An implementation for it, currently not exist. You have to read the directory, file by file and subduirectory by subdirectory. You have to copy every single file. And if there is a subdirectory, you have to read the name of it and create it on the new place. Then doing the same with the subvdirectory like with t...

Wednesday, January 9th 2013, 4:07pm

Author: theuserbl

msgbox before close form

Does this help? loading_form: Jabaco Source 1 2 3 4 Public Sub Form_Unload(cancel As Integer) Form1.Visible = True Form1.Show End Sub main_form: Jabaco Source 1 2 3 4 Public Sub Form_Unload(cancel As Integer) If MsgBox ("Quit?", vbCritical Or vbOKCancel,"Title") = 2 Then Exit Sub Me.Parent.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE) End Sub Module1: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Public Form1 As New main_form Public Form2 As New loading_form 'in Module1... Public S...

Tuesday, January 8th 2013, 8:21pm

Author: theuserbl

Add program to startup?

Have a look at [ http://stackoverflow.com/questions/62289…stry-using-java ] [ http://www.daniweb.com/software-developm…stry-using-java ] It seems, that the easiest way to handle the registry is over the command-line program called "reg". On Jabaco you can start it with Jabaco Source 1 Shell("reg") To handle the console-output of the reg-program in Jabaco, I think this thread will help you: [ http://www.jabaco.org/board/p3449-how-to…e-in-linux.html ] Greatings theuserbl

Tuesday, January 8th 2013, 8:11pm

Author: theuserbl

Framework Update - Spinner Properties, TabStrip, Tabs

Nice. Haven't looked at your Tab-solution. But if getTabCount works correct, then I think your bugfix will be ok. And here the new uploaded file, so that everybody can trying your changes out: [ Jabaco-rev103.jar ] Greatings theuserbl

Monday, December 31st 2012, 11:03am

Author: theuserbl

Happy New Year 2013!

Happy new year 2013! Here are some statistics for the last times of this forum board: If you click on "Members" on the top of this forum, you see, that there existing at the moment, where I writing this, 69 pages. 68 pages with 30 people and the last page with 19 people. Together they are 2059 registered people. But if you sort by date of registration, you have 70 pages. 69 pages with 30 people and the last page with 27 paople. Together they are 2097 people. Despite of this different numbers of ...

Friday, December 28th 2012, 1:07pm

Author: theuserbl

Vorstellung Desi / Bauteildatenbank / das Jabaco-Projekt

Hi Dani! Schönes Beispiel. Quoted from "Dani" in Deinen lokalen Java Installationspfad kopieren: - e.g.: 'C:\Program Files\Java\jre7\Lib\ext\h2-1.3.170.jar' Habe es gerade mal ausprobiert. Man kann alternativ h2-1.3.170.jar auch in das Verzeichnis kopieren, in dem sich ArtikelDB.jba und all die anderen Dateien befinden. Das hat u.a. den Vorteil, daß h2 auch in die erzeuigte Jar-Datei reinkopiert wird. Wenn es sich hingegen im ext-Verzeichnis befindet, wird es als standardmäßige Systemdatei anges...

Wednesday, December 26th 2012, 9:38pm

Author: theuserbl

Vorstellung Desi / Bauteildatenbank / das Jabaco-Projekt

Schön zu hören (bzw. lesen), daß Du noch immer so begeistert von Jabaco bist. Die Nachteile habe ich ja schon zum großen Teil aufgeführt gehabt. Denn nichts ist demotivierender, als wenn man mitten in einem Projekt feststellt, daß man sich für die falsche Technik entschieden hat. Ja, Jabaco ist auch einfacher als VB.NET. Das liegt daran, weil es versucht VB 6 kompatibel zu sein. Und VB 6 war einfacher, als die aktuellen VB.NET-Versionen. Auf der anderen Seite ist VB.NET flexibler und mächtiger. ...

WoltLab Burning Board