start

Word Automation search in range

This is how I define the find object: Range rngDoc = m_oDocument.GetContent(); nEnd = rngDoc.GetEnd(); rngDoc.SetRange(nStart,nEnd);//do not search entire document -> faster Find fn = rngDoc.GetFind(); However, when I execute the Find, it finds objects that lay before the given start. Any idea how do I define where the...

Start a disabled windows service?

How do I start a disabled windows service from command line NET START "Service" doesn't work on disabled services ...

start .net application from start menu search

bla.exe (application alias) points to a .net application called wpfapp1.exe. When i add a key&value to eg. this key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\bla.exe and then start application using Run -> bla.exe it starts however when i start application using windows search i get an "windows cannot find w...

How do I redirect the ouput of a command when it is executed via the DOS START command

I can not figure out how to redirect the output of an executable run with DOS START command. When I use the following: start prog.exe par1 par2 par3 > output.file only the output from the START command goes into output.file when I want the output from the prog.exe to go to output.file. prog.exe writes output to its standard output...

Start app from within python

Hello, I'm trying to start an application using Python. I've seen that some people use startfile but I also read that it only works with Windows. I'm using Mac systems and hoping for it to work with them. Thanks, Aaron ...

PostgreSQL-Server doesn´t start

Hello, I would like to use PostgreSQL locally on my computer and have installed it. I use Windows 7. I am not able to start the PostgreSQL-Server. When using the "Start Server"-program, I get the following output in the dos command window: Start DoCmd(net start postgresql-8.4)... System error 2 (my translation) System cannot find the...

Problems with MediaPlayer, raw resources, stop and start

Hello everybody, I'm new in Android development and I have the next question/problem. I'm playing around with the MediaPlayer class to reproduce some sounds/music. I am playing raw resources (res/raw) and it looks kind of easy. To play a raw resource, the MediaPlayer has to be initialized like this: MediaPlayer mp = MediaPlayer.cre...

setting up git for a project with many existing snapshots

I need to set up a project for git revisionning. The project team has kept backup snapshots of about 40 of the current 200+ numbered builds. What would be the most efficient way to bring that into a new git repo? My thinking is the obvious one: use the oldest backup to init the repo, then walk through the 40 snapshots one by one, for ea...

Delphi 2010 freeze on start-up

I've set up trial Delphi 2010 for the testing. After some days it is started and freeze. I just can see web-page with "how-to-buy" and at the right side last edited project. But Delphi's window do not react on any mouse events. I've tried to reinstal and repair it. So... What I have to do? May be that project have bad files or some set...

[iPhone app] Detecting string starting with expression and case-insensitive

Hello ! In my iPhone app I'm actually detecting text/html content type before showing data in an UIWebView or UITextView. I detect this with a ContentType variable starting with "text/html", full variable looks like "text/html; charset=utf-8". So for the moment I use this : if (myContentType hasPrefix:@"text/html") This is fine, bu...

Any way to have Java Web Start automatically install shortcuts?

We're deploying a Web Start app that I and the other developers know how to install the shortcuts for (Control Panel -> Java on Windows, /Applications/Utilities/Java Preferences on OS X), but we have no reason to believe that end users know how to do this (or even know that it can be done). Is there a way to either install the shortcuts...

adding characters at the start and end of each line in a file

What is the best way to add some characters at the start and end of each line? something like quotes etc? Can it be done using Vim, or some other way? ...

Start and Stop Thread from WebApp

Hi, I write to understand if and how I could do the following thing. I have a WebApp for management, in which I should add a button (or something similar) to start and stop a Java thread (this thread polls on DB, send email and so on). The aim is to enable users to manage the life of this thread, deciding whether to keep it alive for a ...

Referencing external text data file in JNLP configuration.

Hi, I'm trying to figure out how to include a reference to a external data file (in text form) that I want distributed along with my application via Web Start (JNLP). Sifting through the documentation for the JNLP structure, I see that you can include references to JAR, nativelib, and extensions - however, I don't see a means to include...

C# 2.0 Display ALL Windows start up items (programs,dlls,services) for all users and be able to enable or disable them.

Id like to have a tab on my windows form application where there would be a drop down list for each user that shows DLLS, Services, Programs that start up with that user. Where can i look to start this project? iv searched google the closest thing i can find is this: http://www.dreamincode.net/forums/topic/121859-getting-all-startup-ite...

How to start/stop and monitor a java thread?

I am trying to figure out how to start and stop a serial interface. class SerialInterface implements Runnable{ // Stream from file @Override public void run(){ try { startInterface(); } catch (IOException ex) { Logger.getLogger(SerialInterface.class.getName()).log(Level.SEVERE, null, ex); ...

Android, launch an app from remote server

Hi, I want to launch an android application from a remote server, i can see that in J2ME there is a class called PushRegistry, this class resolve this problem in ME but in android I cant do it. Thanks in advance ...

c++ Start process with argument

i know how to Start process with argument but im trying to create a program that uses this arguments. for example IE8 uses Process::Start( "IExplore.exe","google.com"); as a argument to open new window with url google.com. i want my program to use the argument are send it but i don't know how to get the the argument. like Process::Start(...

c++ process start problem with path

I'm using process::start(PATH); to open up the process. The problem is, sometimes it finds the file and sometimes it doesn't. For example, this works: process::start("C:\text.exe"); But this doesn't work: process::start("C:\New Folder\text.exe"); Any idea what the difference is? ...

Launching activity through intents

Hi, I am implementing a simple app. I need to start an activity based on the state of the Activity. Lets take i am using a button to start the activity. 1. If the activity is not started, I need to start XYZ activity. 2. If the XYZ activity is on focus, then i need to close the activity on the button press. 3. If the XY...