Results for "Volume: C_Volume2"
Sample chat (client to server), VBChatJr v1.0.45 Server-side optons: Client-handling (up to 15 on port 1000), user list updates, Idle user limits, administrative booting (double click user name), client-code intercept via "Guard", server started via "Start" button Client-side options: Vairalbe local port, default host is local pc, 2 codes
A really cool code that will first - make the form expand down, then second - it will expand out sideways! No need to customize it to the size you want, it does that automatically. Just pop it in your code. Really easy - good beginner's code!
returns true , if the applications excel, word, access or powerpoint are installed
This is an update to code I posted Yesterday. The sole purpose of this code is to allow you to use a free ISP, without the wasted desktop\browser space of ad banners. In the previous app the banner was hidden using Win API Functions. This worked except the banner ad people have hard coded there Banner Apps to stay on top at all times. Hence, the code to hide the banner had to be executed over and over again causing the "Hider" App to canstantly execute code. THis Method Minimizes the banner... THe banner will still be on top, but it will only be a title bar that you can position in the "White SPace" of the Browser toolbar. No adds will be displayed. YOu will not even know it's there.
This API call can get the text from ne class of ne App such as edit class or richtext class, and even gets the text from behind asterisks "****" as from a password field! :)
UPGRADED: NOW MENU & TOOLTIPTEXT ENTRIES This code permit to have a multiple language application. The LoadResString provided with VB doesn't permit to end user to make a new language file.
Tired of all those annoying net send messages at work/school? Want to find out who is sending them? NSLog logs net send messages, and uses the NetWkstaUserEnum API to trace the net send messages right back to thier source! You can find out exactly what user sent the message and when. It also logs messages too, so you can show the admin later on (or logging for a convenient conversation).
Have you ever wanted to make your form's shape odd? Ok, there are several samples and programs around that can make your forms like a shape(circle, rounded box or something a little bit more complicated). But here is the example to make your form's shape to be ANY TEXT, in ANY FONT, in ANY SIZE and also any two colour's gradient. It's a really good example. Imagine you can shape the form not to be just plain text, but the shape of special fonts(such as Windings and Webdings). Just change the GetTextRgn function's variables(Font, Size, Text) and the variable Color1 and Color2. Easy. And the result is outstanding! You can also use the Chr$ function to add a text(this is useful for spec. chars).
This is do determine if any exe is already running. This handles the multithreading issues of NT, and it works on 95,98,NT. I got most of this straight from Microsoft, but have wrapped and cleaned it up alot.
A screen saver that lets snow fall on the ground and gather up.
Shows Win9x resources level (System, User and GDI). Ofcause it will not work on NT, because it does not handle resources the same way as Win95. Included is some usercontrols, like: PopDown, ProgressGuage, Coolbutton and TrayIcon. So if you do not want it for the resource meter, you can always download it for the other source. Executable is enclosed. Besides resources it also shows memory information, allows you to mark current resource level (great to check for resource leaks in your program). It is a "finished" program, so you can use it straight away.
Like 2 Recover Your Lost Screen Laver Password using C program ??? To Recover your Lost Screen saver Password with a very little skill in Programming in C, The Programming is only 15 ~ 20 Lines :-)) Enjoy!!!
It's a Game in which you have to make squares (i.e Homes).one with more squares will be winner. You can play it with your friends or with COMPUTER.
Perform functions on complex numbers. Add, subtract, multiply, divide, take logarithms, sines, cosines, tangents, raise one complex number to the power of another. Program has a nice interface allowing the user to see the complex vectors interact. Though written in VB5, it is really an excercise in mathematics. The bas module is where the real meat of the program lies, all the code for the complex number manipulation. The forms are just the 'fluff' for the nice interface. Sorry, the code is not documented at all; just a spur of the moment kind of thing. Any comments or improvements would be greatly appreciated. Thanks in advance. Please direct to Soze99@aol.com
I wrote this "game" quite some time ago when I hardly had any experience. It's horribly buggy. I'm going to work on improving and correcting it. I apologize for any inconveniece caused. This was the original description: A strategy game where you have to manage your planet and make it prosper, you also have to defend it from pirates. You can also activate multiplayer mode and play with a friend across a local area network. Sounds have also been implemented. (They're horrible!) This game need a lot of improvement. =) Enjoy! =)
This little bit of code is simply a method of converting "CString"'s into "char"'s. I am posting this because I was having some trouble finding any code that did this type of conversion, or at least I didn't find a method that suited my needs. Regardless, I thought I'd post this for those who may need a quick and (somewhat) easy way to convert CStrings into Chars. This code is admittedly simplistic, so don't expect anything advanced here! I have added comments for each step, despite its simplicity.
This application syncs your computer to a NIST time server. It uses the masterx winsock class and is fully multi-threaded via my own thread class. All of the windows code is pure api. NO MFC.
For those folk that play with EMMM stuff, finally something you can use. I got these calculation (entirely done in VB, not C) from a great guy somewhere in the US. It really helped me. Maybe it will help someone else in the world. The problem I had was that I had a hardware device that recorded information in EMMM format. This data could be downloaded through RS232, but for me to use this data in VB, I had to convert it from EMMM (2 byte float) to a data type "Single" (VB float). I do not think many people will be using it (maybe you prefer to use C).
An window with lots of controls, dialogs, menus, toolbar, status bar, progress bar, icon, timer, can now play animations (AVI Filed only), can shutdown, reboot computer, save text and load text from a file, change the font of an edit control.
BCP is a method to transfer large amounts of data from a flat file into SQL Server VERY quickly. BCP is a functionality of the low-level DBLib environment. Unfortunately the modern data components (ADO, DAO, RDO) don't support bulk copy. The only way to get to BCP in the past was to either use the BCP.exe tool shipped with SQL Server, or to write some serious low level BCP type stuff. I wrote slpBCP.dll as a wrapper for VBSQL.ocx and DBLib. It will allow you the developer to reference the DLL in your project, Create a reference to the object, set a few properties, call a routine... and bulk copy data into your SQL server.