Le 30/01/2015 22:02, herberth guzman a écrit :
> hi
> Greetings to all
>
> I have the following problem
> with the review svn6875 and gb.qt
>
> the following code does not work me
>
>TabPanelExplorer.Count + = 1
>TabPanelExplorer.Text = sOpen_Spath_XDG
> Sexplorer = New FileView_New (Ta
This must be simple but I can't see it!
I have a 5 textboxes on a form and wish to ensure that they all contain data
before creating a new record in a database.
By setting them all with Tag ="Data" the following code finds the controls.
Dim c As Control
For Each c In Me.Controls
If
Hi:
I need to include a .so library in the Installation package , how to do it?
it needs to be at /usr/lib or it can reside at program folder?
tnx
--
Saludos
Ing. Martin P Cristia
--
Dive into the World of Parallel
Does this work?
Dim o As Object
For Each o In Me.Controls
If o.Tag = "Data" Then ' Optionally If o Is TextBox Then
Print o.Name;; o.Text
Endif
Next
Jussi
On Sat, Jan 31, 2015 at 5:07 PM, bill-lancaster
wrote:
> This must be simple but I can't
Thanks Jussi - it works fine
--
View this message in context:
http://gambas.8142.n7.nabble.com/How-to-check-a-number-of-textboxes-for-data-tp50440p50443.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
IsPunct Tests if a string contains only printable non-alphanumeric characters.
Is there a function that return if a string contain only printable characters ?
--
Fabien Bodard
--
Dive into the World of Parallel Program
Hello Fabien,
I use function from C : int isprint(int c)
Its declaracion in Gambas obviously is:
Private Extern isprint(num As Integer) As Integer In "libc:6"
:-D
Example:
' int isprint(int c)
Private Extern isprint(num As Integer) As Integer In "libc:6"
Public Sub Main()
Print
Adde exemplum:
' int isprint(int c)
Private Extern isprint(num As Integer) As Integer In "libc:6"
Public Sub Main()
Dim s As String = "Gam\nbas"
Dim bb As Byte[]
bb = Byte[].FromString(s)
For Each s In bb
Print CBool(isprint(s))
Next
End
---
Le 31/01/2015 17:29, Fabien Bodard a écrit :
> IsPunct Tests if a string contains only printable non-alphanumeric characters.
>
>
> Is there a function that return if a string contain only printable characters
> ?
>
Why do you use that?
--
Benoît Minisini
--
Hi Benoit
thanks for you help
i share the link the example
https://drive.google.com/file/d/0B2gI4jYOofp0WmQtRzFhcDRhcGs/view?usp=sharing
for the moment i work with svn_rev6874
svn_rev6875 and 6876 no working for my with gb.qt4
waiting for your help
Herberth Guzman
https://plus.google.com/u/0/
I haven't actually done this, so I hope someone will correct me if I am wrong.
But, I believe you would list your .so file in the Extra Files (step #8)
section
of the "Make installation package" process.
Lee
__
"Artificial Intelligence is no match for natural stupidity."
On 01/31/201
Updates:
Status: Fixed
Labels: -Version Version-TRUNK
Comment #1 on issue 599 by benoit.m...@gmail.com: deb package of component:
icons not found
https://code.google.com/p/gambas/issues/detail?id=599
It should be fixed in revision #6878.
--
You received this message because th
For testing an user entry in a personnal project
2015-01-31 18:41 GMT+01:00 Benoît Minisini :
> Le 31/01/2015 17:29, Fabien Bodard a écrit :
>> IsPunct Tests if a string contains only printable non-alphanumeric
>> characters.
>>
>>
>> Is there a function that return if a string contain only print
Hi,
is the Error.Text property supposed to be empty in Application_Error()? The
attached script exhibits this behaviour. I'm not sure if it was always this
way...
Regards,
Tobi
--
"There's an old saying: Don't change anything... ever!" -- Mr. Monk
#!/usr/bin/gbs3
Public Sub Main()
Print 1 /
14 matches
Mail list logo