search for: showmessage

Displaying 12 results from an estimated 12 matches for "showmessage".

2003 May 20
7
ShowMessage (second attempt)
...elp will be *greatly* appreciated. ------ Original Message ------- I would like to shut down samba before I begin my backup routine. Before I do this, I would like to send a message to the users who are logged in on their Windows machines, asking them to log out. I would prefer this to be like a ShowMessage dialog box, if possible. Could anyone please tell me how I can do this? A Redhat tech support specialist told me he thinks this is possible through samba or smb-client. __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com
2006 Nov 04
0
stumped trying to escape javascript
...mote_tag. I''ve got a javascript function that I call from within my render method in my controller, to take the contents of the flash and display them in a div that appears and then disappears. I''m using the following: render :update do |page| page << ''ShowMessage("'' + escape_javascript(flash[:notice]) + ''");'' .... end however, it fails to work if the flash message contains single quote characters. I''ve now tried the following variations: # works with double quotes, fails with single quotes page <...
2001 Apr 05
2
Digital Ear evaluation of Vorbis beta 4
For those who haven't yet seen this: EarGuy's Digital Ear (physiological model of the ear based on work by Frank Baumgarte) has just finished rating the sound quality of Vorbis beta 4 at 128 kbs using 30 random 10-second selections of music: http://pub41.ezboard.com/fr3mixfrm4.showMessage?topicID=33.topic Two samples on which the Ear says Vorbis performed uncharacteristically poorly are on my iDrive at: https://www.idrive.com/miyaguch/files/Shared/?curr-node=8821135668693434409 as s27VorbisTest.wav and s37VorbisTest.wav. After listening to them, I can probably agree with s37, w...
2006 Jun 20
1
DAO 3.5 and OLEAUT32.DLL troubles...
...enRecordset('SELECT Format(#1/1/2000#, "yyyy", 2) FROM TConfig', dbOpenDynaset, _, _); // This always works: //daors:= daodb.OpenRecordset('SELECT * FROM TConfig', dbOpenDynaset, _, _); daors.Free; daodb.Free; daodbeng.Free; ShowMessage('Tutto ok'); except on e: Exception do ShowMessage('Exception: ' + e.ClassName + '; Msg: ' + e.Message); end; end;
2006 Nov 27
1
R.DLL mapping by P/Invoke
...public dgReadConsole readConsole; [MarshalAs(UnmanagedType.FunctionPtr)] public dgWriteConsole writeConsole; [MarshalAs(UnmanagedType.FunctionPtr)] public dgCallback callback; [MarshalAs(UnmanagedType.FunctionPtr)] public dgShowMessage showMessage; [MarshalAs(UnmanagedType.FunctionPtr)] public dgYesNoCancel yesNoCancel; [MarshalAs(UnmanagedType.FunctionPtr)] public dgBusy busy; public RUIMode characterMode; }; //[UnmanagedFunctionPointer(CallingConventio...
2008 Mar 19
1
R_ParseVector problem: it's cutting off after the decimal point
...myReadConsole; // function which writes output from R to a console Rp->WriteConsole = NULL; Rp->WriteConsoleEx = myWriteConsoleEx; // called during i/o, eval, graphics in ProcessEvents Rp->CallBack = myCallBack; // handles messages for the user from R Rp->ShowMessage = myShowconcise Message; // user interaction: a user is asked a question an should answer with YesNoCancel (maybe dialog) Rp->YesNoCancel = myYesNoCancel; // on R state changed: busy(=1)/idle(=0) Rp->Busy = myBusy; Rp->home = getRUser(); // R-Settings... Rp-...
2007 Oct 17
0
Using R.dll in .NET IPC
...public dgReadConsole readConsole; [MarshalAs(UnmanagedType.FunctionPtr)] public dgWriteConsole writeConsole; [MarshalAs(UnmanagedType.FunctionPtr)] public dgCallback callback; [MarshalAs(UnmanagedType.FunctionPtr)] public dgShowMessage showMessage; [MarshalAs(UnmanagedType.FunctionPtr)] public dgYesNoCancel yesNoCancel; [MarshalAs(UnmanagedType.FunctionPtr)] public dgBusy busy; public RUIMode characterMode; }; //[UnmanagedFunctionPointer(CallingConventio...
2012 Aug 20
0
Problem with initializiing R main loop under Windows (R.dll-version: 2.15.1)
...E; RParams.R_Slave = FALSE; RParams.RestoreAction = SA_RESTORE; RParams.SaveAction = SA_NOSAVE; RParams.rhome = get_R_HOME (); RParams.home = getRUser (); RParams.CharacterMode = LinkDLL; // RGui; RParams.ShowMessage = RShowMessage; RParams.ReadConsole = RReadConsoleWin; RParams.WriteConsoleEx = RWriteConsoleEx; RParams.WriteConsole = 0; RParams.CallBack = RDoProcessEvents; RParams.YesNoCancel = RAskYesNoCancel; RParams.Busy = RBus...
2014 Oct 07
2
[R logs] Help in develop a simply logs package
Hi, With the use of R in production, it is necessary to have a system of logs effective, and light. Package exist as to futile.logger, but it require the additional coding of logs. So it is thus impossible / very difficult to use it with all package them used in the calculation Our idea is to develop one packages global, simple, who would allow to identify all the errors, warning, message
2006 Jan 16
11
Preventing bubble
I''m trying to prevent double ajax requests when I have nested onclick handlers. I have a table with clickable column headings (for sorting by that column). I have onclick handlers on both the <th> and the <a> link so that clicking anywhere on the table heading should work. <th onclick="window.location.href=''http://foo?sort=foo'';">
2005 Sep 22
5
Prototype lib : for-each loops and DontEnum
...n("<br /> j = ["+j+"]"); } document.writeln("<br /><br /> Prototype Object Test "); var TestClass = Class.create(); TestClass.prototype = { initialize: function(arg1,arg2,arg3) { this.a = arg1; this.b = arg2; this.c = arg3; }, showMessage: function(msg) { alert(msg); }, forToString: function() { document.writeln("<br /> c style for loop"); for (var i = 0; i < this.length; i++) { document.writeln("<br /> i["+i+"] = ["+this[i]+"]"); } },...
2005 Oct 13
3
Tweaks of Array.prototype
Hi all, I encountered a big problem when trying to use Scriptaculous and Htmlarea in the same page. The Htmlarea code uses a lot of "for (var i in array_variable)" to iterate on array elements. Problem is that prototype.js augments Array.prototype, which then show up in the iteration, severely breaking htmlarea. The easy workaround is for sure to use "for (var i = 0; i <