Results for "Volume: 2_2002-2004"
Format the current data (off the server) in the following format, for example, Tuesday, June 19, 2001.
When this OCX is dropped onto the form, it makes it EXTREMELY easy to set the WHOLE FROM Transparent (well everything except the controls). It can also just set the container transparent (everthing except the controls and the title bar). Please give this a go and give m some feedback as i'm new to this stuff. NB: The original code is not mine i've just downloaded it from somewhere and made it alot better (well, i thinks so anyway). This zip comes with an example app and a compiled OCX.
This will allow you to get BMPs (only Bitmaps) from an Access database using ADO. Officially, Microsoft says this about it in MSDN:INFO: Issues Migrating from DAO/Jet to ADO/Jet ID: Q225048 OLE Container Control Many databases, including the SQL Server 7 Northwind database, contain pictures and other objects saved by Microsoft Access. In Visual Basic, you can see the pictures by binding the OLE Container control to the DAO Data control. However, the OLE Container control is not compatible with the ADO Data control and there is no way to access these pictures and display them using ADO. The OLE Container control cannot be used unbound because GetChunk does not retrieve the data in a format compatible with the ReadFromFile method. Please Vote!
Resizes a form based on the display settings
This code example will append a separator and a new MenuItem 'Always on Top' to the system menu of any form. The menu is affected weather left clicked from the control box on the form or right clicked from the taskbar. Subclassing is used to trap when the 'Always on Top' item is clicked. The custom message handler uses the SetWindowPos function to keep window on top or reset it to normal. Also on a lark I traped out the close menu item to prompt before closing. If you say yes then the close message it passed otherwise the close message is traped out and the form stays open.
This code and the accompanying tutorial show you how to make a screen saver using three functions. I wrote the tutorial and coded the project after reading about six screen saver tutorials on this site. NOTE THAT YOU MUST RENAME SCREENSAVER.EXE TO SCREENSAVER.SCR BEFORE EXECUTING IT, OR IT WILL DO NOTHING.
Just used for debugging querystring data. Creates an orderd list of field names and the values assigned to each one.
A lot of people have been asking me for this. I've finally managed to create this program and I hope you will all enjoy it. It is a System Tray Handler, like Litestep has. This is great for shells... It will make a small picture box and load the system tray buttons that usually show up in the Windows Explorer... If you open ICQ and then minimize it, it will show it's icon and you can fully interact with it. You can specify height (I recommend 25), XPOS, YPOS, whether it should auto-hide and if you just want an empty one. But wait! There's EVEN MORE! It scans your registry for Run/RunOnce entries and runs the startup programs in the registry at startup (it's explorer that does this, not windows itself... If you have a replacement shell, it won't run the apps by itself). You think that's not enough? Well, I've also included a Dynamic Start Menu that you can use! Just click the button on the form, and it will show you a menu (with icons/backround pic/office style selection) that shows all your groups. When you go over a group, it'll show you the programs inside. I've just finished this so I haven't implemented everything. Click on a program in the start menu won't run the program (yet) and the icons for the programs will all be the same (for now). I'm very excited about this and I hope you are too. VB Shells should start popping up everywhere now!
Xao Xiong originally posted his version of DecodeURL and asked for a reply for a better way. I replied, but it didn't turn out too well, so i'm posting it here for him to see. The approach i took is that when you look at an encoded URL string, 2 hex characters follow a percent sign. XAO listed a few to translate into actual characters, but he didn't account for all 256 of them. Check it out! See http://www.planetsourcecode.com/xq/ASP/ txtCodeId.6728/lngWId.4/qx/vb/scripts/ ShowCode.htm
(UPDATE: Now As start of Admin UI, which allows edit/delete of users, posts, topics, settings. supports HOT Topics, supports lock/closed topics and more.) This is An Almost 100% complete BBS. The database is the heart of all the options that can be set. Different User Levels(Guest, Member, Moderator, Administrator). Allows you to lock Users from posting, the ability to lock posts, delete posts, edit posts, reply to posts, Log In, Register, Allows you to set the Acces Level to Topics(example: Topic="Administrator Discussion" if you set the access level to administrator then only administrators can view/post in that topic). Requires users to register before they can post. Allows Users to select a "Topic Icon" when posting. Allows you to set weither new users can register with an email that is already registered. Counts Users total Posts. Counts Replies to each Post. Shows total Posts for each topic. So Much More can be done. If you like this please give me feedback on it so I can Improve it. If it gets good response I will Update it soon. Soon to be added Admin UI so it doesn't have to all be done through database, Search and more your comments are appreciated. I have also added the .NET Solution file so if you have .NET You can edit it there.
This code should show you how to browse for folder with a selected folder. This is known from Common Dialog's start dir, where you can select from what folder to select the file(s). In Windows you can also browse for a folder. This code helps you to learn the Browse For Folder Feature and learn how to select to start from in the Browse for folder dialog.
Data Compression is a one of the most renowned branches of the Computer Science. Over the years, a lot of research has been done in this field to compress data into numerous ways and many standards have been developed. Data Compression can be defined as reducing the amount of storage space required to store given amount of data. Data compression comes with lots of advantages, it saves storage space, bandwidth, cost and TIME required to transmit data from one place to another. In this article we will throw light on Huffman Coding for data compression.
This ASP-Calendar have the same functions (and more) as the ActiveX-calendar from Microsoft. It´s works only correct with the IE 5.0 or hiher. If you make any additional function, please send me an Update. Cheers
A study about the structure of audio format and digital musical notes is also required in order to accomplish the project. The aim of this project is to produce a program that will analyze a music track and output the guitar notes that were played on the track. This Microsoft Windows platform software application will be able to listen for acoustic guitar sounds from tracks where only one guitar is being played. The data will be outputted in tab notation. By creating this software, the public especially guitar players can get the guitar notes directly from the audio file (WAV format), probably from a Compact Disc without wasting money to buy music book from the shop or search the scores from the internet. Please visit website:: http://softworld.filetap.com
Voting poll(poll.asp) with administration(adminlog.asp login - username: test password: test1), and results of the previous polls... Cookie protection for multi votes... read instructions.txt
Delete a folder, with all it's subdirectories.
From CShellVB http://www.cshellvb.com Change the style of a normal textbox so that it will only accept numbers. Better then evaluating keypress events and very fast. This call works on the fly and it is wrapped into a function for you.
To explain how to develop interrupt routines for use in a personal operating system and an introduction on how to write kernel mode drivers.
creates an HTML form given an ADO recordset. Uses different controls (textbox, checkbox, textarea) for different datatypes. Determines maxlength property based on datatype. Keeps some useful info in hidden fields.
Faster version of StrCat posted by someone else. About 2x faster. About 6x faster than '& (ampersand)' operator for many concatenations.