User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 397,820 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,566 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 500
Search took 0.05 seconds.
Posts Made By: Killer_Typo
Forum: C# Feb 19th, 2008
Replies: 5
Views: 526
Posted By Killer_Typo
Re: exe gives error message when executed on other machines........

I really don't think he's given enough information for anyone to try and say what the error is.

considering the .NET framework is automatically downloaded on newer OS's and in fact comes...
Forum: C# Feb 16th, 2008
Replies: 5
Views: 526
Posted By Killer_Typo
Re: exe gives error message when executed on other machines........

while that may be, we cannot assume that it's due to that. we need more information, such as the error he is getting.
Forum: C++ Feb 5th, 2008
Replies: 16
Views: 1,154
Posted By Killer_Typo
Re: Which C++ complier to use

you dont need to use the visual studio environment for .NET but it sure does make coding a hell of a lot easier :P
Forum: C++ Feb 4th, 2008
Replies: 3
Views: 222
Posted By Killer_Typo
Re: Who can?

post up some of your source and the exact issues are that you are having.
Forum: C++ Feb 4th, 2008
Replies: 10
Views: 509
Posted By Killer_Typo
Re: How will i start

fastest/funnest way (for me at least):

find a friend or ask your parents for a very simple program that they would like to see

* Temperature calculator
* Recipe Program (for saving drink...
Forum: C++ Feb 4th, 2008
Replies: 16
Views: 1,154
Posted By Killer_Typo
Re: Which C++ complier to use

I use Microsoft Visual Studio Professional

if you are just starting out i would recommend the express versions.

I've dabbled around in other IDEs and with other compilers but i happen to like the...
Forum: C# Jan 25th, 2008
Replies: 8
Views: 586
Posted By Killer_Typo
Re: UI techniques

well the developers at microsoft have years and years of experience in UI design, and are more then likely NOT using C# or the .NET framework to develope applications for their OS.

with time and...
Forum: C++ Nov 30th, 2007
Replies: 7
Views: 607
Posted By Killer_Typo
Re: Just a lil fun

cool because i like starwars otherwise i am not sure of it's purpose.
Forum: C++ Nov 30th, 2007
Replies: 4
Views: 1,128
Posted By Killer_Typo
Re: Negative Random Numbers

you could however generate positive values and multiply by -1 :)
Forum: C++ Nov 30th, 2007
Replies: 3
Views: 932
Posted By Killer_Typo
Re: comparing char with constant char

Aside from the major syntax and naming issues:

thats because your array of 20 looks like


Rudolf00000000000000
--------------------

// each 0 is actually a null character
Forum: C# Oct 31st, 2007
Replies: 6
Views: 1,299
Posted By Killer_Typo
Re: c# Console

check out http://support.microsoft.com/kb/319257

it really should be as simple as Console.Clear()
Forum: C# Oct 31st, 2007
Replies: 6
Views: 1,299
Posted By Killer_Typo
Re: c# Console

why not give it a shot ;)

System.Console.WriteLine("hello world");
System.Console.clear();
System.Console.WriteLine("Hello world again");

give it a shot.
Forum: C# Oct 31st, 2007
Replies: 6
Views: 1,299
Posted By Killer_Typo
Re: c# Console

System.Console.Clear();
Forum: C++ Oct 5th, 2007
Replies: 5
Views: 700
Posted By Killer_Typo
Re: problem with iterator

this statement is entirely different from what you have in your code.


/*
toupper returns an INT value
toupper(a) will return 65 the ascii value for an uppercase A
*/

// the following statement...
Forum: C++ Oct 5th, 2007
Replies: 19
Views: 2,047
Posted By Killer_Typo
Re: How do you include sound files in C++?

What effort have you given this?

Can you post any code?

Some great tutorials have been posted that should get you started.
Forum: C++ Oct 4th, 2007
Replies: 5
Views: 700
Posted By Killer_Typo
Re: problem with iterator

your code worked and compiled fine for me (besides a typo in your post)

what exactly are you referring to as not working?


cout<<toupper(*pos)<<" "; //without cast it doesn't work, why?
while it...
Forum: C++ Oct 2nd, 2007
Replies: 14
Views: 845
Posted By Killer_Typo
Re: Round Robin

I've learned that what i actually write for clients and what I learned in class and books is pretty darn far apart and for the most part the instructor has become too far seperated from reality to...
Forum: C++ Sep 27th, 2007
Replies: 12
Views: 2,085
Posted By Killer_Typo
Re: C++ vowel counter from inFile

Here is a version I wrote based on your code and heavily commented :)

#include <iostream>
#include <fstream>
using namespace std;
int main( void )
{
ifstream inFile; // create a file reader
...
Forum: C++ Sep 27th, 2007
Replies: 12
Views: 2,085
Posted By Killer_Typo
Re: C++ vowel counter from inFile

Make sure to test if the stream is open

inFile.is_open()

if it's not open your vowels.txt file is in the wrong directory.

that being said if you want I can PM you a working version, a little...
Forum: C++ Sep 27th, 2007
Replies: 19
Views: 2,047
Posted By Killer_Typo
Re: How do you include sound files in C++?

It can be tricky, there is a playSound function in C++ but it's not all that powerful so you may be best suited to look for a library to do that, or feel free to get your hands dirty with some...
Forum: Legacy and Other Languages Sep 27th, 2007
Replies: 5
Views: 6,776
Posted By Killer_Typo
Re: Delete a directory using batch script

RD /S will achieve the same as DELTREE
Forum: C++ Sep 24th, 2007
Replies: 8
Views: 2,234
Posted By Killer_Typo
Re: find 100 first prime number

yeah...okay fine. i did this for another site buddy ;)
Forum: C++ Sep 24th, 2007
Replies: 8
Views: 2,234
Posted By Killer_Typo
Re: find 100 first prime number

lol sure, that works i wrote that in about ~5min before because i just wanted to solve a problem real fast, optimizations will come later when i get to the much harder problems on projecteuler.net...
Forum: C++ Sep 23rd, 2007
Replies: 8
Views: 2,234
Posted By Killer_Typo
Re: find 100 first prime number

hehe, i just wrote a counter that will go all the way up to 10001 instantly, though i havnt tested it for higher values.

super simple and absolutely NO goto's.


#include <iostream>
#include...
Forum: C++ Sep 11th, 2007
Replies: 12
Views: 1,786
Posted By Killer_Typo
Re: Make C++ Compiler

:D
which came first: the chicken or the egg!!
Forum: Search Engine Optimization Sep 11th, 2007
Replies: 10
Views: 1,142
Posted By Killer_Typo
Re: The Google Killer Has Arrived.

The interface is far to cluttered to use efficiently especially when browsing search results.

I had to close the page as soon as my results came back because it was far to much work for my eyes to...
Forum: Legacy and Other Languages Sep 10th, 2007
Replies: 66
Views: 11,019
Posted By Killer_Typo
Re: was windows made with BASIC?

hehe, well i do all my developing on my windows box :D

however i liked gentoo because i found it easy to work with, setup, install...etc

i found install applications on it to be easier than any...
Forum: Legacy and Other Languages Sep 9th, 2007
Replies: 66
Views: 11,019
Posted By Killer_Typo
Re: was windows made with BASIC?

i prefer gentoo

emerge world :D


i found working in gentoo to be the best of any linux experience.
Forum: Legacy and Other Languages Sep 9th, 2007
Replies: 66
Views: 11,019
Posted By Killer_Typo
Re: was windows made with BASIC?

haha well i wont argue with fedora not being a good distro.


They used to be pretty big ( am sure they still are ) but they dont seem to be as appealing as SuSE is or even Ubuntu.

Not sure what...
Forum: Legacy and Other Languages Sep 9th, 2007
Replies: 66
Views: 11,019
Posted By Killer_Typo
Re: was windows made with BASIC?

hahahah impossible, now that is niave about OS

in fact my first time running fedora when i was trying to update the system it crashed, locked up and i couldnt do anything. I had to hard restart...
Forum: Legacy and Other Languages Sep 9th, 2007
Replies: 4
Views: 1,099
Posted By Killer_Typo
Re: A C++ Tutorial Converted to Smalltalk:

actually have a handfull of those books at work. the only important ones to use are from visual works or just smalltalk80 books because of the age of the distro we are using.
Forum: Legacy and Other Languages Sep 8th, 2007
Replies: 66
Views: 11,019
Posted By Killer_Typo
Re: was windows made with BASIC?

ummm...i've had linux crash and be just as flaky as windows.


It is hard to call one version of an OS more stable than another. In fact a properly treated install of windows runs great and can...
Forum: Legacy and Other Languages Sep 8th, 2007
Replies: 4
Views: 1,099
Posted By Killer_Typo
Re: A C++ Tutorial Converted to Smalltalk:

VisualWorks

www.cincomsmalltalk.com (http://www.cincomsmalltalk.com)

At work we are using version 2.5.1 even though they are currently on version 7+
Forum: Legacy and Other Languages Sep 8th, 2007
Replies: 90
Views: 24,857
Posted By Killer_Typo
Re: A multilingual coded Hello World! thread

Smalltalk hello world


Transcript show: 'hello world'.


or


Dialog warn: 'hello world'.
Forum: Legacy and Other Languages Sep 8th, 2007
Replies: 66
Views: 11,019
Posted By Killer_Typo
Re: was windows made with BASIC?

a lot of windows instability comes from the need to support so much, IE 95% of the market share.

It is hard to write an OS (i would assume) that requires the support of nearly every peiece of...
Forum: Legacy and Other Languages Sep 7th, 2007
Replies: 5
Views: 6,776
Posted By Killer_Typo
Re: Delete a directory using batch script

are you sure?

what OS?

i just opened up the command prompt and typed


IF EXIST Desktop ECHO hi

my prompt Echo'd out HI
Forum: Legacy and Other Languages Sep 7th, 2007
Replies: 4
Views: 1,099
Posted By Killer_Typo
A C++ Tutorial Converted to Smalltalk:

Since i am going to have to learn Smalltalk well enough to convert it to .NET ( or so i have been told )

i decided to convert some of the C++ tutorials to Smalltalk.

Namely this one:

Write a...
Forum: C++ Sep 6th, 2007
Replies: 40
Views: 36,928
Posted By Killer_Typo
Re: C++ Performance Tips

actually it does work

assume a = 3 and b = 7

a = a + b

a = 10
b = 7

b = a - b
Forum: Legacy and Other Languages Aug 31st, 2007
Replies: 3
Views: 1,036
Posted By Killer_Typo
Re: Smalltalk

no way


after reading up on some tutorials it is actually poorly written if you ask me.


| myFile myStream myLine addrIP mySet contents sFound eFound logDirectory |
Transcript clear.
...
Forum: Legacy and Other Languages Aug 30th, 2007
Replies: 3
Views: 1,036
Posted By Killer_Typo
Smalltalk

how many of you out there use and what about it do you find usefull or to be a headache.

I will be using it on a new system i was just picked up to support, the primary interface will be written in...
Showing results 1 to 40 of 500

 
All times are GMT -4. The time now is 6:49 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC