Results for "Volume: Java_Volume1"
Hi All This is a little MYSQL ADMIN project i worked on, but never got around to make done, so I thought I share it with you people. I was going for something like TOAD for oracle, if anyone knows that program, but It's only 50% done. You going to need the ODBC driver. You can download the MyODBC-3.51.06.exe at http://www.mysql.com/products/connector/odbc/ Hope you enjoy the program. CiX
This peace of code lets the flags waving in a commandbutton and in a picturebox.
This Marquee wil show the text in different styles, also flashing words is possible. Use the { in front of the word that must flash. Its also possible to change the color, scrolling direction and much more!
This is an active x control that will download a file for you. It makes the job a lot easier and it comes with a demo program that shows how to monitor the progress using a progress bar.
This simulates windows taskbar as every new window created , destroyed, activated , and even redraw or window caption change event is captured by this application. I was looking for this code for a long period but was unable to find a single project simulating the same i first manage to simulate this by enumerating windows through EnumWindows API call but one need to add a timer control to refresh the tasklist every now and then to get all the running tasks.But with this application no timer is running and you get notification for every window event whether explorer.exe is running or not it doesn't matters at all , which is very useful for shell developers who want to develop their own shell. try running this application as a shell and see for yourself. if you like this code or use this code then please do mention my name (if u like to) and dont forget to vote for this code as this takes months to figure out how to use those undocumented API's from windows.
Add profressional 2000/XP style popup balloons to your project in seconds. Works with Win 98 and up, because this is a VB control that looks EXACTLY like the real thing! Plus only takes one line of code to add tips for standard controls!
This example is kind of a compilation. It shows how to create a 3D view and allow you to rotate a solid cube. I also created a method to create landscape meshes from an image(voxel to polygon?). If 3D is not your thing, you may be able to use the landscape code to create a lighting effects tool similar to photoshop. Source is somewhat commented, Includes Back Face Culling; Lighting using Point lights in space; One single API to draw filled polygons. Please leave comments, questions, problems... vote if you like...
Allows for real time updating of objects and values while the drag is being proformed. Move a borderless form without api and in only 10 lines of code. Very easy to understand.
This application uses the SetWindowsHookEx function to retrieve all keyboard events. You can configurate the keys you want to receive by event callback function. Uses no timer + GetAsyncKeyState to fetch pressed keys. The user control sends the Chr-compatible byte code for the pressed character (if any), the name for the key/special key (if known), the application the key was typed in and a flag, indicating whether the application the user was typing in was changed. You may use this code as keylogger or modify it to prevent users from using windows default key combinations like Ctrl + tab etc. Plz vote if you like my code. My first submission on psc ;)
Graph designing is one of the most important feature of database programss. This code allows you to design graphs at runtime! It can also read from a database that you can open and display it graphically. It allows you to chose from a list of chart types including both 2d and 3d!,it allows to save graphs to bitmap files!, copy graph to clipboard,print the graph and lot's more.
This simple demo demonstrates the speed of GetRows Method Compared to movenext method of ADO. The first and second listboxes show this while the third demonstates yet another example and use of getrows, joining arrays of data from a recordset. You can compare the speed of this method too.
Hello All Here is how you can impress your software users by putting animated buttons on your form. It uses Direct Animation Library(danim.dll) and Form 2.0 object library. I have mad 3 sample animated buttons. Check it out...
July,1st 2004 - Neopets keeps changing the URL of the code. I've updated the OCR to reflect the change. This program reads the new distorted Neopets magic code. Do whatever you wish with it, but if you incorporate any or all of it into your own programs, credit would be nice. A compiled version is available at geocities.com/machiavelliansquared
Extend the Combo Box capabilities with amazing results, turn the original and common Combo Box into a Color Picker , Font Picker or add Pictures, even create a new style Drive Combo Box, and more!! Now you can add Colorful list styles like gradient or office style, all this without replacing or adding any control. This class will help you build a professional and enhanced GUI, See how you can turn a Regular Combo Box into a Owner Draw Combo (All Written Down in a Doc File) Any enhancement suggestion or other constructive criticism is welcome, The code has been tested in Windows XP PRO and Windows 2000 With VB 6 SP5, but it should work with windows 98 and above. Please read the Doc File for any doubts or read the code as well, if you have any question at all e-mail-me. This Code Was Made in Cd Juarez Chihuahua Mexico. Remember: Commercial use of this code is FORBIDDEN Distribution notice: You are free to distribute the included zip file in it's original state to any public WWW site, online service or BBS without explicitly obtaining the author’s permission. (Notification would be greatly appreciated though!).
CSocketMaster class is a winsock control substitute. It has the same interface and behavior winsock has so don't worry about having to learn how to use it. If you know how winsock works then you already know how CSocketMaster works. You can use a socket in a form, user control or class without external dependencies or huge memory leaking OCXs. This new version has some bugs fixed including the binding problem when you have more than one internet interface; now the client sockets bind to the default gateway. With CSocketPlus you can accomplish the same things CSocketMaster does plus you can create sockets at runtime. You can use a long value or a string as an index and create socket arrays very fast. Both are IDE safe, so you can press the end button without crashing the program. Take a look at the readme file for more info. Both classes are based on CSocket by Oleg Gdalevich that can be found on www.vbip.com. Keywords: socket, winsock, tcp, udp, internet, lan.
Hi Everyone! They said it couldn't be done! Well, here I am, back from the shadows, with some new low-level information to share. Although I'm known for my NT Articles (check out the one this month... 130 pages!), this month I've also decided to enhance the life of every VB Programmer out there. This code is the "World's First VB DLL callable from C/ASM". Some explenations: thanks to some addins out there, you can now create DLLs that contain exports. Unforunately, those exports will not work if they are called from any other application then VB (with some exceptions). This is because the runtime is not intialized properly by the application which calls them (and it won't know how to). So, thanks to the Relsoft DLL Compiler (a Demo version is included in the ZIP files), you can now create a DLL in Visual Basic that contains exports, and that a foreign language will be able to call, after setting up a small "context". This allows you to call *most* (but not ALL) VB intrinsic functions. Here's what's included: - The full source code to the DLL, which you can modify to adjust to your own needs. - Source code in C and ASM to call the Export in the DLL, free for you to modify and implant into your own projects. It's easily convertible to Delphi/PowerBasic. - The Demo version of the Relsoft DLL Compiler, which allows *TEN* compilations. - A short readme. Enjoy! And please vote! Please remember to rename dllcompilerpsc.ex_ to EXE and Install it :)
The eyes follow your mouse cursor.
I was looking for a one line code which can tell me if i am running my application from inside ide or from outside vb scope because i need to call some api calls which crash my vb ide if i run them from inside vb. i had seen many working code for this but i think this checking is best... please vote and comment for this code.....
Have you ever wonderered what people do in your room while you're away, what happens in your office during your coffee break or what your kids do when you're not around. Now you can find out with this surveillance tool. Whenever motion is detected by your webcam or digital camera, this tool will save a detailed report in the detection log. You can set up a password that prevents unauthorized users from shutting the program down, clearing the detection log or changing the settings. /// The OCX-file will probably have been deleted from the ZIP-file. You can download it from http://www.shrinkwrapvb.com/ezvidc60.zip /// Any feedback and votes are welcome, thanks.
Well this has been made to teach you how to execute dos commands directly from visual basic application. A more advanced use of this application can be made by using it in ftp applications to change the file types of cgi files using ftp.exe, this function is not available to you when you program a ftp client in visualbasic