- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 3
- Posts with Downvotes
- 1
- Downvoting Members
- 3
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
21 Posted Topics
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 … | |
Re: Keep the Captcha in an Update Panel and only Refresh the Update Panel. | |
Re: 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. | |
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 … | |
Re: 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; … | |
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 … | |
Re: 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 … | |
Re: The exe file is created automatically when you run your program. It is located in the same directory where your source file resides. | |
Re: 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\" … | |
Re: Did u tried using "wt" or "wb" for opening the file? | |
Re: 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; … | |
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 … | |
Re: [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= … | |
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 … | |
Re: 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. | |
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 … | |
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 … | |
Re: 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 … | |
[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, … |