similar to: table.getItem(1,1).icon=ic

Displaying 20 results from an estimated 700 matches similar to: "table.getItem(1,1).icon=ic"

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 04
1
Button property not in FXTableItem for 1.2 ??
I''m using a table in an application, and it worked in 1.0 - but in 1.2 this line: @result_table.getItem(0,j).button=true gives this error: main.rb:91:in `display_result'': undefined method `setButton='' for Id:Fox::FXTableItem (NoMethodError) What am I doing wrong?? (Plus - it''s not in the RDoc anymore... where did it go?) -Rich
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"
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,
2006 Jul 17
4
Help with streaming audio...
I recently installed Icecast2 on my XP Home Laptop. My goal is to get the audio from my vhf/uhf scanner, whose audio out is connected to the laptop's mic port, out as a stream so I can listen to it when away from home (like from work). I can hear the scanner fine through the laptop's speakers, but although I've read the documentation for the Icecast2 server configuration, I'm
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
2003 Dec 10
1
Can't access remote server
RedHat 9, samba-2.2.7a-8.9.0. Fresh install. No iptables or any firewall settings. I can access my server fine locally with smbclient, but using smbclient from a machine located in a network I get this: [kwang@gorgon kwang]$ smbclient //webdev.ic2.org/home added interface ip=24.243.211.67 bcast=24.243.223.255 nmask=255.255.240.0 added interface ip=192.168.0.2 bcast=192.168.0.255
2006 Jul 17
0
Help with streaming audio...
Scott R Ehrlich wrote: > I recently installed Icecast2 on my XP Home Laptop. My goal is to get the > audio from my vhf/uhf scanner, whose audio out is connected to the laptop's mic > port, out as a stream so I can listen to it when away from home (like from > work). > > I can hear the scanner fine through the laptop's speakers, but although I've > read the
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
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
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:
2005 May 18
0
Re: FXTable possible bug
On Wed, 18 May 2005 23:12:03 +0400, Pavel Sokolov <elgato@rambler.ru> wrote : > I am still learning to deal with FOX and playing with different > widgets. I have encountered strange behavior of FXTable with regard to > style options. FXTable allows to resize rows and columns both w/ and > w/o options TABLE_ROW_SIZABLE, TABLE_COL_SIZABLE. This bug in FOX 1.2 was
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."?
2003 Sep 20
0
PR#2867
Full_Name: Mark MacLennan Version: 1.7.1 OS: Solaris 8 Submission from: (NULL) (216.17.17.197) Bug PR#2867 appears to still be occurring ... I am running Solaris 8 using gcc 3.3 and while running the tests for R 1.7.1 I get the following error message regarding Lapack routine dqeqp3 I don't know how serious an issue this is! Thanks for any help! Mark ----- running code in
2008 Sep 19
0
panel data analysis possible with mle2 (bbmle)?
Dear R community, I want to estimate coefficients in a (non-linear) system of equations using 'mle2' from the "bbmle" package. Right now the whole data is read in as just one long time series, when it's actually 9 cross sections with 30 observations each. I would like to be able to test and correct for autocorrelation but haven't found a way to do this in this package.
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 ,
2005 Nov 03
1
How to calculate errors in histogram values
Hi there, I'm new to R but I thought this is the most likely place I could get advice or hints w.r.t the following problem: I have a series of measurements xi with associated uncertainties dxi. I would like to construct the probability density histogram of this data where each density estimate has an associated error that is derived from the dxi. In other words, for large dxi the
2011 Jan 26
0
New package versions for distr- and robast- families
------------------------------------------------------------------------ ------------------------------------------------------------------------ New versions 2.3 of our distr-family of packages are now available on CRAN. (i.e.; startupmsg, SweaveListingUtils, distr, distrEx, distrDoc, distrEllipse, distrMod, distrSim, distrTEst, distrTeach) Most importantly, we have included: +
2011 Jan 26
0
New package versions for distr- and robast- families
------------------------------------------------------------------------ ------------------------------------------------------------------------ New versions 2.3 of our distr-family of packages are now available on CRAN. (i.e.; startupmsg, SweaveListingUtils, distr, distrEx, distrDoc, distrEllipse, distrMod, distrSim, distrTEst, distrTeach) Most importantly, we have included: +