[Gambas-user] Issue 497 in gambas: When date is formatted in gridview then right click pop up menu doesnot work

2014-01-13 Thread gambas
Status: New Owner: Labels: 3.5.2 Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 497 by isaf...@gmail.com: When date is formatted in gridview then right click pop up menu doesnot work http://code.google.com/p/gambas/issues/detail?id=497 1) Fill a gridvi

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #8 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 In such exceptional case, the Null value represent the root directory. Because the absolute paths begin with a slash. If he were in the middle of the path, really do

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #9 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 Sorry, I correct myself, Null value and "&/" represents the root directory. That is what I meant. -- You received this message because this project is configured to

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Updates: Status: WontFix Comment #7 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 `Null` is not a path, so `Null &/ "alma"` means nothing. I just chose to ignore the null values instead of raising errors. -

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #6 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 That's why it would be logical to me that: Null &/ "alma" enter the following value: "/alma" Because this is a path. But no problem, just didn't understand at first

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #5 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 I don't understand what you thought the '&/' operator should do. It is really an operator that aims at concatenating path elements. -- You received this mess

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #4 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 Let's just say good, because there is no double slash: Print "/" &/ "alma" Output: /alma Just the "rootdir" value cannot be Null. After all, it really is so logi

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #3 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 &/ is for concatenating directory paths and file names. A void string is ignored because it cannot be a directory or a file name. -- You received this messag

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #2 on issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 Normally: Print "alma" &/ "szilva" Output: alma/szilva But if "alma" is Null, the output doesn't contain a slash. Example: Dim rootdir As String Dim subdir

Re: [Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Comment #1 on issue 496 by benoit.m...@gmail.com: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 I don't see any problem with those codes. -- You received this message because this project is configured to send all issue notifications to this address. Y

[Gambas-user] Issue 496 in gambas: The Null constant and the slash

2014-01-13 Thread gambas
Status: New Owner: Labels: Version-3.5.0 Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 496 by krisztiankende: The Null constant and the slash http://code.google.com/p/gambas/issues/detail?id=496 The Null constant is represent a zero length string, but t

Re: [Gambas-user] Menu Show Event with Unity desktop

2014-01-13 Thread Benoît Minisini
Le 13/01/2014 20:15, Greg Raffaelle a écrit : > >Le 09/01/2014 05:07, Greg Raffaelle a écrit : > > I set the environment variable APPMENU_DISPLAY_BOTH=1 as suggested and > > the program menu is now displayed on both the global unity menu at the > > top of the screen and on the main form. >

Re: [Gambas-user] Menu Show Event with Unity desktop

2014-01-13 Thread Greg Raffaelle
>Le 09/01/2014 05:07, Greg Raffaelle a écrit : > I set the environment variable APPMENU_DISPLAY_BOTH=1 as suggested and > the program menu is now displayed on both the global unity menu at the > top of the screen and on the main form. > > However, I still believe the program main class is onl

[Gambas-user] Rendering text with OpenGL example

2014-01-13 Thread terco IDE
> >> Yes (using OpenGL), but it's rather involved. I had an epic failure of > >> hardware and human logic this week and am just wrapping up restoring > >> sanity to my server and workstation, but give me a day or so and I'll > >> give you the source code. > >> > >> It's my understanding that Open

[Gambas-user] TableView Column.Width quick adjust?

2014-01-13 Thread Rolf-Werner Eilert
When I want to adapt the Column.Width of all Columns in a TableView, will I still have to build this into the Data event or iterate through the whole thing, or is there meanwhile a quicker way to programmatically start the fast adaptation (the one which I get when double-clicking on the column

[Gambas-user] Memory leak 2

2014-01-13 Thread Wolfgang
Hello Benoît, I found another strange behaviour: snip Dim i As Long Dim s As String s = "1234567890abcdefghij1234567890abcdefghij1234567890abcdefghij1234567890abcdefghij1234567890abcdefghi" ' s has 99 Bytes plus the "\n", so we have 100Bytes for each line For i = 1 To 1000 TextAre