Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
35% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
1 Commented Post
~40.5K People Reached
About Me

Student of BS Computer Science. Interested in Programming Games and Applications.

PC Specs
Core i5 750, 12GB DDR3, ATI 6790 1GB, Corsair Force 3 240GB
Favorite Tags

21 Posted Topics

Member Avatar for saad749

How to correctly/standardly define schema for neo4j database in my C# application? In my application, I have nodes with properties and relations with properties. I want to define templates/Classes of these nodes and relations that can then be created and related at run time and retrieved as objects of a …

Member Avatar for saad749
0
319
Member Avatar for ss125
Member Avatar for ss125
0
209
Member Avatar for Zezo_1

You have to update your condition. Currently you are checking on if the message is !q you are sending all the questions as the conditions are all true. You might like to use a Queue; and make this decisions a bit Dynamic than now.

Member Avatar for saad749
0
140
Member Avatar for amrita29april
Member Avatar for saad749

I have this Regular Expression in C#: Regex myRegex = new Regex(@"^[a-zA-Z]{1}\s(! | && | \|\| | -> | <->){1}\s[a-zA-Z]{1}$"); if (myRegex.IsMatch(expression)) { validated = true; } else { validated = false; } and I would like to match the following types of Strings: A && B A -> B …

Member Avatar for saad749
0
198
Member Avatar for FTProtocol

In case Some One Else comes across this page; This is a much easy approach for beginners: [CODE] private void pageSourceToolStripMenuItem_Click(object sender, EventArgs e) { Form sourceForm = new Form(); TextBox sourceCode = new TextBox(); sourceCode.Dock = DockStyle.Fill; sourceCode.Multiline = true; sourceCode.ScrollBars = ScrollBars.Both; sourceForm.Width = 700; sourceForm.Height = 500; …

Member Avatar for saad749
0
567
Member Avatar for saad749

I have recently started learning Object oriented programming and design. I had made a small program using the procedural design to move a block after selecting it in XNA. I then tried to make the same program with an Object centered Design, but I am not able to make it …

Member Avatar for saad749
0
140
Member Avatar for chaoticabyss99

Hey, I was having the VERY SAME Problem with same specifications as you are having a moment earlier. I Tried in the Server Name: [B](local)/TEST1[/B] and it Worked! TEST1 is my Instance Name; You might be having the instance name MSSQLSERVER if you have chosen the Default Instance or the …

Member Avatar for chaoticabyss99
0
205
Member Avatar for kapilsolanki84

The exe file is created automatically when you run your program. It is located in the same directory where your source file resides.

Member Avatar for sharunkumar
0
3K
Member Avatar for phobos666

Use &filename in the scanf() statement.. [CODE]scanf("%s",&filename); [/CODE] This is how I open file on the basis of user input. [CODE]FILE *fp; char fnamer[100]=""; //Storing File Path/Name of Image to Display printf("\n\nPlease Enter the Full Path of the Image file you want to view: \n"); scanf("%s",&fnamer); fp=fopen(fnamer,"r"); if(fp==NULL) { printf("\n%s\" …

Member Avatar for Narue
0
32K
Member Avatar for phobos666
Member Avatar for amari ♥

Iteration can be done by the help of loops, i.e. for loop, while loop, do .. while loop. Recursion on the other hand means recursive calls to a function. The recursive calls are mostly conditional. for example, taking your first program, by iteration it can be done by: [CODE]int sum=0; …

Member Avatar for saad749
0
227
Member Avatar for saad749

I am trying to create a Unit Converter. My Idea is to have a select box at the top to select Length/Temp etc. which will populate the two select boxes below with appropriate units. The below code should Work only for Milimieters to Milimeter, Meters and Kilometers. It should show …

Member Avatar for saad749
0
218
Member Avatar for jvill

[CODE]#include <stdio.h> #include <stdlib.h> /* homework 5.19 Author: Jeremy Villanueva */ /*begin Main Function */ int main(void) { /*initialize integers */ int pow; int num; long int res; long int power(int,int); /* enter the number and the power */ printf("\nEnter a number: "); scanf("%d",&num); printf("\nEnter power: "); scanf("%d", &pow); res= …

Member Avatar for jvill
0
145
Member Avatar for Hayzam_#include
Member Avatar for saad749

I am trying to make a Measurements Units Conversion Calculater on Dreamweaver with help of Javascript. THis is my first ever javascript application and need to complete it in next 6 hours. :(( I want to have a drop box containing Length, Area, Temp etc. on top. When a user …

Member Avatar for @developer
0
241
Member Avatar for Alerwiali

Depends on the type of program. If you have constant amount data and u know that before compile time use arrays and if the data is going to be entered at run time and the exact number of total data is not known, use linked lists.

Member Avatar for saad749
0
82
Member Avatar for saad749

Hi, I am trying to make a Picture viewer for my BS Computer Science 1st Year Project in [B]Turbo C Compiler[/B]. I have to stick with this compiler atm. I want to be able to display BMP,PNGs and JPEGs [TIFF and others too if it won't be very difficult]. I …

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

My Object is to display a 24bit color .bmp picture in 24 bit colors via Turbo C Compiler. Turbo C can display only 16 colors so I will need to use a Windows Interrupt[or something like that] to display the image. I googled a lot but couldn't get a hint …

Member Avatar for Ancient Dragon
0
613
Member Avatar for paleFace

Well, I would recommend Sony Vaio VPC-EB-15-FA[Vaio EB Series] as its a really nice laptop with lots of stuff in quite reasonable price. It also has a sensitive touchpad, comfortable keyboard and good speakers. The battery life how ever is around 2-2.5 hours of normal usage. The Config is: core …

Member Avatar for saad749
0
129
Member Avatar for saad749

[B]Aim:[/B] Well, What I am trying to do is to store the names in an array and scores scored in another array. Then Write them into the file. When the program is ran again, I will like to read the stored names and scores, add the new name and score, …

Member Avatar for saad749
0
157