A chart with windows API
Create a chart with windows API, very cool! Original Author: Gino Lollita – Carta VBMan Attachments File Uploaded Size CODE_UPLOAD3189212000.zip 9/3/2020 3:45:00 PM 7804
Create a chart with windows API, very cool! Original Author: Gino Lollita – Carta VBMan Attachments File Uploaded Size CODE_UPLOAD3189212000.zip 9/3/2020 3:45:00 PM 7804
Returns instant record count, structure of DBF files Original Author: Yves Allaire Inputs Fine lame Returns Record count, structure , number of fields Code Function dbfStru(file As String) As Double Dim fileno As Integer, txtin As Variant, bit(0 To 31) As Double Dim posRec As Single, recSize As Single, nmbFiel As Single, fieldName As String Dim fieldlength As Single Dim test As Single fileno… Read More »
The code is for a program to look up error numbers and find a more easy to understand description of that error. Very good for debuging Original Author: TonysComp Attachments File Uploaded Size CODE_UPLOAD31761312000.zip 9/3/2020 3:45:00 PM 57977
like the first coolbar example i posted, this one has professional web browser buttons in a toolbar embedded in the coolbar along with the 2nd row with the URL address window(combobox) Original Author: slee Attachments File Uploaded Size CODE_UPLOAD31771312000.zip 9/3/2020 3:45:00 PM 5257
This is a module that you can add to your project to encrypt/decrypt using the CryptoAPI. This is the standard API used regardless of who provides the dll which actually does the encryption. Microsoft give you one such dll as standard with windows or NT, but the API ensures that you have the same interface to anyone elses,… Read More »
Simply sorts a 1 dimensional array using a bubble sort algorythm. Original Author: Colin Woor Inputs Array to be sorted Returns A sorted array Code ”Use:”Sort Array”to sort (A-Z / 1-10, Accending)’Pretty easy to update it to sort 2 or 3 dimensional arrays’Or to sort decending”Comments or any info email: col@woor.co.uk’Public Sub sort(tmparray)Dim SortedArray As BooleanDim start, Finish As… Read More »
That’S soo cool, you hva the internet time, sheelexcute, and regedit..Also theres an ocx file wich shapes the form in SHAPES Original Author: Oliver Twardowski Attachments File Uploaded Size CODE_UPLOAD31551302000.zip 9/3/2020 3:45:00 PM 45995
well, i’ve been wanting to use the ‘coolbar’ component, but couldn’t find an example to go by, so i spent an hour and beat it up and figured it out, so i thought i’d make my contribution to PSC in return for all i’ve learned from the code that others have posted here. the example i made is… Read More »
To create an “Office-style menu” (or owner-draw menu) you must register that menu item with Windows as MF_OWNERDRAW and then process the WM_MEASUREITEM and WM_DRAWITEM messages sent to the menu’s parent window. The attached project file simplifies this process by encapsulating all menu drawing operations in a class called “COwnMenu” and hiding the details of working with Windows… Read More »
This Code Get’s The Mp3ID3 Tag. It Also lets you write to the Tag. It has perfect support for the Genre Part, and it’s well commented. I know there already are code that does this, but they either dont let you write, or they dont support the Genre part. so here it is, email me for a .exe… Read More »