You should check out Infra Recorder which is free:
http://infrarecorder.sourceforge.net/
or Ashampoo Buring Studio which costs $19.99 through this link:
http://r.ashampoo.com/mailings/1/070330_en.htm
You will get version 6 now and version 7 when it comes out later this month.
Search found 10 matches
- Sat Apr 07, 2007 2:24 am
- Forum: Off Topic
- Topic: CD/DVD burning software
- Replies: 17
- Views: 3078
- Tue Sep 26, 2006 3:18 am
- Forum: General Discussion
- Topic: XP Autologin
- Replies: 14
- Views: 2974
Edwin suggested a Sysinternals tools but didn't say which one. Here is a link to the program which may solve your problem:
http://www.sysinternals.com/Utilities/PsExec.html
It is very powerful and will allow you to run an app on a remote system with whatever credentials are needed.
http://www.sysinternals.com/Utilities/PsExec.html
It is very powerful and will allow you to run an app on a remote system with whatever credentials are needed.
- Wed Sep 06, 2006 3:33 am
- Forum: Off Topic
- Topic: my newest "music"..
- Replies: 22
- Views: 3422
- Sat Apr 17, 2004 3:17 pm
- Forum: Off Topic
- Topic: MoonRock (Basic for real DOS)
- Replies: 17
- Views: 16338
According to their website it's US$99 not $39, even the upgrade price is more at US$49.
http://www.powerbasic.com/products/pbdos/
http://www.powerbasic.com/products/pbdos/
- Tue Apr 13, 2004 3:13 am
- Forum: Announcement
- Topic: Huge Easter Egg: PureBasic 3.90 just eclosed !
- Replies: 31
- Views: 11161
- Sat Feb 21, 2004 3:42 am
- Forum: Off Topic
- Topic: free or cheap homepage: where?
- Replies: 9
- Views: 3024
You might want to check out http://www.iexpresshost.com for hosting. I use http://www.godaddy.com for domain name registration starting at $4.95 for a .biz name.
- Thu Dec 04, 2003 3:58 am
- Forum: Game Programming
- Topic: Irrlicht-3DEngine
- Replies: 26
- Views: 8458
You folks might want to take a look at the free Maya Personal Learning Edition for 3D graphics creation:
http://www.alias.com/eng/products-servi ... ndex.shtml
http://www.alias.com/eng/products-servi ... ndex.shtml
- Thu Nov 13, 2003 4:31 pm
- Forum: Off Topic
- Topic: MoonRock (Basic for real DOS)
- Replies: 17
- Views: 16338
Here is a DOS based web browser:
http://arachne.browser.org
and there are a few others listed here:
http://www.fdisk.com/doslynx/
http://arachne.browser.org
and there are a few others listed here:
http://www.fdisk.com/doslynx/
- Mon Oct 27, 2003 4:10 am
- Forum: Coding Questions
- Topic: PC sounds
- Replies: 5
- Views: 2172
You could use the Windows API using the Beep_ command:
Code: Select all
Frequency=500
Duration=500
Beep_(Frequency,Duration)
- Sat Sep 06, 2003 3:52 am
- Forum: Coding Questions
- Topic: Windows API Functions
- Replies: 5
- Views: 2173
Windows API Functions
I was recently converting a little loop speed test program from IBasic and looked for a way to get ticks. After a fair amount of searching I came accross the GetTickCount_() function. What I find troubling is that I cannot find anything in the documentation about this shortcut. Is there something ...