Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

shir_k

@shir_k
About
Posts
71
Topics
23
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Reading a file in local drive using Java script
    S shir_k

    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) { }

    JavaScript java javascript html sysadmin tools

  • Reading a file in local drive using Java script
    S shir_k

    Server 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.

    JavaScript java javascript html sysadmin tools

  • Reading a file in local drive using Java script
    S shir_k

    I was thinking it will only help to browse the path. Will try. Thanks

    JavaScript java javascript html sysadmin tools

  • Reading a file in local drive using Java script
    S shir_k

    Hi, 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.

    JavaScript java javascript html sysadmin tools

  • Reading a file in local drive using Java script
    S shir_k

    Hi, Is there any other method to read without using Active X control? Thanks

    JavaScript java javascript html sysadmin tools

  • Reading a file in local drive using Java script
    S shir_k

    Hi, 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.

    JavaScript java javascript html sysadmin tools

  • Redistributing of exe devloped using VC++ 6.0
    S shir_k

    Thanks for the help.

    C / C++ / MFC csharp c++ dotnet visual-studio

  • Redistributing of exe devloped using VC++ 6.0
    S shir_k

    Please let me know how to set it.

    C / C++ / MFC csharp c++ dotnet visual-studio

  • Redistributing of exe devloped using VC++ 6.0
    S shir_k

    Thanks 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?

    C / C++ / MFC csharp c++ dotnet visual-studio

  • Redistributing of exe devloped using VC++ 6.0
    S shir_k

    Hi, 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

    C / C++ / MFC csharp c++ dotnet visual-studio

  • Creation of install shield
    S shir_k

    Thanks 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

    C / C++ / MFC csharp c++ dotnet help question

  • Creation of install shield
    S shir_k

    Hi 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

    C / C++ / MFC csharp c++ dotnet help question

  • Com is not opening correctly, is any dll missing?
    S shir_k

    No i didn't get any error message.

    C / C++ / MFC c++ com design question

  • Com is not opening correctly, is any dll missing?
    S shir_k

    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

    C / C++ / MFC c++ com design question

  • Tab control and Modal dialog box
    S shir_k

    Hi, 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

    C / C++ / MFC help

  • Open word document on clicking menu
    S shir_k

    Thanks u vey much Its working The problem was path of the file Thanks once again

    C / C++ / MFC design c++ help tutorial

  • Open word document on clicking menu
    S shir_k

    office 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?

    C / C++ / MFC design c++ help tutorial

  • Open word document on clicking menu
    S shir_k

    Thanks 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); }

    C / C++ / MFC design c++ help tutorial

  • Open word document on clicking menu
    S shir_k

    Hi, 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

    C / C++ / MFC design c++ help tutorial

  • AfxMessageBox
    S shir_k

    I 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.

    C / C++ / MFC
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups