- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 5
- Posts with Downvotes
- 3
- Downvoting Members
- 4
- Interests
- Performing magic tricks .Net coding
26 Posted Topics
I was planning to start with a java speech program and went on with some research across the internet. I found that for any such program I need an API called the java Speech API. However when I wrote down import java.speech it showed no existence of any such API. … | |
I have an Antivirus as my project and will like to learn about an antivirus. Please help me out by posting links which will help me learn and also let me know if you have done anything regarding an antivirus and if there is something that will help me in … | |
I would like to draw a curve between any two points using java...I have the points from a calculation result in the program, all I need is a function that helps me to draw a curve, can any one please help me out with dis, m kind of at a … | |
Re: The first address is that of your router...the one that gives you the link to your network. Google public and private IP address for more information. You may use this code for finding the IP Address of your own machine: [CODE] string myHost = System.Net.Dns.GetHostName(); // Show the hostname //MessageBox.Show(myHost); … | |
Re: I'm not sure of what u meant, if u mean that the database connection is open then U can just put a value which checks for the connection.open() and according to the value returned selects the check box. | |
Hello I've prepared a code which sends mail. I've a problem in trying to catch the exceptions that the code throws. 1. I need to check if the internet connection is open 2. I need to check if the password and E-mail Id entered by the user are correct In … | |
Re: put the code where u call the form into a try catch block and post the exception that u get. | |
I'm trying to create a desktop based mailing software where one can attach files and then mail it to any mail address. I'm having 2 problems. 1. I cannot attach files which are greater than 2mb in size although I use my G-mail account to send a mail and g-mail … | |
Re: You can take a shortcut...create 2menus and on the 1st menu put the log-in part,on the second menu put everything you need after successful log in. If your log in is successful then hide the log-in menu and show the other menu,else keep showing the log in menu or something … | |
Re: I had an Online Airline reservation service as my project, U can include 2things: 1. print out of the billing details and the ticket. 2. I'm sure u've done this, I had forgotten, later did dis, so will include it, a log in form for any user, by which he/she … | |
Re: U can consider taking an array, and put the check box no which u have checked/which is unchecked(according to needs) as the elements of the array, once u complete ur task, match the array entries with the database table rows and enter. Hope this helps. :) | |
Re: Try this,it should work... [CODE] Dim start As Date = DatetimepickerStart.date Dim end As Date = DatetimepickerEnd.date Dim present As Date = DatetimepickerPresent.date If present > start And present < end Then MsgBox("Correct date") Else MsgBox("Incorrect Date") End If [/CODE] | |
Re: The format that SQL server uses to store date is yyyy-mm-dd When taking the date as input make sure you take it in this format, u can change the format from the properties window while putting the date time picker, as well as manually from code. If you are inputting … | |
I'm completely new to java, would like some help. I have a class named class1 and within the class are 2 functions f1() and f2() I take a number as input in f1(). I would like to have that number in f2() as well. I did this by returning the … | |
I want to create a media player,something similar to the VLC media player which can play both audio and video. Please help me out with any knowledge you have, I really need some information on how to go about making this player. Thanks in advance. :) | |
I'm making a Library Management System and need to put coding for a scanner which will read unique data from each member card and thereafter display the database details of that specific user. Kindly suggest me some sources from which I can gather information about scanner coding, or if you … | |
I am taking date of birth as input from my form and storing it, I need to calculate the age from this date of birth. While this problem seems easy(I haven't tried it out for myself,used one of my friends code) I also need to increase the age of the … | |
My problem is related to printing.I have a database table named billing from which I need to print the bill for a particular client. Now each client has a fixed auto generated client id but a multiple number of entries are present for each client. I am using crystal reporting … | |
Re: Check that u r writing the code in combobox.selectedindexchanged. If u r,it should work,unless u have not entered the table name correctly. check for spaces at the beginning or end of the table name, for example, if your table name is table1, write it as "table1" and not as " … | |
Re: You have to write the textBox1.text from which you are entering data into the db as '"+textBox1.text+"' only then it will work. hope I helped.:) | |
Re: When you install your project you have to put the database files in that disk where you install the project. You cannot install part of it in one disc and other part in any other disc. However, if you are having problems with installing the whole of the project in … | |
Re: [CODE]int x=0,y; while(x<=384) { for(y=0;y<=384;y+=3) { //write required code x+=3; } }[/CODE] I suggest you try out this code,this should work. I did not clearly understand your error, but will ask you to check if there is any chance of stack overflow. If not, the above code should work. Hope … | |
I need to check the income for a particular department for a certain period of time. My inputs are the two dates between which the income has to be calculated,and the department name,the department name is the primary key for my table I need to show the transactions for the … | |
I have 2 problems: First one is I want to put an user name password in a form...I have designed the table and database and I'm fetching the user names from a table and putting them in a combo box, from the combobox i select the required user name to … | |
Ok...I have a very basic question...how do I attach my database when I'm turning my c#.net code into a setup file? I'm just learning and I'm sorry if you feel this a too basic question...:) | |
Ok.....I have 3 forms...the first form has a table with Number,Item_Code,Item_Description and opening_balance as its attributes. The second table has purchase_number,Item_Code,Item_Description,purchase_date and quantity purchased as its attributes and the 3rd table has issue_number,item_code,number_of_issues,issue_date,issue_to_whom,name_of_person, returnable_or_non-returnable ,balance and remarks as its attributes... the item codes in the 2nd nd 3rd table may … |
The End.