similar to: UXTheme and Vista Styles potential problem

Displaying 20 results from an estimated 2000 matches similar to: "UXTheme and Vista Styles potential problem"

2011 Aug 28
3
visual theme regression (?)
I use a visual theme (msstyles) that matches the UI of Windows programs to my distribution. However since Wine 2.3.26, many parts of the theme are shown black (probably png images). This happens with any msstyles themes. Is this bug already known? I searched in bugzilla, but couldn't find anything about uxtheme.dll etc.
2012 Feb 23
1
Re: UXTheme and Vista Styles potential problem
Any news? Now with the new DIB engine, this topic gets a new meaning: http://markmail.org/message/42t5azci4j5pcskq
2010 Aug 20
1
[Wine 1.3] Desktop integration with .msstyles
.. doesn't work for me. I'm running a fresh Ubuntu 10.04 with wine 1.3. If I open the desktop integration tab an try to install a theme the winecfg hangs. Installing a theme to windows/resources/themes doesn't help - it is not show in the list of themes after a restart ... Any suggestions ? So long LastCoder
2013 Jun 10
1
Help with R loop for URL download from FRED to create US time series
I am downloading time series data from FRED. I have a working download, but I do not want to write out the download for all 50 states likes this: IDRGSP <- read.table('http://research.stlouisfed.org/fred2/data/IDRGSP.txt', skip=11, header=TRUE) IDRGSP$DATE <- as.Date(IDRGSP$DATE, '%Y-%m-%d') IDRGSP$SERIES <- 'IDRGSP' IDRGSP$DESC <- "Real Total Gross
2011 Sep 05
3
msvcp80.dll...
Hi, since the Wine 1.3.27 update (on Ubuntu), some applications don't start anymore, especially Google SketchUp. A window pops up immediately saying that the program has to be closed. This happens with programs that depend on msvcp80.dll. I tried all combinations of native/built-in etc. Then I rebooted and created a completely new empty prefix and even Wine's iexplore.exe does not start.
2006 Feb 27
2
Tried to load a theme, didn't work. No error message.
I searched every wine forum and wiki I could find, but there's no information on wine theming. I downloaded an *.msstyles file, and opened it with winecfg (Desktop Integration->Install theme...). Nothing changed. The style I selected didn't even get added to the list - the only option is still "(No Theme)". There was no error message. wine 0.9.8 This is the style I tried:
2008 Apr 23
8
The single major remaining Wine complaint everyone makes...
So Wine's main problem right off the bat, the big elephant in the room nobody really talks much about, is that its *apperance and performance in 2D apps is abysmal. It's odd, because 3D apps (after a small framerate drop) perform just fine. Maybe there's some technical explanation as to why 2D applications feel so sluggish by comparison, but that's not what I'm here to discuss.
2007 Nov 28
3
Question about Vista Pro
Hi Everyone, recently i installed Vista professional on our xen machine. The installation ran fine however the networking for the machine would not work. we were able to install network drivers for the machine and in tcpdump we could see the arp requestes being sent and recieved from the vista instance but otherwise could get no other networking working on the machine. has anyone else come up
2012 Jan 24
1
[Offtopic] menus of Windows applications
Hi, I'm curious how feasible would it be to make menu commands of Windows applications available over DBus? It would give endless possibilities if Windows applications could join GTK/QT/XUL/Java applications that share there functionality to be implemented a various innovative ways (Gnome Shell menu, Unity app menu, HUD). I see that it might not be trivial because Windows programs are
2011 Nov 11
1
Window positioning is messy
When a window or a dialog of an application opens, it is automatically positioned somewhere on the screen (for example somewhere in the center). In current Wine and Ubuntu Oneiric (I can't tell for other distributions), child windows of automatically positioned windows appear offset, often at [0,0] in the top left corner of the screen. This is not too much annoying for tool windows, but it is
2012 Feb 11
2
1.4rc2: delayed redraw of 3d app
Since 1.4rc2, Google SketchUp does not immediately redraw the 3d drawing area, but only after the view has been invalidated another time. That means SketchUp starts with black screen until you force it to update the view (by moving, resizing the window or orbiting or panning the view). This is also noticeable when you click, double-click or triple-click an object in order to select it: The object
2007 Jan 18
2
[LLVMdev] Eliminating dead copies
Maybe it's because I've got a lot of two machine operand instructions and have to rely on the tied-to constraint, but I'm seeing a lot of dead reg-to-reg copy instructions, e.g.: ori $3, $3, 0 (Cell SPU's version of reg-to-reg copy, looks a lot like PPC, no?) Is there any way I can detect when this occurs, or is there code where this detection takes place in the target to which
2020 Feb 25
0
Replication failing with Win 2012 R2 (maybe)
Hello All, WIndows DC reports (not for the entire directory, just a portion. See outputs below). "The replication operation failed because of a schema mismatch between the servers involved.? I suspect the error is a red herring. Running several Samba DCs at multiple sites. Version 4.11.6-Debian from Louis?s repo (on Ubuntu 18) ?vdcw00? is the Windows 2012 R2 server ?cdcx15? is the Samba
1998 Nov 18
5
PC Backup Script?
I am trying to setup my Sun running samba 1.9.18p10 so that it can backup my dept's PCs. I can get it to work manually using the smbclient command with no problem. What I would like to do is have a script that is able to take a list of PCs, determine if a PC is online, backup that PC, then move on to the next one. If a PC is down, it can report an error to the admin to state that the
2002 Nov 11
2
Thank you!
Dear Shorewall developers, Thanks very much for shorewall! I''ve been using Shorewall as distributed with Debian GNU/Linux (Woody) for a while on a few firewalls I manage and found it extremely easy to install, setup and use. I liked the nice and easy to understand design of the whole package, the documentation, well documented config files and how well it runs. I just thought
2007 Jan 18
0
[LLVMdev] Eliminating dead copies
On 1/18/07, Scott Michel <scottm at rushg.aero.org> wrote: > Is there any way I can detect when this occurs, or is there code > where this detection takes place in the target to which I can > refer? have you implemented InstInfo::isMoveInstr to recognize those? The register allocator uses that to find copies it can remove. Andrew
2008 Dec 12
0
[LLVMdev] i1 promotion issue (again)
On Fri, Dec 12, 2008 at 11:42 AM, Scott Michel <scottm at aero.org> wrote: > The alternative is to do fairly deep inspection of brconds to eliminate the > truncate, which eventually gets expanded into: > (i8:sext_in_reg (i8:truncate (i32:setcc ...))) Have you tried implementing computeMaskedBitsForTargetNode for your setcc nodes? If you have, I think DAGCombiner should take care
2009 Jan 20
0
[LLVMdev] Shouldn't DAGCombine insert legal nodes?
On Mon, Jan 19, 2009 at 6:36 PM, Scott Michel <scottm at aero.org> wrote: > I just ran across something interesting: DAGCombine inserts a 64-bit > constant as the result of converting a (bitconvert (fabs val)) to a > (and (bitconvert val), i64const). > > The problem: i64 constants have to be legalized for the CellSPU > platform. DAGCombine is doing the right thing but
2001 Mar 20
1
Cannot resolve hostname on Windows2000
Hi, When I map directory using samba o nour Windows 2000, I have to type in the IP address of the samba server or the complete domain name; i.e, host.lmsw.lmco.com. I can't just type in the hostname; i.e. host. Your help is very much apreciated. Thanks Aissa Char Lockheed Martin Aero
2008 Dec 31
0
[LLVMdev] "grep -w" irregularity
2008/12/30 Scott Michel <scottm at aero.org> > Not entirely sure how to categorize this particular problem, but it's > clearly platform test related: "grep -w" appears to operate > differently on the x86_64 linux buildbot versus my local Mac OS > 10.4.11 and Ubuntu x86_64. In the CellSPU's shift_ops.ll test case, > "grep -w shlh" returns the