Displaying 20 results from an estimated 300 matches similar to: "radiobuttons are weird in 1.2.x series"
2012 Jan 30
1
Visual Basic game
I'm trying to launch a visual basic game,i have all the neccesery libraries installed. On launch i get this
Code:
err:ntdll:RtlpWaitForCriticalSection section 0x7bcbf8e0 "../../../wine/dlls/ntdll/loader.c: loader_section" wait timed out in thread 003c, blocked by 0034, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x78037130 "?" wait timed out in thread
2004 Jul 22
0
Re: FXRuby and Threads (was: radiobuttons are weird in 1.2.x series)
*********** REPLY SEPARATOR ***********
On 22/07/2004 at 14:01 lyle@knology.net wrote:
>On Thu, 22 Jul 2004 14:47:47 +0100, "Bil" <bil.bas@virgin.net> wrote :
>
>> Err, well it does work, though it does not require the background thread
>to run very fast at all. The application is a prototype of a board-game
>engine. The server is a regular threaded Ruby
2008 Nov 11
3
FXTextField and number of digits after decimal point
Hello,
Here''s the context:
I read a number either pure integer or float with eventually up to 12
digits after the decimal point from a YAML file.
The number is injected into a FXTextField with the following code:
@value_sel = FXDataTarget.new(@value.to_s)
@value_value = FXTextField.new(@matrix_mem_value, 20, at value_sel,
:opts =>TEXTFIELD_NORMAL|JUSTIFY_RIGHT,
2005 Dec 30
2
Radiobutton onclick
Hi,
I would like to make a simple html which displays the contents of a
table from a database. So I put radiobuttons near the titles of the
columns to note and do a sorting by that column. But I don''t know how
to implement that the clicking on one of the radiobuttons make the
sorting. The problem is the view part. How to give a radiobutton to
make some action on a click by the helper?
2008 May 23
4
problem with non-focused fxruby gui freezing or blanking out.
I find that when a running fxruby program looses focus or another window is
placed in front of it, when the fxruby window regains focus, many times the
gui is now frozen or blank.
This seems to happen especially frequently when the window covering it is a
java or fox based application.
Usually it comes back but sometimes it takes several minutes to do so.
I would really like to find someway
2008 Feb 28
5
FXColorDialog slow UI update
Hi Lyle,
I have noticed a very small problem with the FXColorDialog class: when
changing the color with the color wheel, it takes quite a long time
(until 4 seconds, sometimes less) for the other panels of the dialog to
synchronize.
The opposite is also true: when changing the color with the sliders, it
may take sometimes until 4 seconds for the color wheel to reflect the
change.
2007 Sep 19
2
list of checkboxes, radiobuttons
Hello,
I need a help for simple problem:
i have a model Post, and i have a variable @posts = Post.find(:all)
how i can create a list of checkboxes and radiobuttons for this array of
posts and get selected checkboxes, radiobutton when submit form?
Thank you
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2008 Jan 02
3
Submitted a patch, got pluses, what now?
Hello Rails people,
I submitted a patch recently to get rid of an annoying exception raised when
an AR
object is created - http://dev.rubyonrails.org/ticket/10556 , had some
people review it,
got some pluses... What am I supposed to do now?
Can anybody advise or just review the patch and take care of the issue?
Thanks!
--
Best regards,
Yuri Leikind
2001 Sep 19
2
tcltk: Difficulties creating menus
I am struggling with adding menus to a tcltk application. The following
example (from the O'Reilly book on Perl/Tk) works fine:
#!/usr/bin/perl -w
use Tk;
my $mw = MainWindow->new;
$menub = $mw->Menubutton(-text => "Color")->pack();
foreach (qw/red yellow green blue grey/) {
$menub->radiobutton(-label => $_, -command => \&set_bg,
2009 Oct 05
11
Unable to install plugins from github
Hi All,
My operating system is FC11...I tried to install will_paginate from
github directly like this -
script/plugin install git://github.com/mislav/will_paginate.git
But I get an error saying
[ckkashyap@KingCobra test_plugin]$ script/plugin install
git://github.com/mislav/will_paginate.git
Plugin not found: ["git://github.com/mislav/will_paginate.git"]
I have git on my machine - I
2006 Sep 25
1
ActiveRecord instead of direct sql execution
Hi all,
I have 2 tables and a standard one-to-many association.
How do I substitute the following sql with ActiveRecord calls so that
it uses just one sql statement:
update geo_entities set terminal_id = 3 where id = 10 or id = 23
or id = 87;
Thank you!
Regards,
Yuri Leikind
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to
2005 Dec 29
0
Newbie: Radiobutton onclick
Hi,
I would like to make a simple html which displays the contents of a
table from a database. So I put radiobuttons near the titles of the
columns to note and do a sorting by that column. But I don''t know how
to implement that the clicking on one of the radiobuttons make the
sorting. The problem is the view part. How to give a radiobutton to
make some action on a click by the helper?
2007 May 10
5
Pagination has many through problems
I have searched for days for an example that demonstrates what i would
like to do, and this morning i thought i''d worked it out, but
no....here''s what i have:
Controller
==========
class ProfilesController < ApplicationController
def friends
current_user.profile.friends
end
def list_friends
@profile_pages, @profiles = paginate( friends, :per_page => 10)
end
end
2009 Apr 09
7
Test: patch to add adva,ced d3d settings in winecfg
Hello everybody...
My patch to add advanced d3d settings in winecfg is almost ready.
In fact, i only have to figure out how to detect video memory size to
display it when no key is set to force it or to reset. Stefan D told
me to use DirectDraw, but i wouldn't find.
So that is the last thing (except some better naming...) to do for this patch.
Everything works well and i would like some
2006 Nov 29
5
wxSugar control problem
I''m using wx_sugar 0.1.2 with wxruby2-preview 0.0.37 on OSX and am
coming up with an error when trying to create a SpinCtrl (and quite a
few others have exactly the same prob.):
#file date_picker.rb
class DatePicker < Wx::Dialog
def initialize
super(nil, :title => "Pick a date...")
@cal = Wx::CalendarCtrl.new(self)
add(@cal)
#works fine up to
2000 Sep 28
1
tcltk package functionality
Hello,
I wrote a function in R which uses tcltk package .... essentially I wanted
to give within that function, a widget with 2 radiobuttons to choose
between plotting Precip and Temperature plots. After the user has chosen
one of the radiobuttons there is another widget that asking him to identify
outliers. However, I am having a lot of problems...what R does is evaluate
the whole function
2008 May 08
1
Eager loading of association extensions
Hello all,
Is it possible to do eager loading of association extensions?
That is, the following code produces one SQL query:
cat = ProductCategory.find(:first, :include => :pricing_rules)
cat.pricing_rules
But if in ProductCategory I have an association extension like this:
has_many :pricing_rules do
def applicable()
find(:all).select(&:applicable?)
end
end
the
2011 Jul 22
1
tcltk
Hello, I am trying to build some dialog boxes but I am having problems. I'm using R-2.13.1 in Windows 7
I want to have 4 numerical entry boxes and 3 radiobuttons in a row ( 4 rows) for entry data
and 2 rows for output with a button for 'compute' and another for ;quit'
Can somebody indicate a tutorial or an example with similar type of dialogs?
Thanks
R.Heberto Ghezzo Ph.D.
2006 Sep 10
2
Issue with radiobutton and remote_function in IE.
Hi there!
I did implemented the radio button with remote_function to update some
div via RJS.
It works perfect with FireFox, but behaves weird with IE. When I click
the radio button
it loads data (I see the indicator showing) but not updates the div with
info until I click
left mouse button anywhere.
It''s weird =(
Here is the snippet from .rhtml code
<td>
2007 Oct 23
1
simple data.frame question
Hi,
At first I have to admit that I'm quite new to R and need some basic
information. Although I searched the internet and this forum where I found
answers to really sophisticated questions, I couldn't find the answer to my
really simple one - or I didn't understand it for English is not my
mothertongue.
I'm using Rpad to simulate a webserver on my PC. Further I've got an