diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-02 04:48:53 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-02 04:48:53 +0000 |
commit | 2beea6e387b2ea45634f7b11ab33ca60bb9c7bb0 (patch) | |
tree | decbfda1c7082704f5d5bf1520ebde114fa0db8d | |
parent | 5be409c981e54efd335f311f082bc6a3dc18fadf (diff) |
fix to options dialog
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@239 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | MySpace/MySpace.rc | 25 | ||||
-rw-r--r-- | MySpace/version.h | 2 |
2 files changed, 14 insertions, 13 deletions
diff --git a/MySpace/MySpace.rc b/MySpace/MySpace.rc index 85b9ea0..311a321 100644 --- a/MySpace/MySpace.rc +++ b/MySpace/MySpace.rc @@ -27,13 +27,14 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_DEFAULT //
IDD_OPT1 DIALOGEX 0, 0, 246, 179
-STYLE DS_SETFONT | WS_POPUP
-FONT 8, "MS Sans Serif", 0, 0, 0x0
+STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_VISIBLE
+EXSTYLE WS_EX_CONTROLPARENT
+FONT 8, "MS Shell Dlg", 400, 0, 0x0
BEGIN
GROUPBOX "MySpace",IDC_STATIC,26,17,201,89
RTEXT "E-mail:",IDC_STATIC,40,39,54,8
- RTEXT "Password:",IDC_STATIC,35,72,59,8
EDITTEXT IDC_ED_EMAIL,113,36,89,14,ES_AUTOHSCROLL
+ RTEXT "Password:",IDC_STATIC,35,72,59,8
EDITTEXT IDC_ED_PW,113,68,89,14,ES_PASSWORD | ES_AUTOHSCROLL
END
@@ -115,15 +116,6 @@ END /////////////////////////////////////////////////////////////////////////////
//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_MYSPACE ICON "MySpace.ico"
-
-/////////////////////////////////////////////////////////////////////////////
-//
// DESIGNINFO
//
@@ -140,6 +132,15 @@ BEGIN END
#endif // APSTUDIO_INVOKED
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Icon
+//
+
+// Icon with lowest ID value placed first to ensure application icon
+// remains consistent on all systems.
+IDI_MYSPACE ICON "MySpace.ico"
#endif // English (Australia) resources
/////////////////////////////////////////////////////////////////////////////
diff --git a/MySpace/version.h b/MySpace/version.h index 775d2aa..a59fd8a 100644 --- a/MySpace/version.h +++ b/MySpace/version.h @@ -5,7 +5,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 0
#define __RELEASE_NUM 1
-#define __BUILD_NUM 9
+#define __BUILD_NUM 10
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|