Displaying 20 results from an estimated 700 matches similar to: "Re: FXTable possible bug"
2005 Feb 18
2
Fixed column widths in FXTable?
Is there a way to make an FXTable''s column widths (and row heights)
unchangeable by the user? By experimentation it looks to me like leaving
out TABLE_COL_SIZABLE and TABLE_ROW_SIZABLE from the options field in
FXTable.new() has no effect. I can still drag the intersection between
two column heading buttons to change the column width. The code I''m
using to test this is
2008 Aug 20
0
FXTable scrolling problem
Hi,
I''m trying to accomplish the following task:
1) Query database for records
2) Populate FXTable with first 50 records from cursor
3) Populate more rows as the table scrolls down
To accomplish this I subclassed FXTable (class Table < FXTable) and defined
the initialize method as shown below:
def initialize(parent)
super(parent,
2008 Apr 14
3
Copy-paste between FXTable and FXTextfield
Hi,
I''m using FXRuby 1.6.13 under Windows XP / Ruby 1.8.6.
I''ve noticed something strange when copying-pasting things between
FXTable cells, and FXTextfields.
----------------------------------------------
1) When copying the content of an FXTextfield, and pasting it into an
FXTable cell, everything works fine.
2) When selecting an FXTable cell, issuing a "copy"
2005 Feb 18
5
FXTable segfaults after multiple setTableSize calls
When I empty and refill an FXTable multiple times with a large data set
(10,000 rows x 1 column in the example below, around 1000 rows x 6
columns in a more complicated app), the application eventually fails
with a segmentation fault. The number of repetitions required to produce
the segfault is rather random, ranging from just a couple reps to 15 or
20 in some trials. The program disappears
2006 Mar 28
11
setting widget attributes
I''m trying to set attributes of widgets in subclasses like the following.
class PersonTable < FXTable
def initialize(owner)
options = TABLE_COL_SIZEABLE
super(owner, nil, 0, options)
visibleRows = 5
...
end
end
visibleRows doesn''t get set.
However, if I do this
self.visibleRows = 5
then it does.
Shouldn''t it work without "self."?
2008 May 06
1
Wrap text inside an FXTable cell?
Hi,
Is it possible to wrap text inside an FXTable cell, just like it is
possible with an FXText object? I''d like to display and edit multi-line
text inside an FXTable cell.
Thanks!
Philippe
2010 Mar 17
0
getting text being entered into an FXTable cell
I have an application that uses an FXTable widget, and when the contents
of a cell is being edited, I want to anticipate what the user wishes to
enter (by matching the text with a previous entry), and present that for
completion. (This is similar to how Excel works.) I''ve attempted to do
this by using the FXTable getItem(currentRow, currentColumn).text method
when a SEL_KEYRELEASE
2012 Dec 16
0
Bug: FXTable: programmatic deselection doesn't work as expected.
Hello Lars and company. Was working with FXTable wdiget; what I want to acomplish is that the the table is read only but full full read only, I mean: the user can''t select any cell. Well I realized that it is not possible, so I''ve tried to look for another solutions, and none of them work for me. The one which put me close to the solution was: "when the user select a cell,
2004 Oct 23
0
Re: FXTable -- numColumns & resize
On Fri, 22 Oct 2004 13:39:06 -0700, Bob Sidebotham <bob@windsong.bc.ca> wrote:
> In 1.2 FXTable, numColumns is documented as numCols, but should be
> numColumns, I think. Also the examples/table.rb app uses numCols, and
> should use numColumns.
Yes, you''re right. I''ve added both of these bugs to the FXRuby bug
list, found here:
2010 Apr 09
2
Problem detecting keypresses in FXTable
I''m using an RXTable in my application and I would like to be able to
select a row and then press the Delete key to delete the selected row.
This does not seem to work, however, as apparently keypresses are not
initially recognized. In my FXTable derived class I have:
connect(SEL_KEYRELEASE) do |sender, selector, event|
puts "code = #{''%X'' %
2008 May 18
8
FXTable::fitColumnsToContents
On May 17, 2008, at 6:54 AM, David Toll wrote:
> I tried to submit the following message to the "fxruby-users"
> message board (I clicked the link to send it as an email to fxruby-users at rubyforge.org
> , but the message did not appear). I conclude I do not know how to
> submit questions to this message board.
You need to be subscribed to the mailing list before you
2003 Dec 01
0
No subject
# testparm smb.conf
Load smb config files from smb.conf
Processing section "[documentation]"
doing parameter comment = Engineering Documentation
doing parameter path = /opt/eng-docs
doing parameter writeable = Yes
doing parameter guest ok = Yes
pm_process() returned Yes
lp_servicenumber: couldn't find homes
Loaded services file OK.
WARNING: You have some share names that are longer
2005 Feb 02
0
Re: Problem with setCellColor ?
On Feb 2, 2005, at 5:47 PM, dragoncity wrote:
> am having problems with FXRuby 1.2 setting a cells color,
> In the following code snippet, the variables rcnt & FLDFilename
> are progam controlled, the two lines before the "puts" execute OK,
> neither of
> the setCellColor versions execute , both fail with
>
> `setCellColor'': table row out of bounds ,
2006 Apr 24
0
table.getItem(1,1).icon=ic
Helmut,
If I understand what you''re asking, I think the solution is to call
create() on ic2 before using it:
ic2.create
@table.getItem(1, 1).icon = ic2
If this does not solve your problem, please try to express your
question more clearly.
Hope this helps,
Lyle
On Apr 24, 2006, at 1:36 AM, Helmut Hagemann wrote:
> High
> ?
> i have trouble with FXTable
>
>
2004 Oct 18
0
DENY LIST ???
Hi,
More related to the mailing list than to LARTC, can you explain why each
time I send a mail to the mailing list lartc@mailman.ds9a.nl I get the
following (BTW, my mail is correctly diffused..) :
>>>>>>>>>>>>>>>>>
-----Message d''origine-----
De : Denis Sokolov [mailto:despot@ml.lv]
Envoyé : lundi 18 octobre 2004 21:40
À : EC
2010 Jun 29
1
[PATCH] virt-what.in: Added VMware virt detection using cpuid in wrapper script
Brief discussion thread - http://lkml.org/lkml/2010/6/29/355
Added VMware detection via cpuid.Mimic'd VMware's balloon driver's init-time
check(cpuid followed by dmi-checks). Moved the existing logic into a simple
function to achieve that.
Tested virt-what.in(ran as a script) and virt-what-cpuid-helper within
a Linux guest on ESX. Thanks.
Signed-off-by: Chetan Loke <loke.c at
2010 Jun 29
1
[PATCH] virt-what.in: Added VMware virt detection using cpuid in wrapper script
Brief discussion thread - http://lkml.org/lkml/2010/6/29/355
Added VMware detection via cpuid.Mimic'd VMware's balloon driver's init-time
check(cpuid followed by dmi-checks). Moved the existing logic into a simple
function to achieve that.
Tested virt-what.in(ran as a script) and virt-what-cpuid-helper within
a Linux guest on ESX. Thanks.
Signed-off-by: Chetan Loke <loke.c at
2009 May 27
1
PHP AGI Problems
(Accidentally posted this to asterisk-dev, should be here)
fgets is only returning one character... either when run as an AGI or
run as a test on PHP on CLI...
Example, enter 3333, then fgets returns '3'.
Also, GET DATA seems to be returning early and the loop keeps
prompting 'invalid'...
Any suggestions on how to improve my AGI class so it actually works?
Thanks.
[code]
2008 Aug 06
1
[2.6 patch] ocfs2/cluster/tcp.c: make some functions static
Commit 0f475b2abed6cbccee1da20a0bef2895eb2a0edd
(ocfs2/net: Silence build warnings) made sense
as far as it fixed compile warnings, but it was
not required that it made the functions global.
Signed-off-by: Adrian Bunk <bunk at kernel.org>
---
This patch has been sent on:
- 5 Jun 2008
fs/ocfs2/cluster/tcp.c | 44 ++++++++++++++++++++++++++------
fs/ocfs2/cluster/tcp_internal.h
2012 Oct 22
0
[LLVMdev] Section specialization & COFF.
On Mon, Oct 22, 2012 at 7:53 AM, r4start <r4start at gmail.com> wrote:
> On 20/10/12 03:15, Michael Spencer wrote:
>>
>> On Fri, Oct 19, 2012 at 2:55 AM, r4start <r4start at gmail.com> wrote:
>>>
>>> Hi all.
>>>
>>> While compiling next code
>>> @A = weak unnamed_addr constant { i32, i32, i32 } { i32 0, i32 0, i32 0