tem (where the bug does not occur)?
>
I am attaching two files with the variables used in the virtual and real
environments. To me they look the same except for minor details that do not
seem related to the issue.
Best regards
- fernando
--
Fernando Cabral
Blogue: http://fernandocab
t be
an inheritance problem. Otherwise, it would not be running on the virtual
machine either...
Perhaps I have lost track of your reasoning.
- fernando
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com
2017-09-06 14:41 GMT-03:00 zainudin ahmad :
> sudo apt-get install gambas3-gb-qt5 gambas3-gb-qt5-ext
> gambas3-gb-qt5-opengl gambas3-gb-qt5-webkit
>
gambas3-gb-qt5 gambas3-gb-qt5-opengl were already installed.
apt did not find packages gambas3-gb-qt5-ext and gambas3-gb-webkit
-
er)
> 2) run gambas IDE and open/create any project
> 3) try write someting in code editor
> .
> it's work ???
I've tried your suggestion. No, it did not work.
- fernando
>
>
>
> .
>
>
>
>
to no avail.
This week (for other reasons, not because of Gambas), a did a fresh install
in a brand new machine.
Did no work. Same problem.
So, I guess you will just waist your time. But who knows? When black m
m.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-
and file is rwxrwxrwd. They all belong to me (owner
and group).
This issue has mystified me for several months now. I had settled down and
accepted the idea of keeping using the virtual machine to do the editing.
Until this morning, when someone else refered to the same issue.
- fernando
>
ocated? Have you tried copying the project
> to your home directory?
>
> It is on my home directory (everything is under
/home/fernando/Dropbox/Gambas/*"). Directory Dropbox is a local directory
that is replicated by Dropbox so I have a copy available in other machines
that respect the
/etc/X11/xinit.
Basically, either they are empty or say "default".
Regards
- fernando
2017-09-05 8:24 GMT-03:00 Benoît Minisini via Gambas-user <
gambas-user@lists.sourceforge.net>:
>
>
> Message transféré
> Sujet : [Gambas Bug Tracker] Bug #1161: Class Ed
all from scratch. To my surprise, I had the same
problem. I can't use the IDE.
Now I know the locking has nothing to do with some left over files. Or some
protection scheme I could have knowingly or unknowingly tinkered with. But,
then, how can it work with a virtual machine with the sam
ource directory.
It would be great to know what is the right thing to do.
- fernando
2017-09-01 17:18 GMT-03:00 mikeB :
> eGreetings - The World of Gambas,
>
> Most likely most of you will be thinking "OH NO - not this subject again"
> but I'm sure I'm not the only one tr
2017-08-02 6:40 GMT-03:00 Fabien Bodard :
> Ok Fernando ... your code is no so bad :-)
>
>
> ==> the code revised
>
>
Still being executed twice. I have not been able to understand why.
Thanks.
- fernando
> ' Gambas class file
>
> Private Const W As Integer
2017-08-02 6:40 GMT-03:00 Fabien Bodard :
> Ok Fernando ... your code is no so bad :-)
>
> I know. Some explanations bellow.
>
> First never call the resizing of the caneva in the drawing event as it
> call itself the drawing event ... (normally if I rememember well it
> hav
2017-08-02 7:05 GMT-03:00 Adrien Prokopowicz :
Le Wed, 02 Aug 2017 03:38:33 +0200, Fernando Cabral <
> fernandojosecab...@gmail.com> a écrit:
>
> Besides, I have a question: when a drawing area is created, it (0,0)
>> supposed to be the central point?
>>
>>
&
.Translate(dwgArea.W / 2, dwgArea.H / 2) Paint.Brush =
Paint.Color(Color.SetAlpha(Color.Red, 128)) Paint.LineWidth = 1For i
= -15 To 195 Step 15 angle = Rad(CFloat(i)) Paint.MoveTo(0, 0)
Paint.LineTo(Cos(angle) * W / 2, Sin(angle) * H / 2) Paint.Stroke
Paint.Fill NextEnd*
--
Fernando C
2017-07-30 17:51 GMT-03:00 Tobias Boege :
> On Sun, 30 Jul 2017, Fernando Cabral wrote:
> To get you started, you can find the ancient AnalogWatch example on the
> software farm, which draws an analog wall clock. If you're proficient
> with trigonometry you can concentrate on
easy. I have line lengths and angles. I
can use either or both to delineate the sundial face.
I would guess I will have to resort to cairo or chart, but I don't know
where to start from. I'd appreciate a few hints.
Thanks.
- fernando
--
Fernando Cabral
Blogue: http://fernandocabral.o
sitionlen) Print strincharstrinchar = "test )after)r"
strinchar = Mid(strinchar, 1, (InStr(strinchar, ")", -1) - 1))Print
strinchar *
Both print "test )after"
- fernando
2017-07-28 22:02 GMT-03:00 Adrien Prokopowicz
:
>
> Le Sat, 29 Jul 2017 02:40:
2017-07-28 20:46 GMT-03:00 PICCORO McKAY Lenz :
> 2017-07-28 17:17 GMT-04:00 Fernando Cabral :
>
>> > in the following code:
>> > strinchar = Mid(strinchar, 1, InStr(strinchar, ")", -1) - 1)
>> > What does inStr() returns if nothing is found? You m
2017-07-28 17:55 GMT-03:00 PICCORO McKAY Lenz :
> in the following code:
>
> strinchar = Mid(strinchar, 1, InStr(strinchar, ")", -1) - 1)
>
> What does inStr() returns if nothing is found? You may be passing an
invalid argument to Mid().
Please, check it up.
- f
y gave you the search
and replace regular expression. Something like
NewLine = RegExp.Replace(OldLIne,
"^(.*?) COMMENT +?(".*?")(,.*?)", "&1 \*&2*/&3", RegExp.UTF8)
But, since I presume you'll be using it several times, then it will be more
effi
nce..
>
".*?data (.*?) data2" saves the substring between "data" and "data2" to the
first buffer.
You can recover it with &1 (\1 in more traditional regex replace).
- fernando
>
> i try to do but in the for each always re
Perhaps Bill has met the same problem I have here. I can't use IDE in my
regular machines because it will not take anything from the keyboard. I
only can edit my source code using a virtual machine.
Nevertheless - I must add - the textarea in my program is working fine.
- fernando
2017-07-
Save that firt part into the buffer number 1
c) Skip til after the last white space after " COMMENT " - throw that away
d) save the next portion between double quotes and save into buffer number 2
e) Save next portion into buffer number 3
Put back the contents from buffer 1, add "
I think saying Gambas has not "enough support and vision" is not a good way
to obtain what you want.
Those are my two cents. After that, I'll shut my mouth up as far as this
issue is concerned.
Best regards
- fernando
2017-07-18 19:27 GMT-03:00 PICCORO McKAY Lenz :
> 2017-07-18
lt then 250?
> buff[idx] = buff[idx] - 11
> Endif
> Next
> ' Write the whole buffer out to the output file
> buff.Write(outFile, 0, readSize)
> Wend
>
> Close #inFile
> Close #outFile
>
> End
>
>
> Kind regards,
> Caveat
&
;fp =
fopen("/home/fernando/temp/deah001.dhn", "r");while((c = fgetc(fp)) !=
EOF) {putchar(c + 11);}fclose(fp);return 0;}*
I am sure there is a way to do this efficiently in Gambas.Certainly not in
1 second, as it happened here, but perhaps in 5 o
it grows slower and slower as
the string grows, is still way faster than the second option.
To me it does not make sense. Does it for you?
Also, is there a faster way to do this?
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gm
pipe to the printer daemon or else create a file and then use a
shell () instruction to print and delete that file. Both should work well.
- fernando
> Lenz McKAY Gerardo (PICCORO)
> http://qgqlochekone.blogspot.com
>
> 2017-07-13 19:54 GMT-04:00 Fernando Cabral :
>
> > 201
and
stdout to /dev/null.
I would guess that a daemon started at startup or by cron would give the
same result.
Am I wrong?
Regards
- fernando
> [1] https://sourceforge.net/p/gambas/mailman/gambas-user/
> thread/1498036647346-59450.post%40n7.nabble.com/#msg35904830
> [2] https://sta
gamberetto". Nevertheless, at the first sight, it is hard to see that
"gamba" and "camarão" come from the same Greek word.
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fca
the
decimal separator.
This means in the example above, result will be 100.56. If the number was
100.5
it would be rounded to 100.6.
Again, I dont know if those are the best way to do it, but it works.
Regards
-fernando
2017-07-13 2:39 GMT-03:00 alexchernoff :
> Peace to all,
>
> t
>>> Hope this explains all.
>>
>>
Willy, it does explain. Just to be on the safe side:
a) It means Gambas iteself is not installed when we run the package
installer, right?
b) What do the *.deb files do? Just copy the sorce code and the bytecode to
the new system?
Thank you
Based on the image you've sent a link to, I have not been able to
understand how to do it.
Thank you.
- fernando
2017-07-06 11:08 GMT-03:00 Charlie :
> Fernando Cabral wrote
> > I'd like to display text highlights like bold and italics. Can I do it
> > using TextArea?
hem a *.deb files. Now, here are the
issues:
1) They are all small files, so, for sure, they do not contain the
interpreter
2) trying to install the deb files results in nothing (no error message,
but nothing happens)
Is there a wiki page where I can get better information on how to do this?
-
I'd like to display text highlights like bold and italics. Can I do it
using TextArea? If yes, how?
If I can't which resource should I use?
Regards
- fernando
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...
w I missed this. Thank you.
- fernando
2017-07-05 6:37 GMT-03:00 Tobias Boege :
> On Tue, 04 Jul 2017, Fernando Cabral wrote:
> > I have been trying something like *poder[^[:alpha:]* so I could find
> the
> > word "poder " ("poder" followed by an space) b
ment, then after that what I have is an empty string. So,
I can't blame Split() for bringing it in. Unless I explicitly tell Split()
to drop it.
Yes, in this case, the bug was in my brain. It is called lack of knowledge
or faulty reasoning.
Thank you bb and Tony for showing me the light.
- f
I have found and worked around the problem. When you do the following:
*Dim Expressions as string[] =
Split(File.Load("/home/fernando/.config/libreoffice/4/user/basic/indesejaveis.txt"),
"\n") *
The last item pushed into *Expressions* is an empty string ("") even t
quot;@" & Searchfor[n] &"@\n"*
in both cases I will see precisely the same output. I can't distinguish one
from the other. So, why it compiles in the first case, but does not in the
second?
This is the mystery I must solve with a little help from a good soul out
there.
werless".
Problem is that it seems [^[alpha]] includes accented characters like "á",
"é", "ã".
That is, accented characters are not understood as alpha, but not alpha.
Please, note that I have compiled it with the UTF8 flag:
* re.Compile(poder[^[:alpha]], Reg
Well, I found a very easy way to do it:
*Dim Wordlist as string []*
*Wordlist = Split(File.Load("strings.txt"), "\n")*
It seems it can't be easier, can it?
2017-07-04 12:06 GMT-03:00 Fernando Cabral :
> Is there a straightforward way to read a file directly i
] = "a"
word[1] = "b"
word[2] = "c"
Yes, I know I can LINE INPUT each line and copy it into the array.
But I have seen that Gambas has so many shortcuts that perhaps there is one
for this operation too.
Any hints?
Regards
- fernando
--
Fernando Cabral
Blogue: htt
can do
without them.
*Private $hPdf As New PdfDocumentPublic Sub Form_Open() Me.Center Try
$hPdf.Open("/home/fernando/.config/libreoffice/4/user/basic/EmpregoDoHífen.pdf")
If Error Then Message.Error("Unable to open the file : " &
"/ho
hat allows the user
to select a PDF file. Instead I put a path/filename as a constant.
Only problem is that I have not found how to change font size. Even so, it
delivers what I needed.
Thank you.
- fernando
>
> So this tool is good for display Documents such as pdf or reports. But
>
Thank you Gianluigi. It seems there more than one way to skin this cat.
I believe the problem has to do with my ignorance concerning Gambas.
I have just found a DocumentView that will probably work too.
Since I have a full example of this usage, I'll probably try it first.
Thank you.
- fer
n sub
I would guess textedit1.text is in a form that, when displayed, will render
the file correctly.
But then again, I can't find the rest of the code.
Thank you.
- fernando
2017-07-02 10:07 GMT-03:00 PICCORO McKAY Lenz :
> hi fernando,, u must read as stream.. see it:
>
For Read Line Input #TextFile, RtfText
FMain.LoadText(RtfFile) *' Here is the rub!
* FMain.ShowmodalEnd*
Regards
- fernando
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Tele
-- Forwarded message --
From: Fernando Cabral
Date: 2017-07-01 17:34 GMT-03:00
Subject: Re: [Gambas-user] Problem to be examined by those who must use
UTF8 with Gambas
To: Jussi Lahtinen
2017-07-01 16:15 GMT-03:00 Jussi Lahtinen :
> I don't quite get your descriptio
translate it back with
* RawText = RegExp.Replace(RawText, "à", "À")*
It does not work anymore.
But if I do
*RawText = RawText & "À"*
And RawText did not contain "À" before, then it will be displayed.
Amazing.
Any ideas about why this happen
prit might not be. And a innocent-looking function might be
the killer.
Thank you guys for your help. I've learned a lot about Gambas as well as
about algorithms.
Regards
- fernando
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosec
ent.
If gambas can not do what you have to do, then I see no point in insisting.
But, if you want to get some help in clarifying this issue, then you' be
better be
more specific.
Regards
- fernando
>
> >
>
e elementarily, for me (a poorly
> >> educated boy :-) )
> >>
> >>
> >>
> >>> And your function does two jobs simultaneously but only returns the
> >>> result
> >>> of one of the jobs. The output you get is only worth half t
2017-06-30 7:44 GMT-03:00 Fabien Bodard :
> The best way is the nando one ... at least for gambas.
>
> As you have not to matter about what is the index value or the order,
> the walk ahead option is the better.
>
>
> Then Fernando ... for big, big things... I think you nee
Jussi said:
> As Fernando stated your code is good only for small arrays. But if someone
>is going to use it, here is correct implementation:
No, Jussi, I didn't say it is good only for small arrays. I said some
suggestions apply only
to small arrays because if I have to traverse the
= 49,995,000
My program has to face a few thousand items, so not sorting does not seem a
good option.
Regards
- fernando
2017-06-27 12:59 GMT-03:00 :
> Well, there is complicated, then there is simplicity:
> I tested this. Works for sorted, unsorted.
> Can't be any simpler.
>
yself coding
things that were not needed. For instance, I coded some functions to do
quicksort and bubble sort and then I found Array.sort () was available.
Therefore, I waisted my time coding those quicksort and bubble sort
functions :-(
Regards
- fernando
> If you have a sorting where
I have, say
A
B
B
C
D
D
In the first option, I want to have
A
B
C
D
In the second option, I want to have
1 A
2 B
1 C
2 D
Any hints on how to do this using some Gambas buit in method?
Note; Presently I have been doing it using external calls to
the utilities sort and uniq.
Regards
- fernando
It is hard to think and code
bottleneck could be solved with GOTOs. If it is inefficient, it will
continue to be so even if you spread GOTOs all over.
Many of us consider GOTOs to be an unecessary and confusing command. But If
you feel that using GOTO is your way to go, by all means, use it.
Rega
it unreadable. But then again,
"breaks" and "loops" might work better even when you have nested loops.
My two cents.
Regards
- fernando
> Christof Thalhofer
>
> --
> Dies ist keine Signatur
>
>
>
&g
uation where you have a single block of 4.000 lines of
code. It should have been broken down into a few tens or pehaps hundreds
functions.
It means, even thou I don't know your code, I would guess it has not been
well thought out..
Regards
- fernando
be put into a meaningful class. An object
ing arrays, but that only consumes another half a
second for the same 150-page long document.
Now I am happy and I feel stimulated to complete the code and do some
polishing.
Thank you, Tobi and Jussi. You have helped a lot.
2017-06-17 18:06 GMT-03:00 Tobias Boege :
> On Sat, 17 Jun 2017,
this magnitude of performance gain, I am quite willing to go
back to Split () and then do soma massaging in those situations where
results are less than perfect.
Thank you for the many hints you've provided me with.
Regards
- fernando
2017-06-18 11:08 GMT-03:00 Tobias Boege :
> On S
retrieved in the following manner:
for i = 0 to 2
print mid(s, p[i], l[i])
next
I think this would be the most efficient way to do it. But I can't find how
to do it in Gambas using Regex.
Regards
- fernando
2017-06-17 18:06 GMT-03:00 Tobias Boege :
> On Sat, 17 Jun 2017, Ferna
Thank you, Tobi, for taking the time to comment on my issues. I will ponder
the following.
2017-06-17 18:06 GMT-03:00 Tobias Boege :
> On Sat, 17 Jun 2017, Fernando Cabral wrote:
> >> Still beating my head against the wall due to my lack of knowledge about
> >> the PCRE m
bersome (like advancing with string.mid() and resorting to
re[1].text and re.text.
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Telegram: +55 (37) 99988-8868
Wickr ID: fernandocabral
WhatsApp:
so far hints on these possibilities, but
there are no full-fledged examples. I wonder if those of you who have been
using regex more extensively can send me (or point me to) some code sample
where the Regex family of methods and parameters are more intensively used.
Best regards
- fernando
I've now installed gambas 3.9.90. Unfortunately, the keyboard is still
locked.
How about you, guys, who had the same problem I have? Still having it, or
has it been solved
with the last revision?
- fernando
2017-05-25 16:15 GMT-03:00 Fabien Bodard :
> -- Forwarded
have the time or
knowledge to do what is required (It is not that I am lazy; it is because
time has been quite scarce.
Maybe I should try the unstable version...
Regards
- fernando
2017-06-11 17:02 GMT-03:00 Gianluigi :
> +1 👍
> I also use the version of Gambas compiled from sources w
would be
incorporated into the stable version.
So, I will stay with the stable version and wait until the changes are made
available for general use. Meanwhile, I'll keep using the workaround for
the keyboard locking issue.
Thank you.
- fernando
2017-06-11 11:33 GMT-03:00 Tobias Boege :
>
ere a way for me to get the latest
revision without having to go thru the pains of finding out how to overcome
the issues with the disabled modules and compiling from source?
Regards
- fernando
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e
Agreed, Honsek. I am a newcomer, I liked Gambas at first sight, but I have
had a hard time finding proper documentation and good examples on how-to.
- fernando
2017-06-06 7:53 GMT-03:00 Hans Lehmann :
> A warm Hello to all friends of the Gambas programming language,
>
> many years
did not allow me to send the files, I am
sending you the links so you can get them from Dropbox:
https://www.dropbox.com/s/6prpw8l7bir177f/AnalisaSentenca-0.0.665.tar.gz?dl=0
https://www.dropbox.com/s/82adoan7ojbwvbn/Legibilidade-odt-0.0.354.tar.gz?dl=0
https://www.dropbox.com/s/3n637e7g8rwqzfd/PauloC
written a much longer code that does the same thing using loops
and searching for the characters I want in or want out. The whole thing
runs in about 5 seconds (but this code took me much, much longer do write).
I wonder if any of you could suggest potentially faster RegExp that could
replace the
*?\n*?", ""
To my eyes, "[.:!?;]*[ ]*?\n*?" is a perfectly valid regular expression.
Any hints?
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Telegram: +55 (37) 99988-
2017-05-24 20:31 GMT-03:00 Jussi Lahtinen :
> Please post the replies to the list, so that Benoit will see them. I don't
> know enough about the topic.
>
Sorry. I thought I had.
>
>
> Jussi
>
> On Thu, May 25, 2017 at 1:46 AM, Fernando Cabral <
> fernandojoseca
> Mail : glaucio.de.ara...@gmail.com
> TIM : (11) 95900-7801 (WhatsApp / Telegram)
>
> 2017-05-24 7:25 GMT-03:00 Benoît Minisini :
>
> > Le 24/05/2017 à 08:44, Fabien Bodard a écrit :
> > > We need to wait for Benoit as it's a misstake on the rev 8132.
Benoît says:
> I'm not sure it's a mistake in rev 8132. Fernando must check with an
> older revision to see if the problem comes from it.
When the problem appeared, I downgraded to the version I had on the Mint
repository.
I did not work. So, whatever has changed (either on the
that might be misconfigured on your VM perhaps (I mean
> on the Virtualbox settings)?
It is the other way around: Gambas 3.9.2 runs flawlessly on the Virtual Box.
The keyboard locks in the real machine -- even when the keyboard is the
same for both machines.
Regards
- fernando
2017-05-24
ion for the failure. Which makes
sense, since
different strings have given different limits on the test I've performed.
Thank you.
- fernando
2017-05-23 13:58 GMT-03:00 Tobias Boege :
> On Tue, 23 May 2017, Fernando Cabral wrote:
> > How much text can we display on TextArea?
> &g
How much text can we display on TextArea?
Even after performing serval tests I couldn' t find out.
It seems sometimes I can display 7000 characters,
sometimes twice as much.
Perhaps someone can point me the proper documentation.
Thanks
- fernando
--
Fernando Cabral
Blogue:
switch back to the real machine, where I test it.
b) Running on the real machine, I edit the source code using vi. After
saving the edited file I reload it on the gambas IDE, compile it and test
it.
Cumbersome, perhaps, but workable enough to let me keep learning gambas
Regards
- fernando
2017
running Mint 18.1
(and the same on the virtual machine...)
It seems Benoît thinks it has to do with keyboard input. He suggested I
changed Xinput method, but did not give any hints on what to change.
- fernando
2017-05-15 9:53 GMT-03:00 Glaucio Araujo :
> Let's see...
>
>
&g
, but has worked.
I would ask you to try running "sudo gambas3". If you can edit your files
as superuser, then it will be very likely that we have exactly the same
problem.
Saudações
- fernando
2017-05-14 18:19 GMT-03:00 Glaucio Araujo :
> Hi,
>
> I'm having exactly the
ay, I am glad you and others have tried so hard to help me.
- fernando
2017-05-13 13:07 GMT-03:00 Tobias Boege :
> On Sat, 13 May 2017, Fernando Cabral wrote:
> > Using IDE I can't edit my source code. It seems locked up. To no avail, I
> > have followed every hint I' v
Benoît, for me, hic sunt dracones. What should I change?
Regards
Fernando
2017-05-13 12:24 GMT-03:00 Benoît Minisini :
> Le 13/05/2017 à 15:56, Fernando Cabral a écrit :
>
>> Using IDE I can't edit my source code. It seems locked up. To no avail, I
>> have followed ev
hints, no matter how crazy, will be much appreciated. I have already
lost a bunch of hours trying to figure this out, but have made no progress
so far.
Regards
- fernando
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@g
ading the keyboard.
Regards
- fernando
2017-05-10 3:47 GMT-03:00 Rolf-Werner Eilert :
> Am 10.05.2017 01:04, schrieb Jussi Lahtinen:
> > Maybe some window manager setting steal focus from the editor..?
> >
> >
> > Jussi
> >
>
>
> Further upstairs in the
Here goes the the archive generated as instructed.
(Code quality is pretty poor because this was my first try at gambas).
- fernando
2017-05-09 18:56 GMT-03:00 Jussi Lahtinen :
> Can you try to re-send the project directory as the file you attached is
> not extractable. Do it this way;
> 2017-05-09 19:01 GMT-03:00 Jussi Lahtinen
wrote:
> Also what happens if you try to edit the project with regular text editor,
> instead of Gambas?
>
They all can be edited. For instance, with vi. No problem.
- fernando
>
> Jussi
>
> On Wed, May 10, 2017 at 12:56 AM,
nihil. So, not a trace from gambas.
Then I reinstalled anew using the regular apt-get (no PPA). Installed
version is now 3.8.4
IDE still locked. This mystifies me. There must be a file somewhere whose
name does not contain "gambas" that says I should not be able to edit any
source cod
>Can you send a tar.gz archive of your project directory?
I am sending one. Do you need them all?
(tar compressed)
Regards
- fernando
legibilidade
Description: Binary data
--
Check out the vibrant tech community
oblem appeared after I had
downloaded
docEditor from the farm. After that, editing has been locked. But I can't
affirm there is
a cause/effect here.For the time being, I see it as a coincidence.
Regards
- fernando
2017-05-08 11:11 GMT-03:00 Karl Reinl :
> Am Montag, den 08.05.2017, 0
17 x86_64 x86_64 x86_64 GNU/Linux
That, in fact, is Linux Mint 8.1 Serena.
Thank you.
- fernando
>
> Jussi
>
> On Mon, May 8, 2017 at 3:37 PM, Fernando Cabral <
> fernandojosecab...@gmail.com> wrote:
>
>> > 2017-05-08 8:43 GMT-03:00 Charlie wrote:
>> >
nlocking clicking on the lock icon. The only
thing that changes is that on the tab appears the warning "Read only". But
the editing continues locked no matter what.
I have changed project files and directories do 777 (rwxrwxrwx) but stil to
no avail.
Even if I create a new project, it is
tells gambas
to keep the whole thing locked. Isn't there?
I'd appreciate if someone can give me some more ideas to try.
Regards
- fernando
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...
Karl wrote:
> your rights are ideal. If you lock them, inside /.src you will find
> -r--r--r-- 1 fernando fernando.
> Did you check inside /.src ?
Yes, using "find ... ls -la" I checked one by one. They all have at least
the access permission indicated.
> If inside /.src f
directories bellow oliviercruilles and they have the
permissions set to at least the following:
drwxr-xr-x 3 fernando fernando -- if a directory
-rw-r--r-- 1 fernando fernando -- if a file
Now, to run "chmod -R" what is the ideal permission setting?
Regards
- fernando
201
Karl wrote:
>I suppose You have opened the example projects, is it?
> Just save you a local copy by 'save as'..
I did download and open gbDocEditor. Do you mean it can lock all my
projects?
If so, what else can I do to unlock it? Saving as did not seem to work.
- fernando
201
do to fix this?
--
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Telegram: +55 (37) 99988-8868
Wickr ID: fernandocabral
WhatsApp: +55 (37) 99988-8868
Skype: fernandojosecabral
Telefone fix
1 - 100 of 130 matches
Mail list logo