Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
6
Posts with Upvotes
5
Upvoting Members
6
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #779
~38.1K People Reached
About Me

software developer

Interests
griddlers, classical guitar, games
PC Specs
athlonxp2200, ati radeon 9600... 1gb ram a mouse and a keyboard
Favorite Tags

82 Posted Topics

Member Avatar for samaru

yep, i think i am a big fan of anime, and a starter fan of manga :) here some my favorites, one piece rocks!!! kenshin (best samurai ever!) cowboy bebop bleach akira vampire hunter d Fullmetal Alchemist well list goes on and on... here is my anime list that i …

Member Avatar for thompsonmax
1
3K
Member Avatar for jengels

you can look at the values of the character, (for ASCII code table) for example value of 'A' is 65 and value of 'Z' is 90 so you can check every character in your string, then check if characters are between 65 and 90, if true then increase counter, if …

Member Avatar for JamesCherrill
0
4K
Member Avatar for linux
Member Avatar for stupidenator
Member Avatar for pyro 214

[QUOTE=Rashakil Fol;314124]programming and "software engineering" are the same thing. If your school is offering a "programming" curriculum that is not called software engineering and is not called computer science, while offering a "software engineering" curriculum too, then I have to say, WTF? [/QUOTE] i don't think so, these two are …

Member Avatar for Ancient Dragon
0
1K
Member Avatar for comp_sci11

i didn't run the code but it seems you need to set sum to zero somewhere in your code. (after you complete factoring a number i guess)

Member Avatar for gihariwathsala
0
1K
Member Avatar for kalaiselvi.v

[quote=peter_budo;317721]Pickup some number for example 4 and if you get "a" in username/password replace it with "e" and you have your algorithm.[/quote] isn't it [URL="http://en.wikipedia.org/wiki/Caesar_cipher"]ceasar cipher[/URL] :P if you want to store passwords in db, i suggest you [URL="http://en.wikipedia.org/wiki/Cryptographic_hash_function"]cryptographic hash functions[/URL] with hashing even if someone broke into your database …

Member Avatar for meprasobh
0
1K
Member Avatar for SelArom

i think problem is with [CODE] rand= new Random(); [/CODE] which is seed by current time, if you call this too fast, rand will be seed by the same seed value. you need to create random object once, and continue using it, just like Killer_Typo's solution

Member Avatar for Momerath
0
154
Member Avatar for NewbyChic

good old homeworks... :) here is a tip for you.... you need to use variables from the outer loops in the inner loops... [B]1.[/B] row [B]1[/B] star... [B]2.[/B] row [B]2[/B] stars... for the other one... [B]1.[/B] row [B]n[/B] stars... [B]2.[/B] row [B]n-1[/B] stars... hope that will make a sense :) …

Member Avatar for javaAddict
0
177
Member Avatar for ,Diabolical

well i don't think javascript html or css will help you, since these are mainly used for visuals. (but you still need them ;) ) you need some server-side stuff, you can start with php + mysql, but you will have hard times with maintaining your php codes. you can …

Member Avatar for Nick Evan
0
565
Member Avatar for Ghost

it is a very deep subject and hard one, and comparing pixel-by-pixel is a very slow approch, i suggest you searching "image processing".... in [URL=http://www.gimp.org/]GIMP's web site[/URL] you can find source code of this program which is a very good image processing tool....

Member Avatar for JavaHelper
0
2K
Member Avatar for Rickenbacker360
Member Avatar for ProgrammersTalk
Member Avatar for chound

for your last question dotNet is a very good solution. you can code with Visual Basic .Net. dotNet Framework is windows component which lets you run application written in dotNet environment, like C# .NET or Visual Basic .Net

Member Avatar for Salem
0
638
Member Avatar for no1zson

[B]cds [/B]is an array of CompactDisk, so it didn't have method like [B][B]setCdArtist, [/B][/B](or getCdArtist) you can first create a [B]Cdartist[/B], then assign it to a place in [B]cds[/B]

Member Avatar for abeer mohamed
0
400
Member Avatar for scru

lets look.... [quote=scru;325930] [code=c#] for (int r = 1; r == 9; r++) [/code][/quote] [B] r==9 [/B] is your problem which returns [I]false[/I] in the first run. (r=1) try [B]<[/B] or [B]<=[/B] according to your needs...

Member Avatar for jOhN_pRattZ
0
133
Member Avatar for foxfire

actually in C# preferred method for saving connectionstring is using app.config file. [CODE=xml] <configuration> .... <connectionStrings> <add name="your_connection_string_name" connectionString="your_connection_string" /> </connectionStrings> .... </configuration> [/CODE] you can access it in your code with this: [CODE=csharp] string connString = ConfigurationManager.ConnectionStrings["your_connection_string_name"].ConnectionString; [/CODE] don't forget to add: [CODE=csharp] using System.Configuration; [/CODE]

Member Avatar for JerryShaw
0
468
Member Avatar for Alex Edwards

[QUOTE]The internal keyword is an access modifier for types and type members. Internal types or members are accessible only within files in the same assembly[/QUOTE] if you are using other dll's you can't access their [b]internal[/b] classes or properties. [URL="http://msdn.microsoft.com/en-us/library/7c5ka91b(VS.80).aspx"]http://msdn.microsoft.com/en-us/library/7c5ka91b(VS.80).aspx[/URL] check this url for examples

Member Avatar for Alex Edwards
0
156
Member Avatar for jimzy2008

missing return statement means that your method expects you to return a value. for example : [CODE] int add(int x, int y) { return x+y; } [/CODE] if your method does not return a value its signature need to be like this: [CODE] void foo() { // some code here …

Member Avatar for VernonDozier
0
95
Member Avatar for JJ___

1) Star Wars: Knights of the Old Republic 2) Neverwinter Knights 3) Baldur's Gate 2 4) Monkey Island Series 5) Silent Storm

Member Avatar for maravich12
0
992
Member Avatar for Locke.Digitalus

well i think, taking a class is not necessary but what you need is practice after reading some online or offline tutorial and resources. I have interest in programming since high school, and I learn it by reading and doing practice... like changing the code of tutorials and running them, …

Member Avatar for Charles@NYC
0
240
Member Avatar for ndeniche
Member Avatar for hamada_1990
0
384
Member Avatar for agrothe

i suggest: hibernate for data layer spring for MVC freemarker view layer dwr for ajax

Member Avatar for tonakai
0
144
Member Avatar for quintoncoert

you can create a seperate class, then use it in your forms... for example [code=csharp] public class myDBAccess { public string getFoo() { //your db access logic } } [/code] then you can use it like this... [code=csharp] myDBAccess dba = new myDBAccess(); textBox1.text = dba.getFoo(); [/code]

Member Avatar for quintoncoert
0
137
Member Avatar for LSPUWILLC

you can simply write a crush calculator by yourself [code] int calc(string name1, string name2) { //you can also put any silly calculation return 50; } [/code] you either love her/him or not :)

Member Avatar for The Dude
0
242
Member Avatar for Debadipta

[quote=Debadipta;318322]1.'Java is platform-independent'- - What's that supposed to mean though the Java run-time package differs from platform to platform;almost similar to creating different compiler for every different machine for the purpose of executing a C/C++ program? [/quote] applications you write in java is platform-independent. java virtual machine needs to be …

Member Avatar for Debadipta
0
110
Member Avatar for peter_budo

do you want to run this JAR file or do you want to import it in your application so you can use it?

Member Avatar for peter_budo
0
115
Member Avatar for bhavna_816

change your code from [code=c#] protected override void OnMouseMove(System.Windows.Forms.MouseEventArgs e) { //dosomething } [/code] to [code=c#] protected override void OnMouseMove(object sender, System.Windows.Forms.MouseEventArgs e) { //dosomething } [/code] simply your methods parameters don't match with the requested delegate's ps: don't forget to put coding tags while posting code segments

Member Avatar for tonakai
0
165
Member Avatar for mattyd

break apart simply break objects apart :) write some text with flash then break it apart... you can then select individual characters... also you can break apart bitmaps. after breaking apart you can modify your bitmaps with flash drawing tools

Member Avatar for mattyd
0
124
Member Avatar for harish333

you need [URL="http://java.sun.com/javase/downloads/index.jsp"]jdk[/URL] jre is runtime environment

Member Avatar for tonakai
0
81
Member Avatar for mr.sweetchuck

did you try to use netbeans mobility? you can debug your midlets there... masijade can be right, NPE may be thrown somewhere else... good luck

Member Avatar for mr.sweetchuck
0
238
Member Avatar for radu84

that depends on what you want to do, if you want to do web applications, then i suggest you to learn dotNET, Java or Ruby on Rails stuff with some database like MSSQL, MYSQL, Oracle... i also suggest you to learn MVC pattern which you can find many frameworks to …

Member Avatar for tonakai
0
78
Member Avatar for vyomashar
Member Avatar for livingsword

[URL]http://java.sun.com/docs/books/tutorial/2d/overview/primitives.html[/URL] you can check here, ctrlx and ctrly means a control point's x and y coordinates...

Member Avatar for livingsword
0
144
Member Avatar for vinod_javas

file operations are a bit messy since *nix and windows handle filenames differently... so my advice is... use [URL="http://logging.apache.org/log4j/docs/"]log4j[/URL] its a nice tool for logging in java if you don't like it you can always find an alternative...

Member Avatar for jwenting
0
98
Member Avatar for Venks

i think you need J2ME (JME) many PDA can run JME MIDP 1.1 and MIDP 2.0 [URL]http://java.sun.com/javame/index.jsp[/URL] you can check here also check your computer has java virtual machine or some kind of midlet manager... [quote=jbennet;318836] I know for a fact that PocketPC cant do java at all and thats …

Member Avatar for jwenting
0
209
Member Avatar for vinod_javas

i think that is impossible with current MIDP 2.0 because it is not supported :) you can implement your own screen manager using canvas, but it will take some time. and also you need to handle different types of input and output...

Member Avatar for tonakai
0
96
Member Avatar for Monyet

[QUOTE=Monyet;317056]How do you create static methods using C#? [/QUOTE] [CODE=csharp] class staticClass { public static void staticMethod() { //do something } } [/CODE] [QUOTE] How do you specify each items in the static methods? thanx.. I'm a C# newbie >.<[/QUOTE] I don't understand this question? what is an item? search …

Member Avatar for Monyet
0
126
Member Avatar for Monyet

yep they are similar, both OOP languages... you add "references" to your projects. many libraries are avaible in .net framework, but if you need more specific things, you need to find these libraries...

Member Avatar for nikkiH
0
89
Member Avatar for movielad

- Zatoichi - Donnie Darko - Cowboy Bebop : Knockin' on Heaven's Door - Shrek 1 & 2 - Bone Collector - Forest Gump - Monthy Python and Holy Grain :) - Quentin Tarantinos' Movies well lots of other i can't remember....

Member Avatar for mattyd
0
517
Member Avatar for giles

i think, for multimedia stuff, i suggest macromedia products, like flash. I did some small things with flash, it has a good scripting language called actionscript, and has very good visual. you can play sounds, do animations with ease, also you can do these with other products of macromedia but …

Member Avatar for Covinus
0
361
Member Avatar for asmith3006

well if you post the code it will be easy to see the problem, but i think the problem is you're drawing the rectangles but windows afterwards draws the form components and you see nothing... i suggest you to create a bitmap, then draw what you need and display it …

Member Avatar for asmith3006
0
128
Member Avatar for demonhunter777
Member Avatar for The Dude

they are talking in Turkish... and the guy says they are in Diyarbakir which is a city in Turkey... but his origin might be arab...

Member Avatar for anupam_smart
0
126
Member Avatar for mcathymatthew

after you scan your sheet, all you need to do is some sort of character recognation... you need to study some digital image processing book to learn character/pattern recognation. simple recognation algorithms will work without problem if your sheets are not hand-written. if they are hand-written you need more complex …

Member Avatar for hari_cseiitb
0
129
Member Avatar for LiBOC

if you are looking fot something to calculate 2*3 + 5 / (6+1)... you need to look "postfix, prefix, infix expressions... you can also look at this [URL=http://www.daniweb.com/techtalkforums/thread25221.html]thread[/URL]

Member Avatar for server_crash
0
267
Member Avatar for winbatch
Member Avatar for DeFrog777

well generally most pcs use amd or intel. you don't need change your assembly code when coding in these machines (there are some exceptions i think, but main asm codes workes fine) try running dxdiag, some basic cpu details are there....

Member Avatar for mmiikkee12
0
651
Member Avatar for alex_extreme
Member Avatar for MartyMcFly
0
493
Member Avatar for server_crash

it is important when you need to use them... sometimes when you want to do something (like some type of sorting) you can't always find the libraries, so you need write them... at that time you will need them...

Member Avatar for Narue
0
268

The End.