windows-95

How can I make Windows 95 style buttons in Visual C#?

早过忘川 提交于 2019-12-10 03:32:00
问题 I am writing a program and I am just curious of how to put buttons that look like in Windows 95: (source: aos.co.za) I am using Visual C# Express 2010 with Winforms. Is this possible in the compiler/IDE I described above? 回答1: Normally you should let the user make that choice. They have the ability to do so. But, to answer the question, you need to disable the visual styles feature that was introduced in XP. Visual styles are enabled with a call to: Application.EnableVisualStyles(); typically

How to correctly have modeless form appear in taskbar

情到浓时终转凉″ 提交于 2019-12-08 17:00:02
问题 I am trying to achieve the age-old Delphi dream of having a modeless form appear in the taskbar. What is the correct way to have a modeless form appear in the taskbar? Research Effort These are my attempts to solve the problem. There are a lot of things needed to make it behave correctly - simply having a button appear on the taskbar is not a solution. Having a Windows application behave correctly as a Windows application should is my goal. For those who know me, and how deep my "shows

How can I make Windows 95 style buttons in Visual C#?

感情迁移 提交于 2019-12-05 03:23:34
I am writing a program and I am just curious of how to put buttons that look like in Windows 95: (source: aos.co.za ) I am using Visual C# Express 2010 with Winforms. Is this possible in the compiler/IDE I described above? Normally you should let the user make that choice. They have the ability to do so. But, to answer the question, you need to disable the visual styles feature that was introduced in XP. Visual styles are enabled with a call to: Application.EnableVisualStyles(); typically as the first act of your Main method. Remove that call, and your application will not be styled. With

C++ FTP Library? [closed]

南笙酒味 提交于 2019-11-29 20:28:48
I am looking for an FTP Library for C++ to do basic ftp functions like authenticate, change directory, upload files, etc. but I can't seem to find one. I've searched over Google, Sourceforge, and CodeProject (well, there's one complete FTP CLIENT project for Win95 in CodeProject, however I don't need the entire ftp client..), but I only found C# FTP libraries. Could you guys please suggest me a good one? or maybe an alternative? Thanks. fyi: Microsoft Visual C++ 2008 Express Edition is my only IDE, and I prefer precompiled static library (*.lib) that can be statically linked (if any) drowneath

How to minimize a window to the taskbar? (i.e. not iconify)

蓝咒 提交于 2019-11-28 07:48:25
i have a window that i want to minimize (to the taskbar), so i call ShowWindow : ShowWindow(Handle, SW_MINIMIZE); Except that rather than minimizing itself (to the taskbar), the window is iconified : The window is unparented: How do i minimize a window to the taskbar? Update: Following some advice from 2002 , i try setting the WS_EX_APPWINDOW window style and/or ensuring the window has no owner: Unfortunately, that changes the behavior of my (Delphi) application because there is now two taskbar icons for my application, rather than one: This, of course, is an artifact of Delphi (5); and

How to minimize a window to the taskbar? (i.e. not iconify)

独自空忆成欢 提交于 2019-11-27 01:59:10
问题 i have a window that i want to minimize (to the taskbar), so i call ShowWindow : ShowWindow(Handle, SW_MINIMIZE); Except that rather than minimizing itself (to the taskbar), the window is iconified : The window is unparented: How do i minimize a window to the taskbar? Update: Following some advice from 2002, i try setting the WS_EX_APPWINDOW window style and/or ensuring the window has no owner: Unfortunately, that changes the behavior of my (Delphi) application because there is now two