Search found 831 matches
- Wed Sep 22, 2010 2:41 am
- Forum: Off Topic
- Topic: Paypal API
- Replies: 3
- Views: 2003
Paypal API
Has anyone messed with the Paypal API at all? Are there any examples out there for querying something like total amount in the account or people that donated and their amounts?
- Wed Aug 04, 2010 5:16 pm
- Forum: Tricks 'n' Tips
- Topic: [Windows] AutoComplete for StringGadgets
- Replies: 70
- Views: 41449
Re: [Windows] AutoComplete for StringGadgets
Huh. I haven't messed with my autocomplete stuff for a long time. If I need to change anything, let me know.
- Wed Aug 04, 2010 5:13 pm
- Forum: General Discussion
- Topic: PostgreSQL question
- Replies: 6
- Views: 3181
Re: PostgreSQL question
I love PostgreSQL. It's what I set up to use as the main database at work and I've been using it nearly 3 years.
If you want any code or anything that uses a native connection rather than PB's PG connection, let me know.
If you want any code or anything that uses a native connection rather than PB's PG connection, let me know.
- Thu Jul 15, 2010 10:45 pm
- Forum: Off Topic
- Topic: Who is good at HTML/CSS, Java and Actionscript?
- Replies: 3
- Views: 1300
Re: Who is good at HTML/CSS, Java and Actionscript?
@Rook - I'm pretty sure it is. I have a cousin working working out-of-country at the moment and he's apparently working with someone over there to start up a website for something they're already doing. They're already pulling income and wanted to make a website to expand a bit.
It's one of those ...
It's one of those ...
- Thu Jul 15, 2010 4:48 pm
- Forum: Off Topic
- Topic: Who is good at HTML/CSS, Java and Actionscript?
- Replies: 3
- Views: 1300
Who is good at HTML/CSS, Java and Actionscript?
I'm looking for help on a paid project. It's related to online casinos and I'd need to see past web development work. The project is starting up almost immediately.
Thanks!
Thanks!
- Tue Jun 01, 2010 6:21 pm
- Forum: Coding Questions
- Topic: Capturing Text / Telnet Client
- Replies: 4
- Views: 1887
Re: Capturing Text / Telnet Client
@jamba - unfortunately that's just not possible and I wouldn't want to be responsible for something going wrong with the program. Glad the old code works for you. I still work with a modified version of it and it's made things a lot easier for some scripting tasks.
I don't look forward to messing ...
I don't look forward to messing ...
- Thu May 27, 2010 8:20 pm
- Forum: Coding Questions
- Topic: Capturing Text / Telnet Client
- Replies: 4
- Views: 1887
Re: Capturing Text / Telnet Client
That's a good idea, dagcrack. I'll dig around at MSDN.
Thanks!
Thanks!
- Thu May 27, 2010 6:18 pm
- Forum: Coding Questions
- Topic: Capturing Text / Telnet Client
- Replies: 4
- Views: 1887
Capturing Text / Telnet Client
I've got a telnet program (SmarTerm) that my company uses. I was wondering about monitoring and periodically capturing text from the program without user interaction and without interrupting their work in the program. Basically I want to make an assistant program that can give them additional ...
- Thu May 27, 2010 3:53 pm
- Forum: Announcement
- Topic: PureBasic 4.50 RC2 released!
- Replies: 29
- Views: 14024
Re: PureBasic 4.50 RC1 released!
Great! And thank you so much for putting the combobox back 

- Wed May 26, 2010 4:54 pm
- Forum: The PureBasic Editor
- Topic: Line Coloring?
- Replies: 0
- Views: 1562
Line Coloring?
I'm a japbe user and I really like having the ;/ and ;- and sometimes ;{- ;{/ to color lines as it helps to break up the code visually.
Does the PB editor have this? I tried searching and didn't find anything.
Does the PB editor have this? I tried searching and didn't find anything.
- Wed Apr 21, 2010 4:23 pm
- Forum: Coding Questions
- Topic: Create or Save Image as Black and White
- Replies: 5
- Views: 1847
Re: Create or Save Image as Black and White
And for GDI+ I simply did the following...
EncoderParameters\Count = 2
;
CopyMemory(?EncoderSaveFlag, @EncoderParameters\Parameter[0]\Guid, SizeOf(GUID))
EncoderParameters\Parameter[0]\type = 4
EncoderParameters\Parameter[0]\NumberOfValues = 1
EncoderParameters\Parameter[0]\Value = @ParameterValue ...
EncoderParameters\Count = 2
;
CopyMemory(?EncoderSaveFlag, @EncoderParameters\Parameter[0]\Guid, SizeOf(GUID))
EncoderParameters\Parameter[0]\type = 4
EncoderParameters\Parameter[0]\NumberOfValues = 1
EncoderParameters\Parameter[0]\Value = @ParameterValue ...
- Tue Apr 20, 2010 7:52 pm
- Forum: Off Topic
- Topic: Cool Shadow Copy Script
- Replies: 0
- Views: 1030
Cool Shadow Copy Script
Check out this webpage: http://blogs.msdn.com/adioltean/archive/2005/01/20/357836.aspx
It has a script that creates a drive mapping to a VSS copy of a drive. I just tried it and it seems to work really well.
I wish I could do something in PB with VSS but I don't really have the time at the moment ...
It has a script that creates a drive mapping to a VSS copy of a drive. I just tried it and it seems to work really well.
I wish I could do something in PB with VSS but I don't really have the time at the moment ...
- Tue Apr 20, 2010 7:35 pm
- Forum: Coding Questions
- Topic: Create or Save Image as Black and White
- Replies: 5
- Views: 1847
Re: Create or Save Image as Black and White
I'm using GDI+ to save the image (multipage TIF) so I'll dig around on that to see how to save it as bitonal.
Thanks!
Thanks!
- Tue Apr 20, 2010 5:06 pm
- Forum: Coding Questions
- Topic: Create or Save Image as Black and White
- Replies: 5
- Views: 1847
Create or Save Image as Black and White
In the past I've used...
TestImage = CreateImage(#PB_Any, 2550, 4200, 1)
hdc = CreateCompatibleDC_(0)
SelectObject_(hdc, ImageID(TestImage))
SetDIBColorTable_(hdc, 0, 2, @palette())
DeleteDC_(hdc) : hdc = 0
...to create a black and white image and it's worked fine. What's the recommended method ...
TestImage = CreateImage(#PB_Any, 2550, 4200, 1)
hdc = CreateCompatibleDC_(0)
SelectObject_(hdc, ImageID(TestImage))
SetDIBColorTable_(hdc, 0, 2, @palette())
DeleteDC_(hdc) : hdc = 0
...to create a black and white image and it's worked fine. What's the recommended method ...
- Mon Apr 12, 2010 5:57 pm
- Forum: Coding Questions
- Topic: [PB4.50 x86 Beta 1] different types in StructureUnion
- Replies: 5
- Views: 1615
Re: [PB4.50 x86 Beta 1] different types in StructureUnion
Does the pointer in structure thing only work in 4.50 and not 4.41?