What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: Scripting API Wishlist
Certainly, I believe that the new scripting environment should provide sufficient window and control support to remove the need of in-runtime XML rewriting. Matty has already informed me that this is high on his wish list. CodeEditControls and MenuB...
MattiScripting05-14-2010 at 09:30 AM
RE: Scripting API Wishlist
I made [url=http://shoutbox.menthix.net/showthread.php?ti d=65660&pid=938595#pid938595]that same request[/url] before, but I still think this should get more attention. There are many controls which you can define in the interface XML but which can'...
MattiScripting03-06-2010 at 09:31 PM
RE: [?] DateTimeControl
Hows about you search... [url=http://shoutbox.menthix.net/basicsearch.php?d o=search&sfrm=1&keywords=DateTimeControl&username= &fid=39&lookin=msg&sort=]Search Results[/url] [url=http://shoutbox.menthix.net/showthread.php?ti d=66010&pid=726861#pid726861]...
mattyScripting09-05-2007 at 12:17 PM
[?] DateTimeControl
Does anybody know how to set the time on a DateTimeControl... I can read it (it returns a string with GetControlText), but I can't set it to anything...
SpunkyScripting09-05-2007 at 12:10 PM
RE: [?] Registering notifications for a window control
Not possible, it is only for Plus! Windows.
mattyScripting11-18-2006 at 12:58 PM
[?] Registering notifications for a window control
Good, since the introduction of the PlusWnd::RegisterMessageNotification function I saw this as the solution to [url=http://shoutbox.menthix.net/showthread.php?ti d=65538&pid=721115]my child windows resizing problem[/url]. And yes, it was. By register...
MattiScripting11-18-2006 at 11:19 AM
[?] Setting the format of a DateTimeControl
Hey there! :) I'm having trouble once again. :P I'm currently trying to change the format of a DateTimeControl using the DTM_SETFORMAT message like this: [code]var DTM_SETFORMAT = 0x1032; Wnd.SendControlMessage('DatCDDate', DTM_SETFORMAT, 0, Lang...
MattiScripting09-09-2006 at 06:56 PM
[Solved] WriteString
Hello, I'm trying to change the custom dateTime format according to a variable, from a DateTimeControl. [code]var SysFormatStruct = Interop.Allocate(20); SysFormatStruct.WriteString(0, _dateFormat, true); //_dateFormat == "MM-dd-yyyy" -> Line ...
go2hellScripting09-09-2006 at 04:05 PM
Event when DateTimeControl changes?
Hello all! :) So far, I managed to set and get the value of a DateTimeControl. Now, the last thing I need from it is an event which will be called when the user changes the value of the control. I need this for updating the example in the options win...
MattiScripting07-17-2006 at 07:04 AM
RE: [Solved] DateTime
[url=http://shoutbox.menthix.net/showthread.php?ti d=62212&pid=683444#pid683444]Eljay's reply to DateTimeControl[/url] You can use the Windows API 8-) [code]var SW_HIDE = 5; var SW_SHOW = 0; Interop.Call('user32', 'ShowWindow', PlusWnd.GetContro...
mattyScripting07-14-2006 at 06:59 PM
[Solved] DateTime
I have a problem in setting the value of an DateTimeControl from within the script. Any idea if it is possible? i'm doing: [code] //example date var date = "14-07-2006"; newWnd.SetControlText("DateValue", date); [/code] where the date format ...
go2hellScripting07-14-2006 at 06:43 PM
RE: DateTimeControl
after a lot of testing and swearing this works :P [code]var DTM_SET_SYSTEMTIME = 0x1002; var GDT_VALID = 0; var SysTimeStruct = Interop.Allocate(16); SysTimeStruct.WriteWORD(0, 2006); //Year SysTimeStruct.WriteWORD(2, 1); //Month (1-12) SysTimeStruct...
EljayScripting07-01-2006 at 08:46 AM
DateTimeControl
I stumped the might -dt- on this one: How do i set the value for a DateTimeControl, from inside the script? the SetControlText doesn't work, the GetControlText works, to grab the info, but set doesn't?
NiteMareScripting07-01-2006 at 05:33 AM
RE: Countdown to Date Script
I'm also working on a countdown script, but I'm working the other way around: the visuals are almost done but it doesn't work at all! :P Anyway, there are many JS countdown scripts floating around on the web so that won't be a problem. I'm just ...
MattiScripting06-29-2006 at 05:32 AM
Getting the value of a DateTimeControl and some other help...
Hi all! Okay, now I got my DateTimeControl in my XML, I have to know how to get and change its value with my script. I don't know what kind of value it returns either, so please help me!!! :'( Thanks in advance!
MattiScripting06-27-2006 at 09:37 AM
RE: DateTime..., err, ComboBoxControl?
<Control xsi:type="DateTimeControl" Id="DateTimeTest"> <Position Top="221" Left="10" Width="125" Height="12" /> <Attributes> <AllowCalendar>false</AllowCalendar> </Attributes> <Format> <Predefined>DateTime<...
EljayScripting06-26-2006 at 08:17 AM
DateTime..., err, ComboBoxControl?
Can someone give me the syntax how to use the DateTimeControl in the interfaces XML? So, how to use all its attributes and so... :)
MattiScripting06-26-2006 at 07:47 AM
[Hide Excerpts]