Search found 36 matches
- 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
- 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
- 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?
- 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 ...
- Sat Jun 19, 2004 3:26 pm
- Forum: General Discussion
- Topic: Mozilla web gadget
- Replies: 5
- Views: 2153
- Sat Jun 19, 2004 4:46 am
- Forum: General Discussion
- Topic: Mozilla web gadget
- Replies: 5
- Views: 2153
- 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 ...
- Thu Jun 17, 2004 5:14 am
- Forum: Coding Questions
- Topic: What is the AND symbol?
- Replies: 3
- Views: 1291
- 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- 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?
- 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?
- Sat Jun 12, 2004 2:35 pm
- Forum: Coding Questions
- Topic: Whenever I start pb...
- Replies: 4
- Views: 1628
- Sat Jun 12, 2004 1:43 am
- Forum: Coding Questions
- Topic: Whenever I start pb...
- Replies: 4
- Views: 1628
Whenever I start pb...
I get this message whenever I start PB. I just reformatted and copied my pb dir. Anyone have any ideas?Constant already declared with a different value: #FILE_ATTRIBUTE_ENCRYPTED
- 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: Its goal is to connect to the server, and when the server gets connected to, it sends a file.
Code: Select all
InitNetwork()
CID = OpenNetworkConnection("127.0.0.1", 3869)
Delay(5000)
ReceiveNetworkFile(CID, "C:\testFile.exe")- 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 ...