﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
707	_GUICtrlMonthCal_Create	anonymous	Gary	"Ex.1
[autoit]
#include <GUIConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>
$hgui = GUICreate(""Month Calendar Create"", 1100, 600)
$hmonthcal = _GUICtrlMonthCal_Create($hgui, 0, 0, $ws_border)
GUISetState()
Do
Until GUIGetMsg() = $gui_event_close
GUIDelete()
[/autoit]

Ex.2
[autoit]
#include <GUIConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>
$hgui = GUICreate(""Month Calendar Create"", 1100, 600)
$hmonthcal = _GUICtrlMonthCal_Create($hgui, 300, 0, $ws_border)
GUISetState()
Do
Until GUIGetMsg() = $gui_event_close
GUIDelete()
[/autoit]

Ex.3
[autoit]
#include <GUIConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>
$hgui = GUICreate(""Month Calendar Create"", 1100, 600)
$hmonthcal = _GUICtrlMonthCal_Create($hgui, 400, 0, $ws_border)
GUISetState()
Do
Until GUIGetMsg() = $gui_event_close
GUIDelete()
[/autoit]

in ex.1, ex.2 and ex.3 i try move MonthCal horizontally,
but in 
ex.1 - 1 month
ex.2 - 2 months
ex.3 - 3 months

why?
i want 1 month with
_GUICtrlMonthCal_Create($hgui, '''400''', 0, $ws_border)

it is possible?

thank you"	Bug	closed	3.2.13.12	Standard UDFs	3.2.13.11	Blocking	Fixed		
