Displaying 20 results from an estimated 5000 matches similar to: "Starting an exe from within the browser"
2006 Apr 15
1
Begin with Autocompleter
Hi list:
I''m a young developer that need a little help with scriptaculous "Autocompleter". I work with PRADO framework (http://www.xisc.com) and PHP as a script language. Now this is a little function in JavaScript for make a AJAX call and show the results without reload the entire page. See below:
1 function makeRequest(url,element) {
2 var http_request = false;
3 if
2011 Jan 20
0
Help required with VBScript - Missing cdo.Message
Hi all,
I have a vbscript which calls wscript.exe to send an email so it needs to know about cdo.message and cdo.configuration activex objects.
Can someone tell me how to install these activex objects so that wscript will find them?
Thanks for your help.
System: Fedora 14 with wine version 1.3.10 with winetools installed.
2008 May 13
0
MGeoRSS and IE
Hi,
Not sure where else to post this since MGeoRSS doesn''t seem to have its own
list.
I''m using MGeoRSS (http://brainoff.com/gmaps/mgeorss.html) because Google''s
GeoRSS API
(http://googlemapsapi.blogspot.com/2007/03/kml-and-georss-support-added-to-google.html)
doesn''t support local GeoRSS servers (yet - see
2011 May 30
4
Test for list membership
Hi,
I need some help with this one: how do I check whether a vector is
already present in a list of vectors.
I have seen %in% recommended in a similar case but that obviously does
not work here.
c(1,2,3) %in% list(c(1,2,3), c(4,5,6))
returns
[1] FALSE FALSE FALSE
which makes sense since 1, 2 or 3 are not elements of that list. I don't
really know how to move from there though.
Best
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
host static anyterm content locally,
url parameterize anyterm rows/cols/general param
update spec/makefile
Ideally I wanted and tried hard to put all this into a
seperate ovirt-server--anyterm subpackage, but we cannot
'reopen' the ovirt server virtual host defined in
ovirt-server.conf to add the neccessary rewrite rules. it would
be nice to figure out a way to do this
---
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Oops. My bad. I mean to write match-file being my match pattern. and a.rpt
being file generated by opt.
;RUN: FileCheck <match-file>a.rpt.gold --input-file=a.rpt.
mahesh
On Sat, Mar 31, 2018 at 6:57 PM, Mahesh Attarde <coder.mahesh at gmail.com>
wrote:
> That works. Thanks.
>
> One more followup question though.
> Once i run opt on bitcode, there is not useful
2018 Mar 31
3
Writing tests with Filecheck without emitting output to stdin
That works. Thanks.
One more followup question though.
Once i run opt on bitcode, there is not useful output/transform on bitcode.
this rpt files are extra.
I am hoping to do something like this,
; RUN: FileCheck --input-file=a.rpt.gold --check-prefix=CHECK-A < a.rpt
; RUN: FileCheck --input-file=b.rpt.gold --check-prefix=CHECK-B < b.rpt
i did not find much examples in tests hence
2009 Jun 23
2
Long to wide format without time variable
Hi all,
I am trying to convert a data set of physician death codings (each individual's cause of death is coded by multiple physicians) from long to wide format, but the "reshape" function doesn't seem to work because it requires a "time" variable to identify the sequence among the repeated observations within individuals. My data set has no order, and different
2008 Jan 19
1
Set Return Type XML in Prototype
Please help i can''t return xml data using prototype.
If i use data from direct xml file then it works fine but when i use
ajax request with header content xml it''s not working
My code just work on IE but in FF it does not working. My code sample
are given below
If any one already done this kinds of job Please help me as soon as
possible.
var xmlDoc;
function Claulate()
{
var
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Hi Mahesh,
On 31 March 2018 at 11:45, Mahesh Attarde via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> opt --my-pass <%s | Filecheck %s
>
> --my-pass generates files a.rpt b.rpt c.rpt . How do i write test without
> writing all 3 files to stdin.
You can run FileCheck over them on separate RUN lines assuming you
know the filename (which I assume you do since you'd be
2018 Apr 01
0
Writing tests with Filecheck without emitting output to stdin
See: http://llvm.org/docs/CommandGuide/FileCheck.html
It is not required to pipe output to FileCheck; there is the --input-file option, which allows you to run FileCheck on an existing disk file. Something like this:
FileCheck %s --input-file a.rpt --check-prefix=A
FileCheck %s --input-file b.rpt --check-prefix=B
FileCheck %s --input-file c.rpt --check-prefix=C
If there are common parts to each
2006 Apr 29
1
0.9.12 iexplore.exe mozilla activex control
I downloaded wine 0.9.12 yesterday, and saw the news about iexplore.exe
being included. So, I just had to try it. It downloaded the Mozilla
ActiveX control and installed it, but then after the installer
completed, I get the following errors:
fixme:shdocvw:iecs_QueryInterface unknown interface
{00020400-0000-0000-c000-000000000046}
fixme:shdocvw:iecs_QueryInterface unknown interface
2010 Sep 01
2
Running vbscript .vbs file in an EXE
Hi, I'm new to wine, and am having a bit of trouble.
I'm trying to run an EXE installer, which starts fine, prompts me for
a few questions, and creates a few directories, but at a certain point
it tries to run a vbs file, which fails.
The attempt to run the .vbs file causes this message to appear in an
alert window:
"There is no Windows program configured to open this type of
2010 Feb 25
1
sftp Batchmode command level error suppression does not work?
Hi guys -
OpenSSH sftp (on solaris)
>From man page
Termination on error can be suppressed on a command by command basis by prefixing the command with a `-' character (for example, -rm /tmp/blah* ).
This does not seem to work - instead the server seems to fail to recognize the command from the batchfile.
Consider this batchfile
mkdir tmp
cd tmp
put rpt.list
bye
We want to
2009 Oct 09
0
Wine release 1.1.31
The Wine development release 1.1.31 is now available.
What's new in this release (see below for details):
- Vastly improved monthcal control.
- Performance improvements for DIB sections.
- Several sound driver fixes.
- Beginning of ActiveX support in JScript.
- More Direct3D 10 work.
- More 16-bit dlls split off to separate modules.
- Support for attachments in MAPI.
- Various
2018 Mar 31
4
Writing tests with Filecheck without emitting output to stdin
Hello
I have pass operating on bitcode file which produces more than one
equivalent representation.
opt --my-pass <%s | Filecheck %s
--my-pass generates files a.rpt b.rpt c.rpt . How do i write test without
writing all 3 files to stdin.
I have considered CHECK-LABEL for each. it creates bulky checks.
Thanks
Mahesh
-------------- next part --------------
An HTML attachment was
2006 Feb 23
6
prototype ajax + xml response
Hi,
I am looking for a solution to use ajax.request object.
Return response text will be in xml format and I like to know how to
parse that xml information, so that I can put those info into the "span"
or "div" tags of my html page. Is there any easy way to parse that xml
info using prototype library?
Thanks,
kevin.
--
Posted via http://www.ruby-forum.com/.
2006 May 08
3
build in iexplore.exe
Hi
I want to start the buil-in iexplore.exe. I created a new .wine
directory and typed
#wine iexplore.exe
Then it tries to download the Mozilla ActiveX PlugIn and this is where
the problem starts:
The download window shows, but it doesn't start the download.
I am sitting behind a proxy server (no authorisation needed), and the
proxy is setup correctly:
ftp_proxy=ftp://proxy.sun.ac.za:3128
2011 Jun 29
1
tcgetattr: Inappropriate ioctl for device
Dear nut users,
I am running nut-2.6.0 on Slackware-Linux-13.37.0 with kernel 2.6.37.6.
I am trying to get the software work for a repotec UPS with model name: RPT-1003AU. The UPS communicates with the computer via USB. I know that the model is not officially supported but I want to try out whether it will work with some of the repotec drivers. Here is the result with the genericups upstype=13
2006 Mar 16
23
AJAX on Mobile Internet Explorer
Hi!
I try to get AJAX running on a mobile Windows Mobile 5.0 based device
and failed. There should be a JavaScript support but nothing happens.
Have any of you experience with the rails javascripts on a this platform
or are there any hints, documentation on the net?
tia,
--
Daniel V?lkerts
Protected by Anti Pesto.