sorry, i can''t open the page: http://rubyonwindows.blogspot.com/2007/10/windows-xp-visual-style-controls-with.html so, can anyone send the content to me? thinks very much can put here or send me email: bencode@163.com -- Posted via http://www.ruby-forum.com/.
John Bentley
2009-Nov-26 12:50 UTC
[wxruby-users] how can i use windows xp style in wxruby
Ben Ben wrote:> sorry, i can''t open the page: > http://rubyonwindows.blogspot.com/2007/10/windows-xp-visual-style-controls-with.html > > so, can anyone send the content to me? thinks very much > > > can put here or send me email: bencode at 163.comThis is the meat of it. Copy the following text into a new text file. Save the file as "rubyw.exe.manifest" in your ruby/bin folder, the same folder that contains rubyw.exe. You might also save a copy to the same folder as "ruby.exe.manifest". <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.8.6.0" processorArchitecture="X86" name="Microsoft.Winweb.Ruby" type="win32"/> <description>Ruby interpreter</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" /> </dependentAssembly> </dependency> </assembly> -- Posted via http://www.ruby-forum.com/.