search for: showalt

Displaying 20 results from an estimated 35 matches for "showalt".

Did you mean: showall
2007 Mar 19
3
XML support needed
The latest version of Password Safe was compiled with a new version of Visual Studio: VC8.0. The program continues to install and run fine, but when it attempts to write it's configuration file at exit, Wine/Windows pops up a dialog window titled "Password Safe" with the text: ----------------------------------------------------------------------- "Unable to use a XML reader
2006 Jul 02
3
fixme:win:SwitchDesktop
I just installed Wine last night. First let me say: it's awesome! Much better than I supposed. I decided to try Wine because I've been trying to get file compat- ability between Linux and PasswordSafe, a great Windows password manager. I copied all the PasswordSafe files to their own directory in my $HOME so that PasswordSafe could write it's database. I cd to that directory;
2007 Mar 19
2
Upgrading software under Wine
I run several program under Wine. Two I'm especially reliant on are Password Safe, an open source password manager, and Dasher, a new interface for playing on the Internet Chess Club. Both these programs are being actively developed and are frequently upgraded. I always backup the previous version, then install the upgrade by running the installer, such as "wine
2007 Mar 19
1
fixme: How?
...Autotype" outputs 15 pairs of the following two lines: "fixme:keyboard:BlockInput (1): stub fixme:keyboard:BlockInput (0): stub" Being new to Wine, I could use some troubleshooting pointers. I'm hoping someone can put me on the path to solving one or both these glitches. Jim Showalter -- _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ _/ If I were two-faced, would I be wearing this one? _/ - Abraham Lincoln _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
2007 May 15
5
About a simple insert
Ok, my problem is that I have a form with a client''s information. Now in the form, I ask the client for his info, which inserts into the table "clients", and then I have another text input where he has to provide a specific detail that i want to be inserted into the table "details". How can I insert this data into 2 different tables? -- Posted via
2007 Oct 03
4
form_remote_tag :onsubmit not working.
Hi, Has anyone successfully implemented the :onsubmit option for form_remote_tag. It doesn''t seem to work for me. Is there any specific version of rails which is required for the same. Here''s my piece of code. <script> function set_tojid(){ alert(''onsubmit''); } </script> <%= form_remote_tag :update => '''', :url => {
2007 Oct 24
4
before_filter at the method level
I have used before_filter in the passed at the class level but can it be used in the method level. For example, I want to refuse a non-admin type from being able to delete anything in the entire application. Is there an easy way to do this? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the
2007 Jun 20
4
Remove session string from css and js file?
How do you remove the session string from the css and js file? I have already set the ApplicationController session :disabled => true Any suggestions or a site that already has this solution? Thank you, Nickmenow -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups
2007 May 11
5
options_for_select - how to set the selected value?
Ok, this should be simple but I am finding it''s not and previous postings don''t seem to shed too much light on this. I have a select_tag with 4 values pulled in via a helper: def filter_hours filter_hours = [ ["1 hour", 1], ["24 hours", 24], ["7 days", 168], ["14 days", 336], ] end The select_tag looks
2007 Nov 07
7
Help on loop
Hey, I have got a script that returns a long list of font family names, which I all want to store in a variable (array). I tried doing this with @f = font.family also in the for loop below but it only prints the last item when I want to display the results. require ''rubygems'' require ''RMagick'' include Magick for font in Magick.fonts puts font.family end
2007 Mar 19
1
EZ way to test Wine versions
Greetings! I'm looking for an easy way to test software under different versions of Wine. Is there a way to have more than one working version of Wine installed concurrently? I maintain two apps in the AppDB and have suffered a regression in one of them. So it would be really nice if I could easily switch back and forth between versions of Wine, without uninstalling/reinstalling. Cheers!
2006 Jul 02
1
puzzled
Just installed Wine for the first time last night, so am new here. Reading this news group while waiting for a reply to an earlier post, I notice that something like a third of the posts here are dupes or reposts. I've never seen this in a technical news group before. Is this a malfunction of the news client?
2007 Sep 17
8
DISTINCT?
This should be easy, but I''m stumped... class X < ActiveRecord::Base belongs_to :y end class Y < ActiveRecord::Base has_many :x end The y table has a column names. The x table has a column value. I want the list of values in x for the name "Location" in y. Yes, there are many repetitions. I can probably hack together an SQL statement to do this without too much
2007 Nov 06
2
passing a parameter only if not blank
I have this form tag: <% form_remote_tag :update => ''hotel-loyalties'', :url => { :action => ''make_hotel_loyalty'', :id => @user.id, :manager => @manager.id end } do -%> I only want to pass the @manager value if it is not blank. I tried: <% form_remote_tag :update => ''hotel-loyalties'', :url => { :action =>
2005 Oct 06
2
segmentation fault
greetings, running Centos 4.1 i386 on a poweredge 1800, will be trying x86_64 tomorrow since apparently the processors are EM64. anyhow, I'm having issues with this unit producing segmentation faults on practically everything. this is not an issue just with Centos 4.x, but also RHEL 3. so I resorted to RH9, but had other issues with hardware drivers. Today, I installed OS and
2007 Oct 16
2
Primary Keys enforcement vanishes in test database
I use this naming convention for primary keys: ActiveRecord::Base.primary_key_prefix_type = :table_name_with_underscore I generate the MySQL test database: rake db:test:prepare, and although the column is there there is no primary key enforcement/index and no autoincrement (so activerecord saves fail). Is this a bug? What is the best workaround? Alan
2006 Jan 27
2
CentOS 4.2 Install - Can't Surf Web
I just installed CentOS 4.2 on a system that was running RedHat 9. Now the browser (Mozilla Firefox) can't connect to web sites via their name (www.google.com <http://www.google.com/> ). It can however connect if the IP address is used (66.102.7.147). Also the 'dig' command times out with either the name or the IP address. Has anyone else seen this? Any pointers would be
2007 Jun 26
2
MySQL Where conditions automatic formatting
Hi, I''m having a problem with the automatic formatting of my mysql query. My code is this: Tablename.find(:all, :conditions => {:id => list}) Where list is a list of id''s (8,9,10) The problem is that the query is automatically formatted to this: SELECT * FROM Tablename WHERE (id in (''8,7,9'')) I need this query to run without the extra single quotes
2007 Oct 17
3
validates_presence_of validating twice?
I''m getting some weird behavior in one of my models. I have a model defined something like this class User < ActiveRecord::Base attr_accessor :password validates_presence_of :password end If I validate the model without specifying a password, I get ["can''t be blank", "can''t be blank"] for :password instead of just one "cant''t
2007 Aug 22
2
Sanitize my params and the create method
If I call .create on the param structure, are the parameters being passed to the create method automatically sanitized for me? e.g. Journalentry.create(param[:journalentry]) Do I have to worry about any malicious scripting making its way into the creation of the record? Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this