Posts
 
Reputation
Joined
Last Seen
Ranked #135
Strength to Increase Rep
+13
Strength to Decrease Rep
-3
93% Quality Score
Upvotes Received
128
Posts with Upvotes
113
Upvoting Members
85
Downvotes Received
9
Posts with Downvotes
9
Downvoting Members
9
46 Commented Posts
~409.85K People Reached
About Me

Delphi and C# Programmer

Interests
Programming, Animation, Sport, Travel, Music, TV, Movies, Gaming
Favorite Tags
java x 389
php x 307
mysql x 73
mssql x 69
c++ x 30
Member Avatar for shanaka95

Hi...I want to play one of the most violent computer game.Please let me know one of them

Member Avatar for Andrew_107
0
304
Member Avatar for mattyd

The game is as follows: You may change [I]up to two[/I] (2) letters in the given example by either: [LIST] [*]adding one\two letters [*]removing one\two letters [*]adding one letter, removing one letter[/LIST]Example: [LIST=1] [*]Ruin [*]Rain[/LIST]I will begin: [B]Flume[/B]

Member Avatar for Reverend Jim
0
10K
Member Avatar for The Dude

OK -- You take the LAST word of the sentence and make a new sentence. EX: A man lived by the water. The Result: [b]Water[/b] the grass.

Member Avatar for Dani
3
11K
Member Avatar for Xeros606

Not an ArrayList. An Array. For some reason, my teacher (or rather, the lesson plan we are using) requires that we make a program that takes an array of integers and removes all the zeroes. So far I have: [CODE] public void remove(int index) { for(int i = index; i …

Member Avatar for JamesCherrill
0
3K
Member Avatar for umadas

Hi all I need help to read outlook pst file from java.My pst file is stored in local hard disk.Now i want my java program to read that pst file.Kindly provide some inputs so as to proceed to the solution for the said problem.Can i do this through javamail api? …

Member Avatar for Vladan
0
3K
Member Avatar for Stefano Mtangoo
Member Avatar for Rose Aashii

Plz tell me how I would calculate time complexity of the program: int i = N; while (i > 0) { int Sum = 0; int j; for (j = 0; j < i; j++) Sum++; cout << Sum << endl; i--; } thnx in advance

Member Avatar for Ali_84
0
2K
Member Avatar for manisha

Hi, I want to start the command prompt window from my java program. Tried using Runtime but its not working.These are my codes : [code]String command = "cmd.exe"; try { child = Runtime.getRuntime().exec(command); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }[/code] Actually, its working when i …

Member Avatar for stultuske
0
2K
Member Avatar for k2k

hi, does anyone know how to insert a background picture to a JPanel? I have googled around, found something seem more difficult than it should be, and a simple one as below but not showing the pic. [code] midBoard = new JPanel(); JLabel pic = new JLabel(new ImageIcon("Sunset.jpg")); //midBoard.setBackground(java.awt.Color.RED); midBoard.add(pic); …

Member Avatar for JamesCherrill
0
14K
Member Avatar for anamo

I wan to call oracle database function I tried this but i am getting error `ORA-06550: line 1, column 7: PLS-00221: 'F_GET_DESC' is not a procedure or is undefined ORA-06550: line 1, column 7: PL/SQL: Statement ignored` public void Get_Desc() { string oradb = "Data Source=source;User Id=myuser;Password=ss;"; string CommandStr = …

Member Avatar for darkagn
0
245
Member Avatar for Joe_16

I am working on a nxn magic square that I just cn't seem to figure out. Basically I have a data file that is .txt and has meta data. 3 Matrix One 5 7 45 38 5 56 18 34 4 87 56 23 41 75 87 97 45 97 …

Member Avatar for darkagn
0
245
Member Avatar for The Dude

I scored 19 :) With this test someone can find out if he/she has psychopatic tendensies. Do the Psychopathy Checklist yourself here: Note: between 30 and 40 means you're in high risc of becoming (or already are) a psychopath. However, only a few individuals ever (worldwide) reached the highest score …

Member Avatar for maydhyam
1
5K
Member Avatar for zachattack05

I am writing a custom MembershipProvider for ASP.NET and would like to record certain events in a table when they happen. I have the methods to do it, but I would like to get the value of the "ID" column of the row I insert into the table. I have …

Member Avatar for zachattack05
0
306
Member Avatar for overwraith

Hey I have a question, how many people actually use telerik? Does anybody have experience with it, and what are your opinions on it? To me it is just another third party library that nobody knows, but I want an opinion on it from actual seasoned developers. I have worked …

Member Avatar for overwraith
0
286
Member Avatar for nlanka

public class NaveenSingleton { private String name; private String [] names; private static NaveenSingleton uniqueInstance; private NaveenSingleton() { } public static NaveenSingleton getInstance() { if(uniqueInstance == null) { uniqueInstance = new NaveenSingleton(); } return uniqueInstance; } public void setName(String n) { name = n; //Search for duplicate name here, before …

Member Avatar for nlanka
0
178
Member Avatar for Lgie

How will I determine the rep for repInvariant? and How to write an abstract function?

Member Avatar for darkagn
0
124
Member Avatar for overwraith

Say hypothetically you had a reader which did something like this... //testing reader, automatically parses strings and converts to the custom type via attributes! using ( FlatFileReader<MyCustomClass> reader = new FlatFileReader<MyCustomClass>(config) ) { MyCustomClass custom; while ( (custom = reader.ReadLine()) != null ) { Console.WriteLine(custom.ToString()); } } Would this actually …

Member Avatar for ddanbe
0
243
Member Avatar for zachattack05

Just a question on preference: Given a method that returns a boolean value, how would you write an If statement to check the return value of it? Like this? private bool MyMethod() { // doing stuff } private void OtherMethod() { If (MyMethod() == true) { // do stuff if …

Member Avatar for JOSheaIV
0
439
Member Avatar for theausum

<?php $ip = '59.32.28.65'; $url = "http://www.ipmango.com/api.php?ip=".$ip; $xml = simplexml_load_file($url); echo "IP address : {$xml->ipaddress} <br />"; echo "City : {$xml->city} <br />"; echo "Region : {$xml->region} <br />"; echo "Country Name : {$xml->countryname} <br />"; echo "Latitude : {$xml->latitude} <br />"; echo "Longitude : {$xml->longitude} <br />"; ?>

Member Avatar for Pramod_7
0
3K
Member Avatar for lithium112

I am facing an issue and am hoping there is an easy way to do this. Is there any possible way to invoke a method from another project without a reference to it? I am unable to reference the project due to circular referencing.

Member Avatar for lithium112
0
118
Member Avatar for Suzie999

Although I've been programming as a hobby for a while, most of it has been procedural and I've done very little OOP, and not very competent with the inheritance hierarchy of classes, which is the reason for my post here, to get a bit of advice as to whether im …

Member Avatar for Suzie999
0
250
Member Avatar for nish123

jst a small Query..!! . . How to convert string to Date format.. So tht i can get result from database..!!! $date = "mm/dd/yy"; i want in yy-mm-dd format...!!! which function is used for it.!! . . waiting for positive reply..!!

Member Avatar for Aswad_1
1
8K
Member Avatar for Amr_Mohammad_R

I create a thread within the main form load event of the application and initialize it with a method then start this thread and there is no problem till this point the problem is that when I click on any button on the main form to open another form lets …

Member Avatar for darkagn
0
173
Member Avatar for Luiz Eduardo

I'm with a problem for show my Form1 and listen the active url in on browser. In code following, after the test with showmessage function, apper an Acess violation in my project as on following images: [IMAGE_1](http://prntscr.com/51vh96) [IMAGE_2](http://prntscr.com/51vkdn) Here is my code: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, …

Member Avatar for darkagn
0
345
Member Avatar for engrjd91

I am having the following errors after running this code for my login. **Notice: Undefined index: user_name in C:\xampp\htdocs\fyp\cms\cms.php on line 52 **Notice: Undefined index: user_id in C:\xampp\htdocs\fyp\cms\cms.php on line 54**\ login.php <?php session_start(); ?> <?php include_once("../includes/connection.php"); ?> <!DOCTYPE html> <html lang='en'> <head> <meta charset="UTF-8" /> <title> HTML Document Structure …

Member Avatar for darkagn
0
235
Member Avatar for kidkardel

HI again!!!!!!!!! so i have this button where if i press it words will be typed on my richtextbox but my problem is i want the half part to be centered and the half part would be aligned to the left. how can i achieved that. i have already done …

Member Avatar for kidkardel
0
231
Member Avatar for pritaeas

I have the following method: [ClaimsPrincipalPermission(SecurityAction.Demand, Resource = "Order", Operation = "Place")] public string PlaceNewOrder() { } When the `AuthorizationContext.Principal` does not have the required `Claims`, a [SecurityException](http://msdn.microsoft.com/en-us/library/system.security.securityexception_properties(v=vs.110).aspx) is thrown (as expected). Unfortunately, all the properties of this exception (such as `Action` or `Demanded`) are `null`. Is there a way …

Member Avatar for pritaeas
0
196
Member Avatar for Ahmed_51

I've created a Mortgage Calculator via WPF on visual studio 2012. The design looks like this: Enter Loan amount: TextBox here Enter Loan Duration: 15 years(Radio Button) 30 years(Radio Button) Other(Radio Button) with TextBox Select Interest Rate: ComboBox here Button here to calculate The issue i'm having trouble with coding …

Member Avatar for tinstaafl
0
545
Member Avatar for syahirah_1

*hi.. i just want to ask those who know to filtering multiple search using SP. My SP is working and the problem came when i want to call the parameter from my sp.can u check what error with my code* public partial class WebForm3 : System.Web.UI.Page { private string GetConnectionString() …

Member Avatar for syahirah_1
0
243
Member Avatar for Sifiso21031085