Search found 291 matches

by Tomio
Sun Dec 23, 2012 7:12 pm
Forum: Coding Questions
Topic: text from browser window
Replies: 14
Views: 3103

Re: text from browser window

As I said, I can locate the page in question.
And save the text I had selected (for further processing).
Still I'm busy with selecting the text by the tool itself.
But I'm confident to solve this soon.

Thanks for any help so far
tomio
by Tomio
Sat Dec 22, 2012 12:01 am
Forum: Coding Questions
Topic: text from browser window
Replies: 14
Views: 3103

Re: text from browser window

hm,
with this little code running in the background periodically, I can check for a keyword set by the called url with the <title> tag.

Procedure FindPartWin(part$)
r=GetWindow_(GetDesktopWindow_(),#GW_CHILD)
Repeat
t$=Space(999) : GetWindowText_(r,t$,999)
If FindString(t$,part$,1)<>0
w=r ...
by Tomio
Fri Dec 21, 2012 7:50 pm
Forum: Coding Questions
Topic: text from browser window
Replies: 14
Views: 3103

Re: text from browser window

perhaps I don't understand your reply.

The secretary has several windos open. None, one or more can be IE browser, others can be Word or whatever.
When she decides to check that particular url (from outside, another office department), my tool shortly after will notice and grab the text output. The ...
by Tomio
Fri Dec 21, 2012 5:17 pm
Forum: Coding Questions
Topic: text from browser window
Replies: 14
Views: 3103

Re: text from browser window

Sounds good.

The tool is to run as an office tool.
The user is a secretary (a lady).
If possible, the whole stuff should run in the background.
The tool is to be started once and check the available windows periodically for a special url.
If found it should grab the whole output (or part) somehow ...
by Tomio
Fri Dec 21, 2012 12:10 am
Forum: Coding Questions
Topic: text from browser window
Replies: 14
Views: 3103

Re: text from browser window

thanks.
I've read your answers and I have to think about it.
Yes, I can locate the window.
The problem is to read the html code.
Actually, it's not the code I'm interested in, but some short piece of the very large text-output.

tomio
by Tomio
Thu Dec 20, 2012 6:16 pm
Forum: Coding Questions
Topic: text from browser window
Replies: 14
Views: 3103

text from browser window

hello,
I need to build a tool (windows 7) to extract the html code from a browsers window.
Till now I can locate the corresponding window by a keyword in the window's title.

But how do I find the html text inside? I got stuck completely.
And to my surprise I'm not able to find something in the ...
by Tomio
Wed Aug 29, 2012 4:41 pm
Forum: Windows
Topic: software could cause damage
Replies: 2
Views: 1575

software could cause damage

I changed from XP to windows 7.
When I download the latest version, Win7 tells me the software could cause damage:
"...kann auf dem Computer Schaden anrichten".

The same with an older version.

What do you think?

Greetings
tomio
by Tomio
Tue Oct 18, 2011 1:11 pm
Forum: Linux
Topic: PB webserver smaller + faster than apache?
Replies: 5
Views: 2368

Re: PB webserver smaller + faster than apache?

@lakomet,
of course, this was not against you.
Your link points to a site written completely in russian.
The only text I can read are the urls.

tomio
by Tomio
Tue Oct 18, 2011 9:39 am
Forum: Linux
Topic: PB webserver smaller + faster than apache?
Replies: 5
Views: 2368

Re: PB webserver smaller + faster than apache?

>Are you sure its apache thats falling behind in speed and not mysql or php?
A good point I'll have to ask the developer.

>ramdisk
The phys.mem of the machines is at the limit.

@lakomet
> Look here
This is a russian zip-file. Don't expect me to open it. Even if its from the PB forum.

Thanks ...
by Tomio
Sun Oct 16, 2011 4:20 pm
Forum: Linux
Topic: PB webserver smaller + faster than apache?
Replies: 5
Views: 2368

PB webserver smaller + faster than apache?

Hello,

does anyone has experience with a websever coded with PB in Linux?

There is a company which runs apache.
Because of the heavy load the many requests are performed within several identical machines.

The question is: Do you think it is possible to build a PB webserver smaller + faster than ...
by Tomio
Sat Mar 26, 2011 11:41 pm
Forum: Coding Questions
Topic: ***SOLVED*** StringGadget() fails for text len > 2500
Replies: 4
Views: 1202

Re: StringGadget() fails for text len > 2500

as I said: probably it's not due to PB.

Perhaps someone has an experience of this kind?
I mean: PB wrongdoing(?) on one PC.

..tomio
by Tomio
Sat Mar 26, 2011 8:54 pm
Forum: Coding Questions
Topic: ***SOLVED*** StringGadget() fails for text len > 2500
Replies: 4
Views: 1202

***SOLVED*** StringGadget() fails for text len > 2500

****************************************************************************
the problem described below vanished after reboot!
I didn't shut down the PC for about 10 days. I prefer "standby" instead.
Just now it occurred to me to try a reboot ... and... everything is ok.
Sorry for havn't thought ...
by Tomio
Tue Oct 05, 2010 12:33 pm
Forum: Coding Questions
Topic: LeftMouseButtonDown + Up in a window
Replies: 1
Views: 706

Re: LeftMouseButtonDown + Up in a window

I forgot, in case someone is interested:

My window has a "self-built" header with the usual buttons (exit, maximize,...) plus some more.
The window contains a movie and I don't want a menu bar.

I need a LeftMouseButtonDown/Up somewhere in the header to move the window.

My solution for Windows+Mac ...
by Tomio
Tue Oct 05, 2010 10:22 am
Forum: Coding Questions
Topic: LeftMouseButtonDown + Up in a window
Replies: 1
Views: 706

LeftMouseButtonDown + Up in a window

I know there are many topics concerning the question: How to catch LeftMouseButtonDown + Up in a window?

On Windows I prefer the #WM_LBUTTONUP/DOWN solution.
But the program should run on Mac + linux too and I can't find a solution for this.

I would like to understand, why there still is no native ...
by Tomio
Sun Oct 03, 2010 11:45 am
Forum: Coding Questions
Topic: additional gadgets in the window header *solved*
Replies: 2
Views: 862

additional gadgets in the window header *solved*

there are 3 gadget for the standard window header available: minimize, maximize, close.

Is there any way to place another gadget/image/button there?
I have 2 functions to start/stop. But I would like to avoid putting these somewhere in the window.

tomio

thanks, I found a way: #PB_Window ...