Search found 44 matches

by roytam1
Fri Aug 18, 2023 9:49 am
Forum: General Discussion and Feedback
Topic: Best web browser for ROS is Mypal?
Replies: 29
Views: 32359

Re: Best web browser for ROS is Mypal?

From now on it will be New Moon 28.
by roytam1
Fri Mar 15, 2019 5:30 pm
Forum: Development Help
Topic: shell32 addons
Replies: 5
Views: 6361

Re: shell32 addons

//SHELL32.755 #define CSIDL_FLAG_DONT_VERIFY 0x4000 __declspec(dllexport) BOOL WINAPI PathIsEqualOrSubFolder(LPCWSTR path1, LPCWSTR path2) { wchar_t path3[512]; int len,len2; if (!path2) return FALSE; if(((DWORD)path1&0xffff0000)==0){ SHGetFolderPathW(NULL,CSIDL_FLAG_DONT_VERIFY| (DWORD)path1,N...
by roytam1
Sun Jun 19, 2011 2:49 am
Forum: General Discussion and Feedback
Topic: Where can I download CMake builds?
Replies: 3
Views: 1988

Where can I download CMake builds?

As there is many changes between legacy rbuild builds and CMake builds, where can I get the CMake builds?
by roytam1
Tue May 10, 2011 11:28 am
Forum: General Discussion and Feedback
Topic: freeldr can be chainloaded by Grub4DOS
Replies: 18
Views: 13440

Re: freeldr can be chainloaded by Grub4DOS

You guys keep seeming to forget that the OS needs to know how to talk over USB in order to run off a USB drive. Once the OS is up, there are no other intermediaries between it and the hardware. There is nothing else sitting between the USB interface and the OS that will magically translate USB to p...
by roytam1
Sat May 07, 2011 9:46 am
Forum: General Discussion and Feedback
Topic: freeldr can be chainloaded by Grub4DOS
Replies: 18
Views: 13440

Re: freeldr can be chainloaded by Grub4DOS

nicamarvin2005 wrote:Who uses DOS in this day and age?
Don't be fooled by the string "DOS" in the name.
For details, please visit:
http://en.wikipedia.org/wiki/Grub4dos#Variants
http://reboot.pro/14/
by roytam1
Mon Apr 25, 2011 7:04 am
Forum: General Discussion and Feedback
Topic: [TESTING] Developer request: UNIATA
Replies: 26
Views: 22987

Re: [TESTING] Developer request: UNIATA

I burn the iso to cd but it can't boot. I read FAQ it tell me SATA cd driver is not surpport, maybe this is the reason. so, I make a grub4dos bootable usb disk, and use grub to boot livecd iso file. The livecd iso file boot start success, load uniata.sys and other xxxx.sys ok, but, it print "t...
by roytam1
Mon Nov 30, 2009 2:31 pm
Forum: ReactOS Website discussion
Topic: Wiki FUN Section moved.
Replies: 9
Views: 20027

Re: Wiki FUN Section moved.

I got HTTP 403 on both sites.
by roytam1
Sat May 16, 2009 2:33 am
Forum: General Discussion and Feedback
Topic: 1:1 MSPaint clone - not ? but !
Replies: 411
Views: 165597

Re: 1:1 MSPaint clone - not ? but !

but i hate it that it has no transparency support The original windows API did not support alpha transparency. Although there are extensions today, the internal image is a 24 bit bitmap. (Therefore no transparency support) Since the only file format Paint for ReactOS supports is windows bitmap and ...
by roytam1
Sun May 03, 2009 4:58 am
Forum: General Discussion and Feedback
Topic: 1:1 MSPaint clone - not ? but !
Replies: 411
Views: 165597

Re: 1:1 MSPaint clone - not ? but !

I don't like ribbon's concept at all but if you really want a ribbon control, we can have a poor man's ribbon control like this (demonstrated with VB6):
[ external image ]
by roytam1
Thu Mar 19, 2009 3:26 am
Forum: General Discussion and Feedback
Topic: 1:1 MSPaint clone - not ? but !
Replies: 411
Views: 165597

Re: 1:1 MSPaint clone - not ? but !

void Line(HDC hdc, short x1, short y1, short x2, short y2, int color, int thickness) { HPEN oldPen = SelectObject(hdc, CreatePen(PS_SOLID, thickness, color)); MoveToEx(hdc, x1, y1, NULL); LineTo(hdc, x2, y2); DeleteObject(SelectObject(hdc, oldPen)); } It has to be somewhere in here. I just do not s...
by roytam1
Tue Jan 20, 2009 5:16 pm
Forum: General Discussion and Feedback
Topic: 1:1 MSPaint clone - not ? but !
Replies: 411
Views: 165597

Re: 1:1 MSPaint clone - not ? but !

be59 wrote:I know, i addle the adour about the paint clon, but the new paint(under Windows 7) use Ribbon.
It is not a long time to support Ribbons.
No Ribbon UI please.
if you ask why, please look this:
http://www.blog.cadnauseam.com/2008/06/ ... he-ribbon/
by roytam1
Sun Nov 02, 2008 11:34 am
Forum: General Discussion and Feedback
Topic: Port program to install ROS Iso on an USB drive?
Replies: 8
Views: 5652

Re: Port program to install ROS Iso on an USB drive?

All we need is BIOS INT 13 enabled storage driver.
With BIOS USB Disk emulation, we can treat USB Pen Drive or USB external disk as normal IDE harddisk.
by roytam1
Sat Oct 18, 2008 1:11 pm
Forum: General Discussion and Feedback
Topic: mc (Midnight Commander) shold add to Download!
Replies: 10
Views: 5832

Re: Where is "far"?

when i search for "far" in the tree of my local svn repository, i only find this: linux:~> find svn/ | grep far svn/reactos.org/trunk/reactos/dll/win32/kernel32/nls/far.nls svn/reactos.org/trunk/reactos/dll/win32/kernel32/nls/.svn/prop-base/far.nls.svn-base svn/reactos.org/trunk/reactos/d...
by roytam1
Tue Oct 14, 2008 3:08 am
Forum: General Discussion and Feedback
Topic: Ext2 and other FileSystem Driverachitecture
Replies: 10
Views: 4198

Re: Ext2 and other FileSystem Driverachitecture

EmuandCo wrote:Well we already have a working EXT2 (3??) Driver in our tree, but maybe some other FS Drivers would be nice
maybe BFS?
but I think people want NTFS. :roll: