Forum: C Jul 14th, 2009 |
| Replies: 5 Views: 466 Use exit() function
http://www.cprogramming.com/fod/exit.html |
Forum: C Jul 14th, 2009 |
| Replies: 46 Views: 1,557 did you try debugging using gdb? |
Forum: C Jul 12th, 2009 |
| Replies: 9 Views: 915 That is just the reverse of the aforementioned algorithm.
Explanation- Scan the input string from left to right. Whenever you see an operand, just push it onto a stack. When you encounter an... |
Forum: C Jul 12th, 2009 |
| Replies: 9 Views: 915 The expression contains only operands. Where are the operators?
If you have a string in infix, ie. in form A+B, and you wish to have it in the form AB+, you can use the Shunting Yard Algorithm... |
Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,801 umm.. what prasu says is correct.
Its just that sometimes you may have to do a lot of comparisons. |
Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,801 Try this-
Just generate 16 x 40 numbers random numbers using the code. If you want it in the range as said, find the remainder of the generated random numbers on division by 10. Then split this... |
Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,801 Can you tell me the range in which you need these integers?
I have something in mind which depends upon this. |
Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,801 Do you mean the uniqueness of the numbers should be restricted to a group of 16 or do you want 16 x 40 unique numbers
--------------------
Yeah I got what you are trying to say. |
Forum: ASP.NET Jul 24th, 2008 |
| Replies: 10 Views: 2,801 Use the Random Class.
Dim arbit As New Random
Randomize()
X: For i = 0 To a.GetUpperBound(0)
t = arbit.Next(1, 10) |
Forum: ASP.NET Jul 16th, 2008 |
| Replies: 20 Views: 17,431 I guess in any web application you design, or for that matter any software you design, you must make sure that you have coded for all possible cases that may arise during its implementation.
You... |
Forum: Java Jul 16th, 2008 |
| Replies: 4 Views: 1,890 colors.getSelectedItem() will give you the selected item in the list. Hold it in a String and print it out on the console using System.out.println()
But you have a GUI here and why do you wish to... |
Forum: ASP.NET Jul 14th, 2008 |
| Replies: 20 Views: 17,431 You can try online examination project.
Have done one here- http://dontnet.tekyt.info |
Forum: VB.NET Jun 24th, 2008 |
| Replies: 10 Views: 3,662 You can try creating your own Control and define the events and properties as you want them to be.
I guess that will help you as you seem to need multiple 'blinking' buttons. |
Forum: VB.NET Jun 24th, 2008 |
| Replies: 3 Views: 2,719 This is how I did it-
Public Class Form4
Private Sub Form4_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim cn As New... |
Forum: VB.NET Jun 21st, 2008 |
| Replies: 3 Views: 589 You may try to make an MDI and then create instances for your individual forms. |
Forum: ASP.NET Jun 20th, 2008 |
| Replies: 2 Views: 8,073 If you want to deploy asp.net pages on your Linux Server, you might want to take a look at this -
http://www.dotheweb.net/lama/ |
Forum: ASP.NET Jun 20th, 2008 |
| Replies: 2 Views: 8,073 Ok. You need an Apache Module to do this.
Download it here- http://sourceforge.net/project/showfiles.php?group_id=175077&package_id=223778&release_id=490544
Since your Apache came from Wamp,... |
Forum: VB.NET Jun 18th, 2008 |
| Replies: 5 Views: 866 I suggest you use the same Command Object (cmd) , the same Adapter (adp) and the same Dataset (ds) in the code for event Form3_VisibleChanged.
Try it and let me know if it worked. |
Forum: VB.NET Jun 18th, 2008 |
| Replies: 5 Views: 866 Are you getting any error messages?
Could you post them and the line numbers? |
Forum: Shell Scripting Jun 17th, 2008 |
| Replies: 2 Views: 1,142 sed 's/string1/string2/'
replaces string1 with string2. the 's' signifies the substitution.
you are grouping the letters 'abc' i.e. (abc) using \(abc\) using the \ to escape the literal... |
Forum: VB.NET Jun 15th, 2008 |
| Replies: 1 Views: 1,123 Well the number of rows really do not matter.
In the code that I have posted below, I hold the number of rows in a variable named total.
I have chosen to extract the contents of the first... |
Forum: VB.NET Jun 15th, 2008 |
| Replies: 6 Views: 9,233 let us say you have a login button on the registration form which gets enabled on validation of registration details.
code for login button- form2.showdialog()
in the form_load for the 2nd... |