Search Results

Showing results 1 to 40 of 233
Search took 0.02 seconds.
Search: Posts Made By: Lord Soth
Forum: Game Development Feb 9th, 2009
Replies: 15
Views: 1,976
Posted By Lord Soth
Hi,

I agree with mps727 on RPG Maker and yoyogames game maker, also check http://www.kongregate.com/labs
Forum: Game Development Feb 9th, 2009
Replies: 7
Views: 1,030
Posted By Lord Soth
Hi,

Check NeoAxis http://www.neoaxisgroup.com/ but it may not be free.
Forum: Computer Science Feb 9th, 2009
Replies: 5
Views: 790
Posted By Lord Soth
Hi,

I want to ask some questions. What are the other numbers signify ? Are they heat values or a discrete enumeration like wall, empty space, heat source, etc..

Also can you give us an estimate...
Forum: Computer Science Feb 9th, 2009
Replies: 3
Views: 607
Posted By Lord Soth
Hi,

For Managed code use C# or Java Swing; for native code use Delphi or Visual C++
Forum: Computer Science Feb 9th, 2009
Replies: 2
Views: 822
Posted By Lord Soth
General answer :

compiler = lexer (lexical analyser) + parser + code generator
lexer = scanner (implemented usually as FSM) + tokenizer
compile process :
source code -> lexical analysis ->...
Forum: Geeks' Lounge May 10th, 2007
Replies: 32
Views: 5,320
Posted By Lord Soth
Which is worse having fire, stone and bile raining from the sky or having to debug obscure code for an obscure exception ? From which you can hide in a cave till it's over ? We simply are doomed.
...
Forum: Pascal and Delphi Apr 23rd, 2007
Replies: 3
Views: 3,951
Posted By Lord Soth
selectedword := words[random(high(MAX_WORDS))];

Assuming words array is 0 based like :

words : array [0..MAX_WORDS] of string;
Forum: Pascal and Delphi Jan 3rd, 2007
Replies: 7
Views: 3,535
Posted By Lord Soth
Hi,

One of the best resources on Delphi is the built-in help itself. It is more than a simple language reference.
http://www.crimsonksoft.com/delphihelp.GIF
Same is also valid for Visual...
Forum: Pascal and Delphi Jan 2nd, 2007
Replies: 4
Views: 9,781
Posted By Lord Soth
Writeln -> Write Line (to the console which is screen)
Forum: Windows NT / 2000 / XP Jan 2nd, 2007
Replies: 5
Views: 4,483
Posted By Lord Soth
Hi,




For unicast layer 4 (TCP or UDP) messages you should have no problem; for broadcast messages as you use a router it creates/divides separate broadcast domains. Unless you configure...
Forum: Windows NT / 2000 / XP Jan 2nd, 2007
Replies: 5
Views: 4,483
Posted By Lord Soth
Hi,




Actually Switches divides/creates collision domains not broadcast domains. Which means layer 2 broadcast messages (UDP is layer 4 but will come to that too) can pass through switches...
Forum: Windows NT / 2000 / XP Jan 2nd, 2007
Replies: 2
Views: 1,725
Posted By Lord Soth
Hi,

XP didn't have a Bluetooth stack of its own till SP2, and you had to use a 3rd party stack like widcomm which cames with dongle's CD. You can install SP2 or if you have it already it can be...
Forum: JavaScript / DHTML / AJAX Jan 2nd, 2007
Replies: 3
Views: 10,190
Posted By Lord Soth
Hi,

Use a transparent background circle image in gif or png format and create many image instance with javascript assigned to the smae source. You can even arrange their radius with using a...
Forum: C# Jan 2nd, 2007
Replies: 9
Views: 3,905
Posted By Lord Soth
Hi,

Your problem is reading and writing byte by byte. Instead you should read as big blocks (like 4KB each at least, as NTFS cluster size is this) XOR'em on the memory and write'em back as...
Forum: C# Jan 2nd, 2007
Replies: 3
Views: 13,665
Posted By Lord Soth
Hi,

Try using ExitWindows or ExitWindowsEx Win32 API calls with P/Invoke.

Loren Soth
Forum: C# Jan 2nd, 2007
Replies: 1
Views: 3,164
Posted By Lord Soth
Hi,

You can either use P/Invoke to access Win32 Api calls, it supports analog reading but I don't think it supports vibration. You better use Managed DirectX 9 classes to use DirectInput.
...
Forum: Pascal and Delphi Jan 2nd, 2007
Replies: 1
Views: 2,448
Posted By Lord Soth
Hi,

You can use Lazarus as an IDE with freepascal instead of dev-pascal (although I really like and recommend the bloodshed products and dev-c++). Lazarus is a pretty much Delphi like IDE with a...
Forum: Pascal and Delphi Jan 2nd, 2007
Replies: 7
Views: 3,535
Posted By Lord Soth
Hi,

try this :

edit6.text := edit1.text + edit2.text + edit3.text + edit4.text + edit5.text;

or even beter this :

edit6.text := '(url=' + edit2.text + '(b)' + edit4.text +...
Forum: Pascal and Delphi Jan 2nd, 2007
Replies: 4
Views: 9,781
Posted By Lord Soth
Hi,

Randomize just seeds the Random Number Generator (RNG) of Pascal/Delphi with the current time. You better put it as the first line of the code or before the first call to random() function....
Forum: Pascal and Delphi Jan 2nd, 2007
Replies: 12
Views: 3,882
Posted By Lord Soth
Hi,

It might sound off-topic too but all modern IDEs (Integrated Development Environment) incorporate a powerfull help which not only includes reference but also all kinds of tutorials. i.e. :...
Forum: Pascal and Delphi Dec 29th, 2006
Replies: 3
Views: 1,549
Posted By Lord Soth
Hi,

You need a resource editor like "Resource Hacker" which can show you the resource section (where icons, cursors and strings are stored in an EXE,DLL file) of an exe or a DLL file. Actually...
Forum: Geeks' Lounge Oct 19th, 2006
Replies: 32
Views: 5,320
Posted By Lord Soth
Hi,

So can we say that technology may become our problem and not our solution at some point in future ? We have witnessed a variety of grate disasters caused by accident (Chernobil, vehicle...
Forum: Pascal and Delphi Oct 17th, 2006
Replies: 10
Views: 13,627
Posted By Lord Soth
Hi,

Unless you need native (unmanaged) code support right now, there is no point in stopping your c# studies. Keep an eye on .Net 3 codename WinFX

Loren Soth
Forum: VB.NET Oct 17th, 2006
Replies: 8
Views: 51,446
Posted By Lord Soth
Hi,

PHP is a server side web scripting language where you don't have direct access to client side web controls like text and combo boxes. What you should do is to put <input> tags in a <form...
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 2
Views: 3,543
Posted By Lord Soth
Hi,

1.Try this :
writeln('Shopping List');
writeln('Product Price');
writeln(prod+' '+price);

2.Instead of :
read([something]);
readln;
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 2
Views: 4,218
Posted By Lord Soth
Hi,

FLV is a proprietary format and there isn't any component or API around to work with them natively although the format specs are published to some extend. You can convert the FLV to AVI...
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 1
Views: 3,986
Posted By Lord Soth
Hi,

1. It is possible. 2. Manually set the selection property to the text part for which you want to adjust font and use font property of selection of richedit. 3. Check the RichEdit Demo on...
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 10
Views: 13,627
Posted By Lord Soth
Hi,

I pretty much agree with borthwis. The Delphi line after version 7 and Kylix should be evaluated as a different family of IDEs and compilers. Although they support native code too, Delphi 7...
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 1
Views: 10,397
Posted By Lord Soth
Based on http://astronomy.swin.edu.au/~pbourke/geometry/insidepoly/
Converted to Delphi by Lord Soth
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 1
Views: 2,682
Posted By Lord Soth
Hi,

Attached is a Delphi code (Pascal Syntax) for checking wether a point lies within a polygon. You can also check my code snippets from the code snippets link or by clicking Lord Soth's...
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 1
Views: 1,374
Posted By Lord Soth
Hi,

a: array[1..1000] of ^integer; is an array of pointers to integer
a: array[1..1000] of integer; is an array of actual integers;
x: ^a; this would give an error unless those are all defined...
Forum: Pascal and Delphi Oct 15th, 2006
Replies: 1
Views: 3,243
Posted By Lord Soth
Hi,

You can use the FormatDateTime function to convert a TDateTime structure to a string with a formatting of your choice. While accessing database record fields use AsDateTime then FormatDateTime...
Forum: Geeks' Lounge Oct 15th, 2006
Replies: 32
Views: 5,320
Posted By Lord Soth
To clarify my position a little, I acknowledge that every technological innovation has a different "technological benefit" to "complexity cost" ratio; some are grately worth it, some are not worthy...
Forum: Geeks' Lounge Oct 15th, 2006
Replies: 32
Views: 5,320
Posted By Lord Soth
Simple dialectics assert that the presence of opposites relay on each other; but can we deduct from your answer that, if it is worth (due to our current conversation), we can also generalise it to...
Forum: C# Aug 29th, 2006
Replies: 5
Views: 7,140
Posted By Lord Soth
Hi,

Like libpcap (core of WinPCap I previously mentioned) libdnet also requires you to load a driver to your computer but different than libPcap it can drop packets, change routing tables or...
Forum: Pascal and Delphi Aug 29th, 2006
Replies: 5
Views: 3,819
Posted By Lord Soth
Hi,

http://www.microsoft.com/whdc/device/input/Scancode.mspx
http://www.glue.umd.edu/~nsw/ench250/scancode.htm

Loren Soth
Forum: C# Aug 28th, 2006
Replies: 3
Views: 2,421
Posted By Lord Soth
Hi,


void change(string s)
{
label1.Text = s;
}

private void button1_Click(object sender, System.EventArgs e)
{
Forum: C# Aug 28th, 2006
Replies: 3
Views: 21,699
Posted By Lord Soth
Hi,

If you have a specific XML schema, you can use a DataSet not bound to a database or connection and provide your own schema. This way you can use all data bound controls and table cursors and...
Forum: IT Professionals' Lounge Aug 28th, 2006
Replies: 15
Views: 5,607
Posted By Lord Soth
1. C++ : Object Oriented and improved version of C language. Has many implementations (compilers and IDE) like GCC(GNU), Borland C++ (DOS), Borland C++ Builder (visual,RAD), MS Visual C++

VC++ :...
Forum: C# Aug 28th, 2006
Replies: 21
Views: 11,878
Posted By Lord Soth
Hi,

First can an OS be coded in C# ? The answer is yes http://research.microsoft.com/os/singularity/ although it is pretty a proof of concept type of OS. Still it is one of the most fascinating...
Showing results 1 to 40 of 233

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC