Thread: Question! Webpages

  1. #1
    Registered User
    Join Date
    Nov 2005
    Posts
    2

    Exclamation Question! Webpages

    Since I became interested in C programming or whatever language it is, i have had a lot of questions. can someone help me?
    How can you make an executable that when opens contains an internet webpage?
    and
    How can you make a splash screen that pops up while opening the executable?

    Thanx,
    TOm

  2. #2
    Registered User Queatrix's Avatar
    Join Date
    Apr 2005
    Posts
    1,342
    >> How can you make an executable that when opens contains an internet webpage?

    I'm not sure I know what you mean. If you mean you want your program to load an internet file, search this board for "read internet file". Anoytmouse tells you how some where.

    >> How can you make a splash screen that pops up while opening the executable?

    Make a WS_POPUP type window and print you image over the whole thing.
    (That may not be how real splash windows are made, but it works.)


    -- And welcome to the boards --

  3. #3
    Registered User
    Join Date
    Sep 2004
    Location
    California
    Posts
    3,268
    How can you make an executable that when opens contains an internet webpage?
    Easiest way is to use the internet explorer activex control.

  4. #4
    Reverse Engineer maxorator's Avatar
    Join Date
    Aug 2005
    Location
    Estonia
    Posts
    2,318
    How can you make a splash screen that pops up while opening the executable?
    Maybe call an own-made message after the window creation and lose the caption:
    Code:
      DWORD dwStyle = GetWindowLong(hWnd, GWL_STYLE);
      dwStyle &= ~(WS_CAPTION|WS_SIZEBOX);
      SetWindowLong(hWnd, GWL_STYLE, dwStyle);
    and then draw the flash screen, use Sleep, and then put the caption back

  5. #5
    Registered User
    Join Date
    Nov 2005
    Posts
    2
    Lol... i dont understand anything at all....
    maybe i should hit the tutorials before i try programming...
    ill get back and post if i get it to work...
    thanx.
    Tom

  6. #6
    --> FuelCap's Avatar
    Join Date
    Nov 2005
    Posts
    8
    Always first check the tutorials before posting...
    This doen't make any sense..

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Alice....
    By Lurker in forum A Brief History of Cprogramming.com
    Replies: 16
    Last Post: 06-20-2005, 02:51 PM
  2. Debugging question
    By o_0 in forum C Programming
    Replies: 9
    Last Post: 10-10-2004, 05:51 PM
  3. Question about pointers #2
    By maxhavoc in forum C++ Programming
    Replies: 28
    Last Post: 06-21-2004, 12:52 PM
  4. Question...
    By TechWins in forum A Brief History of Cprogramming.com
    Replies: 16
    Last Post: 07-28-2003, 09:47 PM
  5. Question, question!
    By oskilian in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 12-24-2001, 01:47 AM