You are not logged in.

Search results

Search results 1-12 of 12.

Thursday, October 22nd 2009, 3:26pm

Author: dolcevita

File operations and basic graphics operations

Hi OlimilO, please take a look a these line, that give different result between Jabaco and VB: Source code 1 2 3 4 5 i = FreeFile() Open fn For Input As #i j = FreeFile() Open fn2 For Output As #j ' i = 1 and j = 2 Jabaco Source 1 2 3 4 5 i = FreeFile() Open fn, Input, i j = FreeFile() Open fn2, Output, j ' i = 1 and j = 1 in jabaco i = 1 and j = 1 (instead of 2 that is correct) is it a bug in FreeFile

Thursday, October 22nd 2009, 2:22pm

Author: dolcevita

File operations and basic graphics operations

Hi OlimilO, thanks to your suggestion, now the project works! Also the function Print must be called as FileSystem.Print (i guess for the same reason). If these semantics differences could be uniformed to VB language, Jabaco will be more flexible importing old vb projects that uses files. Regards, Andrea

Thursday, October 22nd 2009, 1:10pm

Author: dolcevita

Visual Basic FreeFile() function

Hi, I updated the framework as indicated, now FreeFile() doesn't give error anymore. Thankyou! Andrea

Thursday, October 22nd 2009, 1:08pm

Author: dolcevita

File operations and basic graphics operations

Hi, I'm sorry your code fails: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 Private Sub Command2_Click() Dim FNr As Integer: FNr = FreeFile Open FNm , Input , FNr Dim sl As New java#lang#StringBuffer Dim s As String While Not EOF(FNr) Line_Input FNr, sl s = s & sl & vbCrLf Wend Close FNr Text1.Text = s End Sub ERROR: Method 'Close' not found witn these parameters.

Thursday, October 22nd 2009, 11:08am

Author: dolcevita

Visual Basic FreeFile() function

Hi A1880, thankyou for your fast response, your support is great! I checked my version of Jabaco, it's already the last one 1.5.2 ( http://www.jabaco.org/download.html and http://www.jabaco.org/doc.html ) I also tryed to update it by menu ? --> Update Jabaco and it says No update available. But it still doesn't work., the error is function or variable not defined.

Thursday, October 22nd 2009, 10:03am

Author: dolcevita

Visual Basic FreeFile() function

Hi, i was converting to jabaco an existing vb6 project of mine but i can't execute it because the vb function FreeFile() is not recognized in jabaco. Anyone had the same problem and findout a solution? Could be added the support for this function in Jabaco? It would be really appreciated. Regards, Andrea

Monday, October 12th 2009, 11:45am

Author: dolcevita

WebBrowser

Hi Faldegast, the link you posted is very interesting, probably a good point with starting WebBrowser functionalities integration in Jabaco. Unfortunately, I have no experience (and no time to learn) with Java. If anyone (A1880 ? :-]) find a way to integrate a very simple and raw webbrowser component in Jabaco IDE, it will be really appreciated not only by me! In first step is not really important for the goal, display pages correctly (javascript engine, css handling, etc), just a simple methods...

Friday, September 25th 2009, 11:48am

Author: dolcevita

WebBrowser

Hi, A1880 very interesting that is possible to use WebBrowser functionalities! Please, could you provide more documentation (and examples) on how to retreive the source code of a page and navigating between links? If it would be possible, I could start migrating some applications of mine on Jabaco. More: I unserstand Source code 1 Dim kit As javax#swing#text#html#HTMLEditorKit and Source code 1 kit = Cast(RichTextBox1.Parent.getEditorKitForContentType("text/html"), HTMLEditorKit) but in not frie...

Monday, September 21st 2009, 5:49pm

Author: dolcevita

WebBrowser

is here in Jabaco the possibility to use VB6 WebBrowser control or anything similar?

Monday, September 21st 2009, 4:58pm

Author: dolcevita

Terminate execution

Hi, thanks for your response. unfortunately "Unload Me" doesn't work: if you execute the application in the IDE, you'll see the form disappear but the app still run. I tried with "Call End" instead of "End" It worked.

Monday, September 21st 2009, 2:00pm

Author: dolcevita

Terminate execution

Hi everyone, i'm beginner here in jabaco, i'm searching how to termiante the execution of my application with jabaco. In VB6 i use "End" but this statement doesn't work in Jabaco. Anyone can help me? More, is there a manual/documentation of jabaco? (a sort of msdn) Regards, Dolcevita

WoltLab Burning Board