Search found 36 matches

by Mortamer
Fri Jun 25, 2004 8:40 pm
Forum: General Discussion
Topic: Get the current URL from IE (or any other browser)
Replies: 4
Views: 1879

ok thanks, I'll get used to searching :P .
by Mortamer
Tue Jun 22, 2004 12:48 am
Forum: General Discussion
Topic: Get the current URL from IE (or any other browser)
Replies: 4
Views: 1879

I don't really understand that code, but are you sure it'd work for internet explorer? Wouldn't that just get the url from a web gadget?
by Mortamer
Sun Jun 20, 2004 5:07 am
Forum: General Discussion
Topic: Get the current URL from IE (or any other browser)
Replies: 4
Views: 1879

Get the current URL from IE (or any other browser)

Hello, I'd like to know a way to get the current URL for IE or any other browser? I'd like to get all of the URLs if their are multiple instances. Is this possible using PB?
by Mortamer
Sat Jun 19, 2004 3:33 pm
Forum: Coding Questions
Topic: Making a patcher
Replies: 6
Views: 2050

If I were making a patcher, I would have a txt file on my website with the file name, and either a file size or an rc4 checksum of the file. I'd download the file and compare the checksums with that of the other programs (and make sure all of the listed programs are there). If one of them is missing ...
by Mortamer
Sat Jun 19, 2004 3:26 pm
Forum: General Discussion
Topic: Mozilla web gadget
Replies: 5
Views: 2153

All I want to do is get the current URL, so is their any shortcut? I don't think I'd know how to make a pure API WebGadget lol.
by Mortamer
Sat Jun 19, 2004 4:46 am
Forum: General Discussion
Topic: Mozilla web gadget
Replies: 5
Views: 2153

The only thing I care about is getting the current website. Do you know how to do this with Mozilla (or any other browser for that matter)?
by Mortamer
Sat Jun 19, 2004 1:42 am
Forum: General Discussion
Topic: Mozilla web gadget
Replies: 5
Views: 2153

Mozilla web gadget

Ok, I found this website ( http://www.iol.ie/~locka/mozilla/control.htm ) but not sure if its really PB compatible. Is this possible to integrate in PB? And what about this? IEPatcher is a tool to scan an executable or DLL and patch it to replace instances of the IE control with the Mozilla control ...
by Mortamer
Thu Jun 17, 2004 5:14 am
Forum: Coding Questions
Topic: What is the AND symbol?
Replies: 3
Views: 1291

:P thanks for the reply!
by Mortamer
Thu Jun 17, 2004 3:26 am
Forum: Coding Questions
Topic: What is the AND symbol?
Replies: 3
Views: 1291

What is the AND symbol?

How do you do something like

Code: Select all

If Blah = 1 AND Blah2 = 8
?
by Mortamer
Wed Jun 16, 2004 11:42 pm
Forum: General Discussion
Topic: Alternate Web Gadgets for alternate browsers?
Replies: 0
Views: 903

Alternate Web Gadgets for alternate browsers?

I'm trying to make my program able to be integrated into as many browsers as possible, so if their are any other web gadgets (like ones for mozilla, or opera, etc) could you please post them here? Also, what would I have to read up on to make my own?
by Mortamer
Sun Jun 13, 2004 4:59 pm
Forum: General Discussion
Topic: Making it so only one instance of a program can be opened
Replies: 16
Views: 7033

Making it so only one instance of a program can be opened

Ok, I'd like to know how to make it so that only one instance of a program can be opened. The only problem is, their might be copies of the program in different paths, and I dont want them to be able to open either if one is currently running. Any ideas?
by Mortamer
Sat Jun 12, 2004 2:35 pm
Forum: Coding Questions
Topic: Whenever I start pb...
Replies: 4
Views: 1628

Thank you, but now whenever I start it says "duplicate library command: RemoveGadgetColumn() (in libraries MoreListiconGadget and Gadget)", if I take MoreListiconGadget out of my userlib folder I'm fine, should I keep it out? What is it I dont even remember =P?
by Mortamer
Sat Jun 12, 2004 1:43 am
Forum: Coding Questions
Topic: Whenever I start pb...
Replies: 4
Views: 1628

Whenever I start pb...

Constant already declared with a different value: #FILE_ATTRIBUTE_ENCRYPTED
I get this message whenever I start PB. I just reformatted and copied my pb dir. Anyone have any ideas?
by Mortamer
Wed Feb 04, 2004 4:20 am
Forum: Coding Questions
Topic: ReceiveNetworkFile creates 0 byte file?
Replies: 4
Views: 1885

its so simple I didnt think I needed to, but heres the client code:

Code: Select all

InitNetwork()
CID = OpenNetworkConnection("127.0.0.1", 3869)
Delay(5000)
ReceiveNetworkFile(CID, "C:\testFile.exe")
Its goal is to connect to the server, and when the server gets connected to, it sends a file.
by Mortamer
Tue Feb 03, 2004 4:41 am
Forum: Coding Questions
Topic: ReceiveNetworkFile creates 0 byte file?
Replies: 4
Views: 1885

ReceiveNetworkFile creates 0 byte file?

I did a very basic file transfer program because I needed to get a file to my friend (his router screwed up AIM file transfer, etc). It basically just has him connect to me, once he connects I send him the file, (it'll wait like 5 seconds before downloading) and he receives it. Everything works ...