Results for "Volume: 7_2009-2012"
This is a way of expressing my sincerest thanks (to all Developers who contributed and continously sharing their ideas to VB community) by providing at least one sample appplication that would give an idea to Beginners as well as in the Intermediate level of Database programming of what an N-Tier application is all about. This is a transaction oriented-application (see your SQl Profiler)capable of accessing database through stored procedures and without single Adhoc queries involved. Business rules were implemented through the middle layer which you can compile as in process dll at anytime and used it by setting the reference and instantiate to exposed its objects. An option to change your connection has been included during logon to allow user to change database connection. All exeptions are handled by error trapping code so don't worry about unexpected closing of application. I have also added some crystal report functionality and show how to use TTX files(Field Definitions Only) on stored procedure. Should there be any bug occured during runtime, please send the details to me. Thanks and Please vote.
Corel DRAW like drawing software clone. Originally developed in VB3 and then later just converted to VB 6. not completely implemented but whatever is Implemented is implemented using pure VB (with a few APIs) and nothing else, no third party libraries. A must See for Graphic Fans. I am releasing this as I do not have time to update the code. If there is really good amount of interest of users I will think of updating it with more features. Currently What is implemented: - Object Drawing - Object Selection - Object Resizing - object Moving/Dragging (with mouse) - Changing Object's Outline Width (thickness) - Changing Object's Fill Color & Outline Color - Fly out menu like CorelDraw for Outline & Fill - Convert Line to Curve and Edit Node What is not yet implemented - Multiple Object Selection - Object Grouping - Object Rotation - Adding unlimited New Nodes to a Curve - Convert Rectangle/Ellipse/Text to Curve - A full featured Outline Dialog similar to CorelDraw - A full featured Fill Color Dialog similar to CorelDraw - etc. -etc. There are many things to learn from this like How to maintain a list of objects, how to calculate the bounds of an Object, how to delete drawing when the user moves and object, etc. etc.
it is best example of ADO good graphics stock,purchase,invoice,returns and many more you can learn many things from this,but inprocess,this codes realy impress you
hi this is a new update of my LockExe program now called AppSheriff, anyway loads of code fixes, Replaces the FileOps with byte arrays, added some encryption and backup options and some new password options, also fixed the GUI and added a help system, anyway hope you like the new version.
This code allows you to close the process(es) that keep a file locked, by simply specifying the locked file. This is similar to what Unlocker, ForceDel, WhoLockMe and UnlockIt do. I'm not taking credit for this code, because I downloaded it myself from a Chinese site and only removed the unnecessary code and created the sample project. All credits go to the original author. Have fun with it.
This Control, will put a Outlook 2007 Navigation Pane to your application.
This hsows how to add an Icon to a messagebox from a resource file, No more Bitblt, Subclassing, All code is in the model and uses on API call, very easy to understand to. anyway hope you like it, Testsed on Windows 2000 and XP
OK.. Finally, the REAL Hard Drive Serial Number - found this on the net somewhere, so if you vote, this code isn't mine. Just cleaned it up a bit and made it all work together.
Visual Studio 2005 Style ToolBox
An Analog Clock with per-pixel transparency. It's very beautiful. For Win2K above only.
isButton 3.7.0 (original by Fred.cpp) the multi style button Updated 2007-12-27. This is an update to support Windows XP/2003 Data Execution Prevention (DEP). Added new Paul Caton Self Subclassed. Also fixes a bug where the ToolTipText was not saved properly.
How to use ocx-files without no error on other computers , which don't have the ocx
this is a Graphical Game I hope it help you to Create another game better it
This is a report management systems that manage two different kind of information,the motor insurance information and non motor insurance information such as. At certain period of time, some insurance for a particular vehicle need to be renewed and all details about the particular vehicle need to be reported to management. This application will have the capapbilities to record insurance both non motor and motor insurance and produce a report for management to review. beside that,it is also capable of exporting to excel file.
This is an experimental 32 Bit Assembler. Originally planned for me to learn assembly language it turned out way bigger then I thought. It supports most of the standard, FPU, MMX, SSE and 3DNow instructions, can write Windows executables, has WinAPI support, can assemble SIB expressions (for example [eax*2+ebx-10]) and of course has labels. There are 2 examples in the zip file: An editor for writing Windows Executables and an example of assembling source code at runtime to directly call it (a touch of inline assembler). //Update: The examples had German comments and there was a small bug in the console example.
This demo shows how to compute a low/highpass FIR filter and use it on a time-domain signal trough convolution. It also shows frequency spectrum of the filter kernel and the filtered signal.
This example shows you how programs like "ytunnelpro" , "ytkpro", "yahoo ace" might take yahoo messengers connection and filter it. You will need the yhook.dll compiled and in the same folder as the exe. You can compile the dll in the "YHOOKDLL" folder, or you can download a compiled copy here... http://rapidshare.com/files/80903460/dllbin.zip or http://geocities.com/dllhookbin/dllbin.zip
Are you sick of the webbrowser control and all its bugs and problems? Especially since the change from IE6 to IE7. Seems like microsoft goes out of its way to make programming difficult. Well this control called the IE controler is a solution that I came up with that works and works great!! With this control you can create a hidden or visible instance of IE and set it (the visible one) as a child of any control on your form like a picturebox. With this control you have easy access to all of the webbrowsers built in functions and properties as well as the underlying document. With one line of code you can have access and control to all the documents elements such as its links, images, forms, tables, table cells, etc. The possibilites will excite you. Here are some of the routines and what they can do for you. Functions/subs LinkByText: returns a link in the document whose text matches desired value Go: makes the browser go back, forward, home, or search return_links: returns, in event, all the anchor objects in the document return_tables: returns, in event, all the table objects in the document return_forms: returns, in event, all the form objects in the document return_images: returns, in event, all the image objects in the document return_tablerows: returns, in event, all the tr objects in the document return_tabledowns: returns, in event, all the td objects in the document CreateHiddenDocument: creates a hidden webpage from the url passed to it, from which you can extract and manipulate all of the objects and elements on it. WriteHtmlToDoc: allows you to insert your own html within the browser createIE: creates a visible instance of ie and navigates to the url you specify. You have the option of removing its titlebar, make it unresizable, make it the child of any control on your form which has the visible effect of embedding the ie browser seemlessly into your application. bShowContextMenu: Allow or disallow the right click context menu Events Event IEDocReady(odoc As HTMLDocument) Event IEdocState(state As String) Event HiddenDocReady(odoc As HTMLDocument, surl As String) Event HiddenDocState(state As String) Event HiddenDocTimeout(lelapsed As Long) Event IEDownloadStart() Event IEDownloadDone() Event returnedLinks(olink As HTMLAnchorElement, cnt As Integer) Event returnedImages(oimage As HTMLImg, cnt As Integer) Event returnedForms(oform As HTMLFormElement, cnt As Integer) Event returnedTables(otable As HTMLTable, cnt As Integer) Event returnedTableRows(oTr As HTMLTableRow, cnt As Integer) Event returnedTableDowns(oTd As HTMLTableCell, cnt As Integer) Event contextMenu() Event mousedown(ibutton As Integer) Event closing() Event IEcreated() Event processingDone(sFunctionName As String) Event Error(sProcName As String, iErrNum As Long, sErrDescr As String) Event NewWindow()
this is an example to hook and protect a yahoo voice connection from voice laggers. 21/06/08: updated to include voice domination.
This is cool and powerful function evaluator. This evaluator can evaluate any function, support complex numbers, contain own programming language (see screenshot) so you can make your own functions, can detect sintax errors, errors in input formula and much more. There is also much integrated functions (special functions like bessel, airy..., trigonometric functions, log functions and more), you can draw function graph, print function table and much much more. This code contain few classes and modules , so you can copy that classes and modules in your project and use these abilities in your project. I'm spent a much much and much time for developing this, debugging, testing, searching for algorithms for some functions, working on this programming language, so please if you think this is good peace of code, please vote. Sorry for my English. THANK YOU!