Hi, How to get data when When we use on the webpage we get the option to select the file to be read. Upon submitting we get the data right but how to copy the recieved data or send to server?? The control goes to below code upon submitting. if(request->getMethodType() == HttpMethod_Post) { }
shir_k
Posts
-
Reading a file in local drive using Java script -
Reading a file in local drive using Java scriptServer side code is in CSP. Upon using submit button, HttpMethod_Post is called. In HttpMethod_Post function fopen will not work as path is in local PC and server is in the device How to copy the data or send the data to server in the device?? Can you please provide code or link.
-
Reading a file in local drive using Java scriptI was thinking it will only help to browse the path. Will try. Thanks
-
Reading a file in local drive using Java scriptHi, Using file input type we can only browse the file, my requirement is 1)Browse the binary file 2)Read the contents of the file 3)store the file contents 4)send the stored file contents to server.
-
Reading a file in local drive using Java scriptHi, Is there any other method to read without using Active X control? Thanks
-
Reading a file in local drive using Java scriptHi, Need to create a program using Javascript to read the binary file located in the PC(C or D drive) and copy the file contents to a variable in Java Script and send the file data to server. Can this be done without using Active X contols? Am using 'file' input type in HTML 1.0 for getting the path of the file.
-
Redistributing of exe devloped using VC++ 6.0Thanks for the help.
-
Redistributing of exe devloped using VC++ 6.0Please let me know how to set it.
-
Redistributing of exe devloped using VC++ 6.0Thanks for the quick reply. One clarification by setting Use MFC static libraty in the General tab of project setting means both MFC and C runtime libraries are statically linked, am i correct?
-
Redistributing of exe devloped using VC++ 6.0Hi, Do we require .Net framework and MFC runtime to run the exe developed in VC++ 6.0 in the system where Visual studio or VC++ 6.0 is not installed. The exe is built using static linking (set in project setting). Thanks in advance
-
Creation of install shieldThanks for the information. It helped me in identifying the DLLS used by the project. Do .Net frame work and MFC runtime is required to run the exe developed using Microsoft Visual C++ 6.0. Thanks kavitha
-
Creation of install shieldHi To create installer (Install shield) please let me know if following files are sufficient or not Project related files: Exe file *.BSC Help file Contents file DLL’s: ADVAPI32.DLL COMCTL32.DLL COMDLG32.DLL GDI32.DLL KERNEL32.DLL MSVCRT.DLL NTDLL.DLL OLE32.DLL OLEAUT32.DLL OLEDLG.DLL OLEPRO32.DLL RPCRT4.DLL SECUR32.DLL SHELL32.DLL SHLWAPI.DLL USER32.DLL WINMM.DLL WINSPOOL.DRV (Above DLLs I got from Dependency walker) Do we need to include MFC runtime and .Net framework while creating installer? Thanks
-
Com is not opening correctly, is any dll missing?No i didn't get any error message.
-
Com is not opening correctly, is any dll missing?Hi, I have an UI developed using VC++. This UI identifies the com port in the system, upon selecting the com port and clicking OK button, the main application opens where commands is sent using com for communication with target. A usb to serial RS232 convertor for COM is being used. This UI is woking fine in some XP system. When this UI executed in newly installed XP machine, it identified the com port but on cliking OK the application is getting closed.Before clicking OK button the com port would be opened and connected using another button. Is any dll is missing? Thanks
-
Tab control and Modal dialog boxHi, Main window has a tab control that holds two modeless dialogs(Two tab panes is created) and a button-> on clicking this a modal dialog opens. Issue: On opening the Modal dialog box (by clicking button) the main window is disabled and also i can't change the tab panes on clicking the tab control -> this is correct as modal dialog box should not allow other controls to work until it is not closed, but if i click on the controls inside the tab pane (modeless dialog which is opened on tab control during initialization) the modal dialog gets disabled and goes behind the tab pane which is creating problem. Thanks
-
Open word document on clicking menuThanks u vey much Its working The problem was path of the file Thanks once again
-
Open word document on clicking menuoffice 2003 is loaded in the system. I will be giving only the exe to the customer, so we specify the path like this then we need to keep on changing the path where ever the document is copied. How to ovecome with this issue?
-
Open word document on clicking menuThanks I used the code sent by you but it not opening the document. Below is the code void CNUITApp::OnHelpUsermanual() { ShellExecute(NULL, "open", "C:\\Doc1", NULL, NULL, SW_SHOWNORMAL); // TODO: Add your command handler code here AfxMessageBox(_T("Feature not available gg"),MB_OK|MB_ICONINFORMATION); }
-
Open word document on clicking menuHi, I have created a User Interface which has a Help Menu in that i have USER Manual as submenu, when i click on User Manual sub menu it has to open an existing word document which contains details of how to use the User Interface. UI has been developed using MS VC++ .Please help me out. Thanks in advance
-
AfxMessageBoxI just want to pop up a message to the user indicating "data is going to load please wait for sometime", It is just a information and data will be loaded even if user press "OK" or cancel button so i wanted to remove it.