Forum: Java Aug 7th, 2009 |
| Replies: 5 Views: 346 Why does the thread 3 execute before thread 2 though iam invoking it before thread 3?
if i am right.. after invoking thread 1 the printmsg1 enters into the synchronized state. thread 2 is put in... |
Forum: Visual Basic 4 / 5 / 6 Mar 8th, 2009 |
| Replies: 27 Views: 14,888 redirection dialog box appears when a file protected by UAC is being edited manually. this is not the same with the files created by the IDE . which means the application must be given certain rights... |
Forum: Visual Basic 4 / 5 / 6 Mar 8th, 2009 |
| Replies: 27 Views: 14,888 like i guessed Windows 7 imposes some restrictions on the folders which reside in the os partition. so to fix this i changed the path variable from c:\user\appdata\loal\tmp to d:\tmp
now... |
Forum: Visual Basic 4 / 5 / 6 Mar 8th, 2009 |
| Replies: 27 Views: 14,888 okay.. now i sorted out the freezing problem. Updated the Visual STudio 6 with service pack 6. But now when i try to use the MFC ClassWizard dialog box's Edit code I get the following error... |
Forum: Visual Basic 4 / 5 / 6 Mar 8th, 2009 |
| Replies: 27 Views: 14,888 tips on installing..
i read in some forums that a default install of this aged app will not install/work properly. try customized install with only the VC++, VB selected. i also remeber reading... |
Forum: Visual Basic 4 / 5 / 6 Mar 8th, 2009 |
| Replies: 27 Views: 14,888 I have installed it in the Windows 7. VM for Java too installed without an error. I then tried to compile and run a couple of sample projects of MFC appwiz, VB and Win32 App and it worked good.
... |
Forum: ASP.NET Nov 8th, 2008 |
| Replies: 2 Views: 1,566 in the page load event we should read the query string to retrieve the courseid like int CourseID = Convert.ToInt32(Request.QueryString["sid"].ToString());
I'am assuming that the course id in the... |
Forum: ASP.NET Oct 28th, 2008 |
| Replies: 4 Views: 1,177 The button is missing the OnClick Event handler. To add an event handler to to a button just double click on the button from the design view and the VisualStudio IDE should automatically take you to... |
Forum: ASP.NET Oct 27th, 2008 |
| Replies: 4 Views: 515 i've already included modules for adding new mp3 items and artist items. ill add some more admin components to it.. thank you |
Forum: ASP.NET Oct 27th, 2008 |
| Replies: 4 Views: 515 Yes, he wants see me put in more effort in making a complex component, which of course while codding should be created in a manageable manner. ill start with your suggestion. :)
thanks. |
Forum: ASP.NET Oct 27th, 2008 |
| Replies: 2 Views: 729 protected void fv1_PageIndexChanging(object sender, FormViewPageEventArgs e)
{
Label mirrorLable = (Label)fv1.Row.FindControl("UrlLabel");
}
UrlLabel is the server control... |
Forum: ASP.NET Oct 26th, 2008 |
| Replies: 4 Views: 515 hi everyone,
I'm developing a Online Music Shop. I think i have completed the basic modules which are necessary in a online music shop. modules include buying prepaid credits, searching for a... |
Forum: ASP.NET Aug 24th, 2008 |
| Replies: 7 Views: 4,152 That ain't working either. I'm getting the
"A name was started with an invalid character. Error processing resource 'http://localhost/OneLove/Login.aspx'. Line 1, Pos..."
i'm trying to deploy... |
Forum: MS SQL Aug 16th, 2008 |
| Replies: 1 Views: 4,473 i tried to add a database file to an exsiting Website project. i get this error.
"connection to SQL Server files (*.mdf) require SQL server express 2005 to function properly."
installed... |
Forum: ASP.NET Aug 8th, 2008 |
| Replies: 0 Views: 448 6894
port number at the asp.net developer server and port at which the WebDeveloper tries to run the Website do no match. which gives me a page not found error.
each time i have noticed that... |
Forum: C++ Jun 21st, 2008 |
| Replies: 2 Views: 699 |
Forum: C++ Jun 21st, 2008 |
| Replies: 2 Views: 699 #include<iostream>
using namespace std;
class welcome{
public:
welcome(){
cout<<"Constructor";
}
};
int main(){
welcome c; |
Forum: C++ May 1st, 2008 |
| Replies: 7 Views: 503 try this
for (i = 0; i< NUMARCS+1; i++) |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 1,568 hmm..
use another variable called int COUNT to count the number of iterations through the list. that will give the number of nodes.
then float avg=sum/COUNT;
:) |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 1,568 sum = sum + currentPtr;
should be
sum=sum+currentPtr->value; //value=the variable you are using to store the numbers.
sum and currentPtr are of different types.
sum is int and... |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 1,568 copy paste the full code.. lets have a look.
and paste the error messages too if possible. |
Forum: C++ Apr 30th, 2008 |
| Replies: 10 Views: 1,568 iterate through the list until the end of the list.
declare a variable called SUM then add the numbers from each node during the iteration to the variable sum. |
Forum: C++ Apr 30th, 2008 |
| Replies: 8 Views: 606 these are what my friends have done..
suggestions are welcome :)
//INHERITANCE
#include<iostream.h>
#include<conio.h> |
Forum: C++ Apr 30th, 2008 |
| Replies: 8 Views: 606 gosh :( getting thses many errors in the borland compiler
:'(
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
main.cpp:
Error E2090 main.cpp 63: Qualifier 'carni' is not a class or... |
Forum: C++ Apr 30th, 2008 |
| Replies: 8 Views: 606 |
Forum: C++ Apr 30th, 2008 |
| Replies: 8 Views: 606 its named after life because the assignment which was given to me told me to do so.
what i gather is.
life=world
world has the animal kingdom and plant kingdom
animal kingdom has the subclasses... |
Forum: C++ Apr 30th, 2008 |
| Replies: 8 Views: 606 done some modifications to the previous code. here it goes.
#include<iostream>
using namespace std;
class life{
public:
virtual void eats()=0;
protected:
char*... |
Forum: C++ Apr 29th, 2008 |
| Replies: 8 Views: 606 is this a good example to demonstrate the different types of inheritance?
kindly give feed back and suggestions..
ps:using the g++ compiler
#include<iostream>
using namespace std;
class... |
Forum: C++ Apr 13th, 2008 |
| Replies: 8 Views: 2,544 are the programs created using the windows port ofQT portable? |
Forum: C++ Apr 12th, 2008 |
| Replies: 5 Views: 15,963 |
Forum: C++ Apr 12th, 2008 |
| Replies: 5 Views: 15,963 which header files should i include? |
Forum: C++ Apr 11th, 2008 |
| Replies: 5 Views: 15,963 in turbo C++ there is a function called delay(); and in microsoft compiler i guess it is sleep or msleep. what could be the possible equivalent function which can be used when compiling in GCC.
... |
Forum: C++ Apr 7th, 2008 |
| Replies: 2 Views: 531 |
Forum: C++ Apr 7th, 2008 |
| Replies: 2 Views: 531 Loader error (0000): unrecognized error
i get this error message when ever i start the Turbo C++ 4.0j IDE. What could be the problem?
i tried reinstalling the software but in vain. it was working... |
Forum: C++ Apr 7th, 2008 |
| Replies: 5 Views: 829 guys kindly let me know how to do simple graphics like rectangle and circle similar to BGI programming using the GCC compiler. |
Forum: C++ Apr 6th, 2008 |
| Replies: 5 Views: 829 TD :: TD(){
setcolor(15);
line (320-150,320-13,320+150,320-13);
line (320-150,320+12,320+150,320+12);
line (320-150,320-13,320-150,320+12);
line (320+150,320+12,320+150,320-13);
int... |
Forum: C++ Apr 6th, 2008 |
| Replies: 5 Views: 829 what other modules can be added this program in order to implement OOPS concepts? |
Forum: C++ Apr 5th, 2008 |
| Replies: 7 Views: 774 easiest way..
http://nchc.dl.sourceforge.net/sourceforge/mingw/MinGW-5.1.3.exe
mingw is windows port of the gcc.
Cygwin too is, but will come loaded with load of other softwares(which of course... |
Forum: C++ Mar 26th, 2008 |
| Replies: 5 Views: 829 im building a telephone directory. and the code is given below.
i am using file system to store the record which i get from the user. and then i should be able to do searching, deleting, sorting... |
Forum: C++ Mar 23rd, 2008 |
| Replies: 4 Views: 1,838 |