Displaying 20 results from an estimated 1100 matches similar to: "installation of "Civ 4", "Matrix: Path of Neo", etc."
2006 Aug 17
1
Avast Professional Edition 4.7 & Wine 0.9.19
crashes really soon:
fixme:advapi:SetEntriesInAclA 1 0x337914 0x1835e4 0x3378f8
wine: Unhandled page fault on write access to 0x000000ae at address
0x7bc361ff (thread 000e), starting debugger...
I know: It's a little bit crazzy to test an anti virus app in wine but
why not? :)
2006 Aug 13
2
Star Trek Armada 2
I tried to install and play Star Trek Armada 2 (DirectX 8.0a) with Wine
0.9.19. No Winetools or so were used. Just plain wine. Installation
worked fine. I just rejected to install DirectX 8.0a.
Starting was without sound, but with movie sequences. Then it stopped.
Any suggestions what to do?
Here the reports:
installation:
err:ole:CoGetClassObject class
2006 Sep 28
4
PowerDVD 4.0: unimplemented function MFC42.DLL.6467 called in 32-bit code
I was able to install PowerDVD 4.0 by overriding mfc42.dll. So I could
close bug 6067.
Trying to run it I get:
Unhandled exception: unimplemented function MFC42.DLL.6467 called in
32-bit code (0x7bc37f38).
What should I do with this info? Open somewhere a bug? Is it a non-Wine
bug? Googling for it gives that some other people had problems with it
(see
2006 Aug 22
1
Star Wars Battlefront 2: can't type the code in
On trying to install "Star Wars Battlefront 2", the installation arrived
at the point where the code has to be typed in. Unlike an other game,
the cursor blinks but neither a text appears nor is the code accepted.
The problem seems to trivial for me to open a bug. And anyway I opened
too many bug entries. :) So I ask here.
Has any one experienced a similar problem ?
In the
2006 Aug 13
1
Eclipse 3.2 with JVM 1.5.08
(Yes, I know that there's a version for Linux. I'm even using it!)
here the bug report for a simple start:
bojan@linux:~/Desktop/Downloads/eclipse> wine
/home/bojan/.wine/drive_c/Program\ Files/Java/jdk1.5.0_08/bin/java -jar
startup.jar
fixme:msg:PeekMessageW PM_QS_xxxx flags (0040) are not handled
fixme:oleacc:CreateStdAccessibleObject 0x2003a -4
2006 Aug 30
7
How to get it running...
Hello List,
i have a spelling and reading software i would like to get running for a
primary school because they should not be using windows and the teachers
really want that software.
I have already tried to get it running with a few people in #winehq, but
it seems that its more a guessing game than a streight debugging and
solving way.
What steps do i need to do to get it running?
First of
2006 Jan 11
10
Recommend server for developing RoR on win
Hi all,
can you recommend me which web server config to use for developing rails
on windows machine. I tried webrick, which is good but it''s annoying
because console window is in taskbar for every site running and it have
to be started manually. Apache with CGI is to slow and using FastCGI on
the other side brings me lot of problems, like randomly not working RoR
sites.
Any help is
2006 Mar 23
8
DRY principle - how to implement?
Hi all!
I have ''send_status'' table which looks something like these:
id code title
1 sent Sent
2 error Sending error
3 success Success
Next I would like to associate some processed records with their
''send_status''. Is it better to use:
1)
record.status_id = SendStatus.find(:one, :condition => "code=''sent''").id
to
2006 Jun 02
3
Advice, why value_before_type_cast in FormHelper?
I am wondering why is in creating text fields with form_helper used
value_before_type_cast instead of attribute value for field value?
I set rails enviroment so date fields are in european format
(dd.mm.yyyy) and would like to have same format in forms, but because of
value_before_type_cast is called, form fields are filled with
''yyyy-mm-dd'' or timestamp integer, etc.
2006 Jun 21
5
module and cache/restarting server
Hello,
It seems I need to restart webrick everytime I modify a module in order
for my modifications to be taken into account. Is this normal and is
there a workaround?
Regards,
--
----------------------------------------------------------------------
Yannick Majoros http://www.inma.ucl.ac.be/~majoros
Informaticien UCL/INMA-MEMA
4, avenue G. Lema?tre
B-1348 Louvain-la-Neuve
Tel:
2010 Dec 31
4
Repeated Indexing / Sequence Operation
Hi Everyone,
quick question before the end of the year.
I have soem indices to select data from a bigger sample. I want to select n
days before each index and n days after the index. Any clever way to do it.
A for loop would do but I wanted to know if there is a moreR-friendly way to
approach this
Example
# InitialIndices
i2 = (90, 190, 290)
# Indices I want to end up with
i3 = c(85, 86, 87,
2006 Jul 26
7
RHTML in database?
Hi,
is it possible to store RHTML templates or partials in database?
thanks,
Bojan Mihelac
--
Bojan Mihelac
Informatika Mihelac, Bojan Mihelac s.p. | www.informatikamihelac.com
-> tools, scripts, tricks from our code lab: http://source.mihelac.org
2006 Feb 02
3
What is best way to show only records belonging to logged user?
Hi all,
What is best way to show only records belonging to logged user? I
understand that it is better to handle this in model and not controller.
I am thinking of intercepting find methods in model and add clause
something like "WHERE id_user = #{user_id}". I would like to hear if you
would do it likewise and if yes is it better to hack find_by_sql() or
find() method?
thanks in
2004 Oct 10
3
R 2.0.0 not suffisantly reliable to be be used
After wasting one whole day, I've finally decided to stay with 1.9.1,
some problems have been reported to R-Bugs.
For occasional users, I would say, there's no worst thing than that:
you installed the new release, and soem of your existing codes no
longer work !
--
Fan
2006 Mar 23
11
Contact page
Hi
I have justed started using Rails.
How do I create a contact page. By this I mean one with a contact form
etc.
Thanks
--
Posted via http://www.ruby-forum.com/.
2010 Apr 05
2
find the "next non-NA" value within each row of a data-frame
#I wish to find the "next non-NA" value within each row of a data-frame.
#e.g. I have a data frame mydata. Rows 1, 2 & 3 have soem NA values.
mydata <- data.frame(matrix(seq(20*6), 20, 6))
mydata[1,3:5] <- NA
mydata[2,2:3] <- NA
mydata[2,5] <- NA
mydata[3,6] <- NA
mydata[1:3,]
#this loop accomplishes the task; I am tryign toi learn a "better" way
for(i
2010 Jun 25
2
Civ 4 patch help?
Hello. I'm following the instructions on how to install Civ 4 on my Ubuntu system. I've had it working perfectly in the past, but this time I come to a stop every time I try to patch to 1.74. The patch installer doesn't recognise that I have an existing installation of Civ on my system.
Sorry to be a pain in the arse, but I can't remember if this happened before and if it did how
2006 Feb 11
4
Timesheet application for Rails
Hi all,
I am looking for some time tracking software for our small company. Does
anyone knows if such project on rails exists? I need simple
functionality such as recording spent time for employees and managing
projects or tasks. Ideally, it would be possible to integrate it into
Instiki and to some existing database. There are some other solutions,
but it seems to me that RoR would be ideal
2008 Dec 10
1
Installing Civ 3
I tried to install Civ 3 the other day. I think I might have got it installed right. Then when i went to run it, it did not work properly while detecting the cd in the cd rom tray. I figured i would ask this question to see what everyone thinks.
Could it be that Civ 3 does not run due to the speed of the cd while running "through" wine?
Im pretty sure that Civ3 requires a specific read
2006 Jun 20
3
return unique rows with finders
I''m looking through the api for something like find(:all, :distinct => true)
so that multiple instances of a row won''t be returned - is this possible?
Thanks!