You are not logged in.

Search results

Search results 181-200 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.

Thursday, November 22nd 2012, 3:48pm

Author: theuserbl

RE: JBGrid scoll to first and last row

Short answer: Quoted from "fomaxrge" How can i enable first row when i press TOP Jabaco Source 1 2 3 4 5 Public Sub Command1_Click() Dim v As javax#swing#JViewport = JBGrid1.getViewPort v.setViewPosition(New Point(0,0)) JBGrid1.setViewport(v) End Sub Quoted and how can i move to last when i press BOTTOM? Jabaco Source 1 2 3 4 5 Public Sub Command2_Click() Dim v As javax#swing#JViewport = JBGrid1.getViewPort v.setViewPosition(New Point(0,99999)) JBGrid1.setViewport(v) End Sub Last one is only a d...

Wednesday, November 14th 2012, 2:51am

Author: theuserbl

RE: Spinner source with working Change Event

Quoted from "Dani" It would be nice to have this in the Jabaco Framework too: Haven't looked special at it. But it seems, that a Spinner don't exists for VB6. So that implementation can never be incopatible to an original VB6-imnplemantation. Here its is uploaded: [ http://code.google.com/p/jabacoframework/source/detail?r=95 ] [ https://jbaindi.googlecode.com/files/Jabaco-rev95.jar ] But why you don't add your contribution yourself to SVN? There already existing five commiters: [ http://code.go...

Friday, November 9th 2012, 7:19pm

Author: theuserbl

Help, save as name problem

An additional information of a bug which realy exists of it (before you have again problems with it). If you save project1 and project2 in different directories, then in project2 only the files will be created, which where edited before. For example: You hava saved in the directory C:\p1 project1 where the files project1.jba Module1.jsrc Form1.jsrc will be created. If you now only change the Form and save the project as project2 in C:\p2, then the files project2.jba Form1.jsrc will be created. B...

Friday, November 9th 2012, 5:33pm

Author: theuserbl

RE: Help, save as name problem

Quoted from "pystache" where are my old versions ? lost? If you saved all projects in the sane directory: yes. When you save project1 there will be for example created the files - project1.jba (the project file) - Module1.jsrc (a source file) - Form1.jsrc (a source file) If you make changed and save now in the same directory project2 then - project2.jba will be created - Module1.jsrc will be overwritten - Form1.jsrc will be overwritten When you now reopen project1.jba, then the source files are...

Wednesday, November 7th 2012, 3:36pm

Author: theuserbl

Added Anchor() Property

Quoted from "Dani" I think it would be nice to have this in the framework: Thanks. Is uploaded to svn: [ http://code.google.com/p/jabacoframework/source/detail?r=94 ] with two small changes: 1. changed "Index" to "v", because I was not sure about the use of "Index". A Jabaco Source 1 System.out.println(List1.Index) gives out -1. So it seems to be already defined. 2. changed the name of "RemoveItemAt" to "RemoveItem" (without "At"). If you want, I can change it again to the one with "At". But VB...

Tuesday, November 6th 2012, 3:49am

Author: theuserbl

Added Anchor() Property

Only current update: [ Jabaco-rev93.jar ]

Monday, November 5th 2012, 1:44pm

Author: theuserbl

Added Anchor() Property

Quoted from "Dani" About the little BugFix - what do you not like about '>=' ... Uuups. Sorry. Haven't seen it. I have it now added to the svn: [ http://code.google.com/p/jabacoframework/source/detail?r=92 ] A compiled binary I will creating somehow later. Greatings theuserbl

Sunday, November 4th 2012, 3:56pm

Author: theuserbl

Added Anchor() Property

Quoted from "Dani" Since I am on an old machine I allways worry about speed and resources. I worry about it, too. But since some month I have no longer an old machine. So it is nice to hear (or to read) that you have one and so you can test it on it on a machine with limitit resources. Quoted How do you think this will affect loading of Forms and Dialogs? Of course I did not notice any difference, still I'd like to know. No difference in the performance? That is nice. But in the future I want t...

Saturday, November 3rd 2012, 4:43am

Author: theuserbl

Added Anchor() Property

Have added Anchor() Property in the Jabaco Framework: [ http://code.google.com/p/jabacoframework/source/detail?r=90 ] A compiled Jabaco.jar you can find again at [ https://code.google.com/p/jbaindi/downloads/list ] The direct link: [ https://jbaindi.googlecode.com/files/Jabaco-rev90.jar ] Rename Jabaco-rev90.jar to Jabaco.jar and replace the Jabaco.jar-file in your Jabaco-directorty with it. This is only a temprary state. I will later improve it more. About Anchor(): The Anchor() Property exists...

Thursday, October 18th 2012, 12:35am

Author: theuserbl

RE: msgbox with the value of selected item of a combobox

Quoted from "fomaxrge" Hi again! I need your help please! I have a combobox that fills with the results of a mysql query. Is there a way to have a msgbox that appears the value of the selected item? I mean that... whenever i make a selection from combobox to appear a msgbox that tells ... "your selection is..." Currently I don't know where the bug is in ListData. But currently it will help to use Parent.getItemAt instead: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 Public Sub Form_Load() ComboB...

Wednesday, October 17th 2012, 11:13am

Author: theuserbl

Compiled File Size

Ok,. short answer (have not much time at the moment): Compiled program size = runtime size + size of your compiled files Everytime the files of the runtime (called "Jabaco.jar" in your Jabaco-directory) is integrated in your compiled file. If you using the runtime which comes with Jabaco 1.5.2, then you see that the runtime have a size of 519.284 bytes. If you using the latest update of this runtime (which is a lot of smaller and have more features, lesser bugs, etc), then your compiled programs...

Tuesday, October 9th 2012, 6:37pm

Author: theuserbl

date format from yyyy-mm-dd to dd-mm-yyyy

Quoted from "fomaxrge" how can i use the Dani's function to do the opposite? 2012-08-06 to 06-08-2012? The same way: MsgBox MyFormat("2012-08-06") Greatings theuserbl

Tuesday, October 9th 2012, 6:23pm

Author: theuserbl

date format from yyyy-mm-dd to dd-mm-yyyy

Quoted from "fomaxrge" hi again! Finally my problem did not solved. Can you please try this ... MsgBox Format("06-08-2012", "yyyy-MM-dd") to tell me what is coming back to you? to me it returns....0012-02-02???? Same here. Quoted Why ? Before you used your Format-function to convert a yyyy-MM-dd date to a dd-MM-yyyy date. Now you are trying with the same function the other way around. And all we see is, that your function don't accept any dd-MM-yyyy date-format as input. But for this Dani have ...

Friday, October 5th 2012, 12:07pm

Author: theuserbl

date format from yyyy-mm-dd to dd-mm-yyyy

Quoted from "fomaxrge" The above dates 04-04-0010 10-04-0004 are not included in my table. I know. But 2010-04-04 or 2004-04-10 is in your table. And if for example 2010-04-04 is in your table, it comes after the formatting out as 04-04-2010 and when it goes again to the input, it comes out as 10-04-0004 and when it goes again to the input, it comes out as 04-04-0010 ... Quoted Also i want to format my imerominia variable that is used a mysql query in a loop for example.... Do while Data.next()...

Friday, October 5th 2012, 3:31am

Author: theuserbl

date format from yyyy-mm-dd to dd-mm-yyyy

Quoted from "fomaxrge" in this case returns me always ... 04-04-0010 10-04-0004 04-04-0010 10-04-0004 04-04-0010 10-04-0004 Looks like that an output goes again to the input. If you switch in 04-04-0010 the day and the year you have 10-04-0004 and if you switch the two again, you have again 04-04-0010 And I have tried it out. An Jabaco Source 1 2 3 4 5 6 7 8 9 10 Public Function Format(d As Date, fmt As String) As String Dim df As New java#text#SimpleDateFormat(fmt) Format = df.format(d) End Fu...

Friday, October 5th 2012, 3:13am

Author: theuserbl

date format from yyyy-mm-dd to dd-mm-yyyy

Quoted from "fomaxrge" Quoted from "theuserbl" imerominia = Format(imerominia, "dd-MM-yyyy") in this case returns me always ... 04-04-0010 10-04-0004 04-04-0010 10-04-0004 04-04-0010 10-04-0004 Don't know, why it don't work for you. Here it works fine: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Public Function Format(d As Date, fmt As String) As String Dim df As New java#text#SimpleDateFormat(fmt) Format = df.format(d) End Function Public Sub main(ByJava args() As String) Dim imeromin...

Thursday, October 4th 2012, 1:34pm

Author: theuserbl

Help me ;(

The Commpiler don't except an "Private WithEvents". Try out Jabaco Source 1 Dim WithEvents m_multiImage As cGDIpMultiImage Greatings theuserbl

Thursday, October 4th 2012, 1:25pm

Author: theuserbl

RE: date format from yyyy-mm-dd to dd-mm-yyyy

Quoted from "fomaxrge" imerominia = Format(imerominia, "dd-mm-yyyy") The date ist case sensitive. You have to write imerominia = Format(imerominia, "dd-MM-yyyy") Greatings theuserbl

Tuesday, October 2nd 2012, 10:27pm

Author: theuserbl

Help me ;(

Remove in your comment the "/ Then it works. Don't know, why this makes an error. Possible the internal XML handling have a problem with it. Greatings theuserbl Edit: Btw: Why ends your comment with an " and an / ? Special reason for it?

Wednesday, September 19th 2012, 12:54am

Author: theuserbl

RE: Jabaco command line compiler

Quoted from "Zkir" Is there a command line compiler for Jabaco? IDE and Compiler are compiled together to one file called Jabaco.exe But you can call the compiler on command line, without IDE: http://www.jabaco.org/wiki/Jabaco_Commandline_Options Greatings theuserbl

WoltLab Burning Board