Search found 20 matches

by jeslar360
Mon Aug 22, 2011 8:25 am
Forum: Coding Questions
Topic: Xor Key Encryption Help
Replies: 10
Views: 4317

Re: Xor Key Encryption Help

Thank you all for your input, and help. I know that this encryption is not much up to production level par, but it should be enough for what I am intending it for. I am working on a Journal app, that can be used by multiple people. My intent was to use an SQLite database to keep track of the users ...
by jeslar360
Sun Aug 21, 2011 11:32 pm
Forum: Coding Questions
Topic: Xor Key Encryption Help
Replies: 10
Views: 4317

Xor Key Encryption Help

I found the original function here:

http://forums.purebasic.com/english/viewtopic.php?t=37017

Well, I tried to modify it so it could output Base64 code (to help with storing encrypted text in a file)...but while I can encrypt it just fine...I can't seem to reverse it.

Here is my modified ...
by jeslar360
Mon Jun 20, 2011 5:49 pm
Forum: Coding Questions
Topic: Help with Audio...
Replies: 3
Views: 1325

Re: Help with Audio...

I have placed an add on vWorker (formerly Rent-A-Coder) to help fix this issue, on a cross platform basis, using the media backends that PureBasic already uses, in the hopes of being able to tie the Built In functions, to the new ones. (DirectX/DirectShow for Windows, SDL for Mac and Linux). IF ...
by jeslar360
Tue May 31, 2011 8:17 am
Forum: Feature Requests and Wishlists
Topic: More control over sound functions...
Replies: 7
Views: 1525

More control over sound functions...

PauseSound(#Sound)

GetSoundPos(#Sound) - Tell the position of the PLAY pointer, in milliseconds

SetSoundPos(#Sound, {POSITION}) - Set the Play Pointer to the {POSITION} by millisecond

PlaySoundPart(#Sound, {STARTPOS}, {ENDPOS}) - Play the sound from StartPos to EndPos (in milliseconds), if is ...
by jeslar360
Thu May 26, 2011 12:43 am
Forum: Tricks 'n' Tips
Topic: Base10 to Base...
Replies: 3
Views: 2240

Re: Base10 to Base...

I completely understand the frustration. This is actually my 3rd time writing a base converter...the code from the last two got lost...they were all locked to a specific base (Hex, and Bin)...I thought to make it this way this time, because I knew I would be doing a lot of back and forth encoding ...
by jeslar360
Wed May 25, 2011 8:06 pm
Forum: Tricks 'n' Tips
Topic: Base10 to Base...
Replies: 3
Views: 2240

Base10 to Base...

I am not sure how many of you will find these functions useful, but I am posting them anyway. I know there are built in functions for converting back and forth from Hex/Base64/Base2(Binary)...but these functions seem to be very unfriendly to variables.

So, I designed these 2 procedures for ...
by jeslar360
Mon May 23, 2011 5:08 pm
Forum: Coding Questions
Topic: Help with Audio...
Replies: 3
Views: 1325

Re: Help with Audio...

Bass may be able to do what I am looking for, I really do not know.

The problem is, the licensing. This project, when done, is intended to be commercial in nature...otherwise, I would not have had a problem using BASS, or FMOD

I do not have the money to buy a Bass commercial license, so have ...
by jeslar360
Sat May 21, 2011 5:47 am
Forum: Coding Questions
Topic: Help with Audio...
Replies: 3
Views: 1325

Help with Audio...

I was wondering if anyone here had enough experience with OpenAL, to help me?

I need to try and come up with something that will function like DeMP3 (Which uses mciSendString_() API) to control MP3 files...but in this case I need to be able to have the same control over Ogg and FLAC files... I don ...
by jeslar360
Wed Nov 05, 2008 5:38 pm
Forum: Coding Questions
Topic: Found handle of a DLL open with another application [Solved]
Replies: 10
Views: 1720


I see. But LoadLibrary will do this already, if a library is loaded into memory and another program opens that library then it gives the same handle to it (and increments the reference count)
But with this you can not share data between two different applications.
I confused because he says ...
by jeslar360
Tue Nov 04, 2008 5:55 pm
Forum: Coding Questions
Topic: Found handle of a DLL open with another application [Solved]
Replies: 10
Views: 1720

endo: From what I read, it sounds like what he is trying to do is see if a library has ALREADY been loaded by another program, and retrieve the Handle ID if it has. I guess he wants to share the access with the other program, rather than load it again.

I do not have much experience with libraries ...
by jeslar360
Wed Oct 29, 2008 12:17 pm
Forum: Coding Questions
Topic: All Fonts On System
Replies: 3
Views: 1230

All Fonts On System

I have a program that is in need of a combo box, for selecting a font. I do not intend to use add demos of the fonts to it, because I do not see the need. However, I do need to know how to get the NAMES of all the fonts on the system, so that I can populate the box properly.
by jeslar360
Sun Sep 28, 2008 6:02 pm
Forum: Coding Questions
Topic: Color DropDown Menu
Replies: 3
Views: 1606

Nope. This software uses Windows API for some of its features...so cross platform is out.
by jeslar360
Tue Sep 09, 2008 4:06 am
Forum: Coding Questions
Topic: Color DropDown Menu
Replies: 3
Views: 1606

Color DropDown Menu

I have seen some programs able to have a Drop Down menu to select colors, where the selections themselves are the colors...and then the top display box changes color, to match.

Since I can't get colors to work with with the ComboBox gadget, I tried something else. But it seems to be a NoGo as well ...
by jeslar360
Thu Sep 04, 2008 6:48 am
Forum: Feature Requests and Wishlists
Topic: Modules
Replies: 46
Views: 25961

I don't know if anyone here is familiar with an online game/environment called SecondLife, but this kind of reminds me of the use of States in LSL Script (Linden Scripting Language/secondLife Scripting Language).

Each state had its own events, There is the default "State" proclaimed as default ...
by jeslar360
Thu Sep 04, 2008 2:03 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] new sound functions
Replies: 12
Views: 6980

naw wrote:...and while we're on the subject, the ability to change the tempo and pitch of a soundfile would be very useful...
Don't forget about changing frequency! And why only to a file? Why not to sounds in memory? THINK BOLD! ;)