Search found 44 matches

by clipper
Sat Aug 02, 2008 6:25 am
Forum: Coding Questions
Topic: Decoding digital signals from Soundcard
Replies: 0
Views: 741

Decoding digital signals from Soundcard

Is someone here who realized a software which could decode digital signals from the soundcard line in?
There are several services like Citycall, Skyper, AIS etc. which send digital information over VHF.
The software must read the raw signal and translate it with fft in digital information.
by clipper
Sat Jun 23, 2007 10:21 am
Forum: Coding Questions
Topic: Window not refreshed
Replies: 6
Views: 1990

Thanks a lot. :)
by clipper
Sat Jun 23, 2007 5:49 am
Forum: Coding Questions
Topic: Window not refreshed
Replies: 6
Views: 1990

Window not refreshed

In this code the window is not refreshed (empty) after I have called Openfilerequester()
A Reszisewindow() will not work!
What can I do, that the windows gadgets are shown during the fileoperations?


hwnd = OpenWindow(0, 0,0,300,300, "", #PB_Window_TitleBar | #PB_Window_ScreenCentered | #PB_Window ...
by clipper
Wed Feb 14, 2007 9:28 am
Forum: General Discussion
Topic: Making it so only one instance of a program can be opened
Replies: 16
Views: 7030

Thanks for your Remark Shardik!!

Because my Software uses ProgramParameter(0) to open files, I have to open the files only with the first instance of my Programm before I close the seceond instance!
Do do this, I need the handle of the already running Application.

The remark from http://www ...
by clipper
Tue Feb 13, 2007 9:40 am
Forum: General Discussion
Topic: Making it so only one instance of a program can be opened
Replies: 16
Views: 7030

fixed Version of Zapmanns code

GetWindow_(Hwnd, #GW_HWNDNEXT)
must called after the if endif construct because
the hwnd from the next Window will returned by IsLaunched




Procedure.l IsLaunched(Name$)
Hwnd = FindWindow_( 0, 0 )
While Hwnd <> 0
Txt.s = Space(256)
GetWindowText_(Hwnd, Txt ...
by clipper
Tue Nov 28, 2006 8:44 am
Forum: General Discussion
Topic: AVIRA's AntiVir doesn't like PB
Replies: 36
Views: 7505

Same result on my PB Install.

So unpacked the last Update in a new Folder and Avira beeps again!

Is it a Virus or only the same bitpattern?
by clipper
Tue Oct 10, 2006 1:28 pm
Forum: Tricks 'n' Tips
Topic: DISABLE A PANELGADGET ITEM
Replies: 11
Views: 7306

I think it is done...

Thanks a lot for your code srod.
What I missed, is that the panelcaptions is ghosted if the panel is disabled.



The lost gadgets in localmotion34´s code is a result from the function
disablepanelitem()
I think itm\lParam=0 or itm\lParam=1 overwrites the Panels handle so that the gadgets couldn´t ...
by clipper
Sun Oct 08, 2006 5:22 am
Forum: Tricks 'n' Tips
Topic: DISABLE A PANELGADGET ITEM
Replies: 11
Views: 7306

Because the code of localmotion34 destroyes the gadgets on the panel, i´ve looked around for a solution and have found this site:

http://hyper.sunjapan.com.cn/~hz/win32/commctl6.htm

Under "Tab Control" there is a property sheet with a property like "TCIS_DISABLED" ...
:twisted: I´m not so ...
by clipper
Sat Oct 07, 2006 1:06 pm
Forum: Tricks 'n' Tips
Topic: DISABLE A PANELGADGET ITEM
Replies: 11
Views: 7306

Trond wrote:I think you need a code to disable your caps lock key as well.
???
by clipper
Sat Oct 07, 2006 12:16 pm
Forum: Tricks 'n' Tips
Topic: DISABLE A PANELGADGET ITEM
Replies: 11
Views: 7306

Searching for a Solution to disable a Panel, I´ve found this thread.

Yes, the code works fine, the Panel could disabled, but my Gadgets are lost!!

Is meanwhile a better solution available?
I´ve searched all over the forum´s and didn´t find anything.
Or is there a snippet to ghost the caption of ...
by clipper
Mon Sep 25, 2006 7:21 am
Forum: Coding Questions
Topic: Highlight GadgetItem while dragover from another App
Replies: 1
Views: 824

Highlight GadgetItem while dragover from another App

There are many examples here how to enable drag and drop between Gadgets and how to acept Dropping Files from Outside using DragAcceptFiles_(hwnd,1) ...
In these examples I could see how to highlight a Treegadgetitem (using easyvent) during a dragover operation.

But I haven´t seen a example how to ...
by clipper
Mon Sep 18, 2006 9:24 am
Forum: Tricks 'n' Tips
Topic: Tree gadget drag and drop (uses EasyVENT).
Replies: 6
Views: 3095

Here my PB4 solution to enable drag´n drop from a ListIconGadget to a TreeGadget.
It is the modified Drag and drop items 4 Example from the EasyVENT Package by srod (Thanks a lot srod)


;EasyVENT demonstration program - Drag and drop items 5 (more complex example ...
by clipper
Wed Aug 16, 2006 11:27 am
Forum: Coding Questions
Topic: Search terms: ListIconGadget
Replies: 13
Views: 5007

Great! Thanks a lot for your snippet Bonne_den_kule!

You come from norway! I love your country. :-)
by clipper
Wed Aug 16, 2006 8:48 am
Forum: Coding Questions
Topic: Search terms: ListIconGadget
Replies: 13
Views: 5007

SHGetFileInfo_(file$, 0, @sh.SHFILEINFO, SizeOf(SHFILEINFO), #SHGFI_TYPENAME|#SHGFI_SHELLICONSIZE|#SHGFI_SYSICONINDEX|#SHGFI_DISPLAYNAME|#SHGFI_ICON);|#SHGFI_SMALLICON)
This code works great if I want to show the associated Icon in a ListView.
My Problem is, that I havn´t a file on a disk. I want ...
by clipper
Thu Aug 03, 2006 10:35 am
Forum: Coding Questions
Topic: Copy Files to a Samba Share
Replies: 2
Views: 1675

Thanks for the code droopy! It works fine!

but it will be my last recource because I don´t want to assign a drive letter with code overhead (Letter free ....).