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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
A

ask_you

@ask_you
About
Posts
46
Topics
21
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • unable to load driver
    A ask_you

    hello Sir, i have created a driver which i wish to load n unload dynamically as a non-administrator. but i cannot open the Service manger to create the service as non-administrator. how do i solve this problem? windows OS drivers get loaded even as non-administrator.. how is it done? how to load drivers statically then?? please help...

    C / C++ / MFC help question tutorial

  • how to execute an command during shut down or restart
    A ask_you

    i have developed and application where i handle the WM_ENDSESSION ON_MESSAGE(WM_ENDSESSION,OnMyEndSession) LRESULT CMyDlg::OnMyEndSession(WPARAM wParam, LPARAM lParam) { ShellExecute ( NULL, "open", "C:\\abc.exe, NULL, NULL, SW_HIDE ) ; } But the executable(abc.exe) is not executed.

    C / C++ / MFC tutorial

  • IP address box
    A ask_you

    DavidCrow wrote: INITCOMMONCONTROLSEX iccex; iccex.dwSize = sizeof(iccex); iccex.dwICC = ICC_INTERNET_CLASSES; InitCommonControlsEx(&iccex); well, this was exactly what i had done? anyway, thanx.

    C / C++ / MFC c++ question

  • Tab Control in window
    A ask_you

    i had created the controls with WS_TABSTOP. how do i set the tab order movement?

    C / C++ / MFC question

  • IP address box
    A ask_you

    anyways, i was successful in creating IP box!! thanx

    C / C++ / MFC c++ question

  • IP address box
    A ask_you

    thanx for the reply. but i still don't know what is needed to be done. so SysIPAddress32 is not a default class like BUTTON? is it user created? that is, i have to create the IP address box?

    C / C++ / MFC c++ question

  • IP address box
    A ask_you

    i want to implement non-MFC based IP address box. i tried the following as advised by Alok when i posted the mail earliar. i tried to implement the IP address using the following code hWnd = CreateWindowEx(NULL,ClsName,WndName,WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 300, 200, NULL, NULL, GetModuleHandle(NULL), NULL); HWND IPAddrWindow = CreateWindow("SysIPAddress32",NULL, WS_VISIBLE|WS_CHILD,35,55,250,30,hWnd,NULL,NULL,NULL); But the IP Address box is not created... only the blank base window is displayed. where am i wrong? thanx in advance

    C / C++ / MFC c++ question

  • IP address
    A ask_you

    Thanx i tried to implement the IP address using the following code hWnd = CreateWindowEx(NULL,ClsName,WndName,WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 300, 200, NULL, NULL, GetModuleHandle(NULL), NULL); HWND IPAddrWindow = CreateWindow("SysIPAddress32",NULL, WS_VISIBLE|WS_CHILD,35,55,250,30,hWnd,NULL,NULL,NULL); But its not created... only the blank base window is displayed. where am i wrong?

    C / C++ / MFC c++ question

  • IP address
    A ask_you

    Is it possible to create IP address box without using MFC? i mean a plain Win 32 application

    C / C++ / MFC c++ question

  • client-server
    A ask_you

    can u provide me with some working example on raw socket? any links? thanks in advance

    C / C++ / MFC question sysadmin help

  • client-server
    A ask_you

    hello, i m developed a simple client-server application. now i want that in my server i don't accept connections from a list of IP addresses. how do i accomplish it. After accept() call i tried to check the IP of the connecting client and then used closesocket() to close the connection. But the problem is that the client gets connected as the connect() call from the client side works. i don't want that to happen. i want that the server should not accept connection from the list of IPs rather than accepting and then breaking. how do i achieve it? thanx in advance

    C / C++ / MFC question sysadmin help

  • MAC address
    A ask_you

    system A am on a LAN. is it possible for system A to know the MAC address of all systems on the LAN. if so, how?

    C / C++ / MFC question

  • download executables from web page
    A ask_you

    You have written: You can have a Web Service exposed through your webserver and your application can contact the same But how do i do? please help out. some sample code? or just some idea how will my application contact the server? what sort of communication is needed?

    Web Development question sysadmin

  • client-server application
    A ask_you

    i want to develop a client-server application where the client application is an executable. whenever the executable starts, it should first contact the server, get validated and only then start. the purpose behind it is to see that only those machines for which the server maintains a list can run the executable. can any1 suggest me some sample code or some suggestions on how to proceed?

    C / C++ / MFC sysadmin tutorial question

  • download executables from web page
    A ask_you

    i think i can handle the first part of the query. now, let me re-phrase my second requirement. i want that everytime my EXE starts it should first validate with the server. how do i do? any sample code?

    Web Development question sysadmin

  • html code to put an executable on a web page
    A ask_you

    thanks.. i had given execute permission for EXE. i have configured it properly and its running now

    Web Development html apache sysadmin windows-admin help

  • download executables from web page
    A ask_you

    i have uploaled my exe on the web server of our private net. now i want that whenever someone tries to download my exe, a pop-up box should come up which will ask for the license key. once the licence key is validated, only then the download should start. how do i implement it? Secondly since the exe will be hosted on intranet, so whenever someone tries to download my exe, i need to know the IP address of the system which is trying to download it, check whether its a valid internal address and only then ask for licence input. how do i implement it?

    Web Development question sysadmin

  • html code to put an executable on a web page
    A ask_you

    ya, its in zipped format. by not working i mean that the code < a href ="myexe/Setup.exe" > < b > CLICK HERE TO DOWNLOAD CAIR PERSONAL FIREWALL < /b >< /a > is working fine when i put this web page on a apache web server.(its downloading the file). but when i put this web page on IIS server, it does not download. its tries and finally times out

    Web Development html apache sysadmin windows-admin help

  • html code to put an executable on a web page
    A ask_you

    well, i tried to put an executable on a web page so that it can be downloaded. the code was CLICK HERE TO DOWNLOAD THE EXE FILE The code worked when i put the web page on apache web server. but its simply not working for IIS. can anyone point me out where the problem is?

    Web Development html apache sysadmin windows-admin help

  • download executables from web page
    A ask_you

    i have uploaled my exe on the web server of our private net. now i want that whenever someone tries to download my exe, a pop-up box should come up which will ask for the license key. once the licence key is validated, only then the download should start. how do i implement it? Secondly since the exe will be hosted on intranet, so whenever someone tries to download my exe, i need to know the IP address of the system which is trying to download it, check whether its a valid internal address and only then ask for licence input. how do i implement it?

    C / C++ / MFC question sysadmin
  • Login

  • Don't have an account? Register

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