- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
46 Posted Topics
Hello guys. I successfully loaded local files in Spring Web MVC Application, such as javascript files, css files or image files. They were working fine untill yesterday. All the pictures are not being rendered in JSP view. An error is shown similar to that of title. Here is my configuration. … | |
Hello. I have a very basic softphone. I can make and recieve calls on it. But the problem is: it does not have a ringtone. Now I could use other phones like xlite but I was wondering if there is a way to setup a custom event (may be playing … | |
Re: One which I used to play for hours was: Dave Game You can probably develop this game with a couple of levels. | |
Re: Most of the times, variables and the objects (of classes) have meaning ful names. What you can do is: select the variable's (or object's) name and right click on it. A popup will show up. From here, it depends on which language you are using. - If you are using … | |
Re: Well this works fine to me. I have added two other ways you can do this thing. Here is the code. int answer = 0; int num1 = int.Parse(textBox1.Text); int num2 = int.Parse(textBox2.Text); int num3 = int.Parse(textBox3.Text); int num4 = int.Parse(textBox4.Text); answer = num1 + num2 + num3 + num4; … | |
hello guys... In my program, user will first need to enter the credentials on **Tab1**, in order to be able to see the rest of the tabs (and controls on it). If wrong credentials are given then upon clicking any other tab, for a fraction of second it shows the … | |
Re: Well English is not my first language but still I think I could not understand what your problem is? I think this is where you are facing difficulty. I dont see the use of **new** keyword here which is fairly easy. >Use the new operator to create either a Ship, … | |
Re: Do the following links work for you as well? [1 - Removing whitespace (CodeProject)](http://www.codeproject.com/Articles/101306/Removing-whitespace) [2 - Removing white space (CPlusPlus)](http://www.cplusplus.com/forum/beginner/9557/) | |
Re: [Lucky You - Here is solution](http://lmgtfy.com/?q=video+player+in+c%2B%2B) | |
hello guys.. I am trying to make a simple tab control dialog-based application. Well I succeeded to do so. But I am facing problem in recieving data. I have put an EditBox onto the dialog (used for the *Tab Client Area*) but it is not giving the values back. Here … | |
hello guys... I have an html page inwhich I collect some data using text boxes. Now in this page, I have button and I set the action attribute of [B]<form>[/B] a php script like this. [CODE] <form action="test.php" method="post"> ----- [/CODE] Now this does the job. But the problem is … | |
hello guys... I read some articles to deploy my web site on IIS 7 which I followed exactly I was told to. Now simple aspx pages are deployed successfuly but web applications that have database with it, are not deployed as expected. For example, I have stored my user name … | |
hello guys.... I have time in char[] format but I need to convert it to CString. Here is what I have but it does not work [CODE] GetSystemTime(&t); char time[60] = ""; char y[20],mon[20],d[20],h[20],min[20],s[20]; sprintf(y, "%d", t.wYear); sprintf(d, "%d", t.wDay); sprintf(mon, "%d", t.wMonth); sprintf(h, "%d", t.wHour+5); sprintf(min, "%d", t.wMinute); sprintf(s, … | |
Re: Just a quick look suggests that you need to to create a web setup project for your website. When you run the setup it will register the Oledbclient for use in your .net environment. Here is the Link..[URL="http://weblogs.asp.net/scottgu/archive/2007/06/15/tip-trick-creating-packaged-asp-net-setup-programs-with-vs-2005.aspx"]http://weblogs.asp.net/scottgu/archive/2007/06/15/tip-trick-creating-packaged-asp-net-setup-programs-with-vs-2005.aspx[/URL] | |
Re: You can start with lieral control as well because many people dont know how to embed HTML in ASP.NET which sometimes becomes necessary. | |
hello guys.. I have a gridview in which I show wave file paths and a button control to Play them. Now everything is fine like im getting records (using RowCommand function of GridView) and showing paths. But I am unable to play the sound. I am using <Object> tag embedded … | |
hello guys... I am trying to play a wave file in a small asp.net project. Now I want to embed HTML in asp.net so that I can use [B]<object>[/B] tag of HTML to play the wave file. Following is the code to get row index from gridview, from the row … | |
hello guys... I have been trying hard to connect to SQL Server using MFC but could not do that. No proper examples I could found. I know this can be done using ADO (ActiveX Data Object with COM) but have been unable to do that. Please can anyone of you … | |
Re: [QUOTE]Before people go why would i want to create an array of size 0[/QUOTE] well im not seaoned programmer but how can we create an array of size ZERO? It should contain atleast one element but you asking to create an array with no elements (if im not mistaken). | |
hello guys... im writing small application for TAPI. But this error... I dont know, how I am getting this error. Compiler is complaining that [B]----- ICommDlgBrowser2: base class undefined[/B] here is the code [CODE] EXTERN_C const IID IID_ICommDlgBrowser3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("c8ad25a1-3294-41ee-8165-71174bd01c57") ICommDlgBrowser3 : public ICommDlgBrowser2 { public: virtual … | |
Re: If simple means Add, Delete and Show records based on some key then we can us the simple file handling of C++. fopen(), fclose(), fread() and fwrite() had done a fairly good job for me to make a small [B]Airline Reservation System[/B] using Turbo. | |
hello guys... i am trying to make a dll in vc++. Now I need to use some private function in the dll so that they might do some work for other functions that are called by original application. Here is what I am trying to do [CODE] namespace MyDll { … | |
hello guys...I have this library file which is error free since it builds successfuly. Now when I include this file into a DLL (after setting all the neccessary paths), more than 95% of the 166 error are comprised of these two errors [CODE] error C4430: missing type specifier - int … | |
Re: [QUOTE]I know how to do it in main function but i am confused about using it with class.[/QUOTE] Then whats the problem. just map that functionality into the function OR if you are unable to do that, then usually it means that your program structure is not good . You … | |
Re: I believe that LOOPS can be very good for learning the programming. You should try to write algos for such programs (on paper with pencil) and then try to write equivalent program in C/C++. Once again, such programs will boost you programming ability IFF you try such problems. | |
hello guys.... I am making small TAPI prof which tells about the incoming of the calls. - When first time I call, it detects the incoming call. - But when I drop the call and Call again, it does not detects it. here is small code that is responsible for … | |
hello guys... when we press F12 in visual studion envirnoment, it takes us to the definition of the function (and Shift+F12 to declaration) but what is the hotkey for going back where we were (I mean back to the usage of function where we pressed F12)?? thnx | |
hello guys...Due to some reasons I need to pass a variable's address to MeessageBox(). I am using a function which returns a pointer to the item selected from combo box. Now I want to show this item's name in the MesageBox(). How can I do that? thnx`````` | |
hello guys...i am trying to compile this project but getting this error. I have specified all the neccessary libraries and include files but I dont know why it is looking in wrong direction and showing me these errors It says [B]LINK : fatal error LNK1104: cannot open file '..\..\..\wrong path\src\debug\file_name.lib[/B] … | |
hello guys...im getting this error. Looked for this but could not find some solution [CODE] error C3861: "xxxxx" identifier not found [/CODE] How can I fix this error? thnx | |
hello guys....I have a program which is a GUI. - When I [B]RUN[/B] the program and do some testing; it is good and nothing happens. - But on the same [B]RUN[/B], when I do some testing, it crashes. Every time I run the program, I find the same results. So … | |
hello guys...i have a know-how of PHP and made a project as well using PHP in my university. Now I am working on a complex problem and I am asked to do this in ASP.NET. I know it is easy to follow ASP.NET (and is not a rocket science...lol) but … | |
hello guys... I have a file [B]MyClass.cpp[/B] inwhich I declared a vector array. I then added some string data to it and want to access it in [B]MyProjDlg.cpp[/B]. It is dialoged based app in vc6. Here it is [code] MyClass.cpp ----------- using namespace std; typedef vector<LPTSTR> StudentData; //some code here... … | |
Re: Wa Alaikum Salaam.....just go and do your home work. If you have tried something; show it to us. | |
Re: [QUOTE]hey frnz i need 2 make a c++ project ...but i dunno wat 2 make im so confused help me out..i need a guidline [/QUOTE] This question makes absolutely no sense to me. If you are new to C++ then go find some good book. If your new to some … | |
hello guys...how can i use iostream.h in VS2008?? im using following code but it is no t working... [CODE] #include <windows.h> #include <iostream.h> HANDLE hEvent; DWORD WINAPI SampleThread(LPVOID iValue) { int iFinish = 120; for(int i=100;i<=iFinish;i++) cout<<i<<endl; SetEvent(hEvent); return 0; } void main() { HANDLE hThread; DWORD dwGenericThread; hThread = … | |
Re: This is most probably a linker error. It says that you are using some function but not providing its implementation. Now whatever the function you are using, you have to link it against its liberary. How can you use [CODE]printf() [/CODE]without including [CODE]stdio.h[/CODE] | |
hello guys....lets suppose I have two projects. Now I want to integrate them using visual studio 200X, how can I do that? thnx | |
Re: well in assembly language it is very easy to store bits. You can easily write a routine for this purpose, look for the [B]topic left[/B] shift and [B]right shift[/B] | |
hello guys...im writing simple TAPI app which, if I call to my landline number, prints the message.If you need variable declarations and initialization, I"ll give, but i know they are fine. This code should work but it does't, everything looks fine here...:confused: [CODE] void WINAPI TapiInitialize() { LPLINEDEVCAPS lineDevCaps = … | |
hello guys...I want to learn the above mentioned topic. Can you suggesst some book or forum to learn this?? thanx | |
Re: [QUOTE][CODE] cin>>"function"; int num = 0; [/CODE][/QUOTE] what do you mean by this ==> [B]cin>>"function";[/B] | |
hi guys...when we have used Sleep() function, then how can we get out of this Sleep() function....Lets suppose we have used Sleep() for 10 minutes and I want to terminate the prog after 2 mins, here is the situation im using [code=c] someFunc(); printf("\nProg will not terminate for next 5 … | |
hello guys...if it is simple question plz excuse me... [B]1)[/B] I have a var associated with ListBox (you know adding var to the control in MFC). Now I can access it in one class [B]"MyProgDlg.cpp"[/B] but can't access it in another class [B]"classA.cpp"[/B], why is this so [B]2)[/B] how do … | |
Re: [QUOTE][CODE] copy[size] = 0; for(int i = 0; i < size; i++) cout << copy[i]; [/CODE][/QUOTE] Lets say copy has 10 elements, now he is assigning all those elements a value of 0 and showing it. | |
hello guys...i have a LPTSTR variable and I want to show that on console how do I do that..Here is what I have but, off course it does't work..if it is tooo simple question, plz excuse me...thanx [code=c] lpszDevName = (LPTSTR)((LPBYTE)lineDevCaps + lineDevCaps->dwLineNameOffset); printf("%s",lpszDevName); [/code] |
The End.