Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 53 of 133) 3985 Result(s) found 

 

Getting StdPicture's Width and Height properties in Pixels
Total Hit (4996) In general, Visual Basic doesn't provide a way to determine the size of a bitmap loaded into a PictureBox control. But you can derive this information if you set the control's AutoSize property to True and then read the control's ScaleWidth and ScaleHeight properties. If you don't want to resize a v ....Read More
Rating
Tip: Simple way to add delay without blocking your thread (Pure VB).
Total Hit (2302) Sometimes you might need to add delay into your application. You can use Sleep API but it blocks execution of current thread so your application becomes non responsive. But here is the simple trick to solve that problem and its easy to use. «code LangId=1»Sub Delay(nMiliSec As Single) Dim t1 ....Read More
Rating
Guitar simulation using MIDI APIs
Total Hit (5812) «b»Step-By-Step Example«/b» - Create a standard exe project - Add one listbox, combobox and 2 command button controls - Add one class module and rename it to clsMIDI - Add the following code in form1 «b»Form1.frm«/b» «code LangId=1»Dim objMIDI As New clsMIDI Private Enum enumInstruments ....Read More
Rating
Tip: How to display all environment variables
Total Hit (2439) «code LangId=1»Private Declare Function GetEnvironmentStrings Lib "kernel32" Alias "GetEnvironmentStringsA" () As Long Private Declare Function FreeEnvironmentStrings Lib "kernel32" Alias "FreeEnvironmentStringsA" (ByVal lpsz As String) As Long Private Declare Function lstrlen Lib "kernel32" Alias ....Read More
Rating
How to start/stop and enum services using ADSI
Total Hit (4097) This article will show you sample code to use ADSI to manage services. «b»Step-By-Step Example«/b» - Create a new standard exe project - Add reference to "Active Ds Type Library" (Project->Add Reference) - Add windows common control 6.0 (Project->Controls) - Add one listview, five command b ....Read More
Rating
Undocumented Shell Path APIs (Extracting Component Parts).
Total Hit (4613) Way back when Microsoft released Internet Explorer 4.0, they bundled with it a number of upgrades to the operating system including a new DLL called SHLWAPI.DLL (Shell Lightweight Utility APIs). That DLL provided programmers with some useful path manipulation functions (amongst other things), but ob ....Read More
Rating
Undocumented Shell Path APIs (Testing Path).
Total Hit (4222) Way back when Microsoft released Internet Explorer 4.0, they bundled with it a number of upgrades to the operating system including a new DLL called SHLWAPI.DLL (Shell Lightweight Utility APIs). That DLL provided programmers with some useful path manipulation functions (amongst other things), but ob ....Read More
Rating
How to extract various parts of URL using UrlGetPart API ?
Total Hit (4930) Have you ever tried to extract various parts of URL....? If yes then you know how tedious it is. But in fact is very simple if you use API UrlGetPart. Here is a simple example to use this API. «b»Step-By-Step Example«/b» - Create a standard exe project - Place the following code in form1 ....Read More
Rating
Very simple way to create transparent image using API
Total Hit (2529) If you ever need to create transparent BMP then don't worry here is an API which makes your life easy. To make this demo simple I have avoided color selection. In this demo default transparent color is first left top pixel color of source image. «b»Step-By-Step Example«/b» - Create a standard ....Read More
Rating
WMI : Retrive extended information about processor
Total Hit (3222) Windows Management Instrumentation (WMI) makes Windows extremely manageable using a single consistent, standards-based, extensible and object-orientated interface. WMI is the Microsoft implementation of Web-Based Enterprise Management (WBEM), an industry initiative to develop a standard technology f ....Read More
Rating
Create and verify digital signature to detect data tampering.
Total Hit (19128) In this article we will talk about digital signature and how to use it to detect any intended/unintended data tampering. Data can be tmpered in many ways it can be intentionally tmpered or it can be currupted during communication or may be some other reason. Anyways today I will show you the use of ....Read More
Rating
How to retrive and delete all internet cache entries?
Total Hit (4773) In this article I will show you the use of FindFirstUrlCacheEntry, FindNextUrlCacheEntry, FindCloseUrlCache and DeleteUrlCacheEntry APIs. First three APIs are used to retrive cache entries and DeleteUrlCacheEntry is used to delete a specific entry from the cache. Here is the example «b»Step-By ....Read More
Rating
How to retrive only visible items of treeview control?
Total Hit (5723) If you want to retrive only visible item count for treeview control then you can use TreeView1.GetVisibleCount but the problem is this will only return items which are 100% visible so it wont give you exact number. In this article I will show you the trick to get only visible items of treeview u ....Read More
Rating
Create your own Image/Link extractor tool using Regular Expressions
Total Hit (3165) This is a very simple code to present use of Regular expression to solve some complex text operation which is kinda impossible using inbuilt string functions available in Visual Basic. For More information Visit the following MSDN article «a href='http://msdn.microsoft.com/library/en-us/dnclin ....Read More
Rating
CBalloonToolTipNotify: Class for System tray icon, Balloon tooltip, simple tooltip and Popup menu
Total Hit (8021) In article we will learn how to use powerful subclassing technique to implement system tray icon which can show Ondemand Balloon Tooltip, simple mouse over tooltip and right click popup menu. «b»Basic for system tray icon implementation«/b» You can implement system tray icon using Shell_Notify ....Read More
Rating
How to detect or block system wide keypress event (using subclassing)?
Total Hit (7943) Most of time KeyPress or KeyDown events of VB will be fine for your application requirement but what if you want to process the same event even your application is minimized or is not active or amy be you want to block certain key combination system wide.... This article will show you how to do that ....Read More
Rating
How to determine whether your application is running under Terminal Server?
Total Hit (3331) I most of time use terminal client to connect my server and run most of my stuff like that. You might be have the same situation. This simple code will tell you whether you are running in terminal server or not. «b»Step-By-Step Example«/b» - Create a standard exe and copy/paste the following c ....Read More
Rating
How To Automate Microsoft Excel from Visual Basic
Total Hit (3755) There are two ways to control an Automation server: by using either late binding or early binding. With late binding, methods are not bound until run-time and the Automation server is declared as Object. With early binding, your application knows at design-time the exact type of object it will be co ....Read More
Rating
How to get all links (i.e. href value of < A > tag) from HTML Page using Regular Expression.
Total Hit (8877) Regular expression is avery powerful tool to solve any complex problem related to text processing. In this article I will show you a technique to parse only <A> tags from HTML file and retrive href value of <A> tag. You can use the same technique to parse any tag from HTML file. You can get value of ....Read More
Rating
Working with ADSI (Active Directory Service Interface)
Total Hit (7448) Active Directory Services Interfaces (ADSI) is a set of open interfaces that abstract the capabilities of directory services from different network providers to present a single view for accessing and managing network resources. Administrators and developers can use ADSI services to enumerate and ma ....Read More
Rating
How to Encode/Decode URL using API
Total Hit (5190) Sometimes you might need to Encode/Decode URL programatically. This article will show you how easy it is using 2 undocumented APIs. Encoding URL means convert any unusual character into escape code (e.g. space will be replaced by %20). Decoding URL means convert escape code into actaul charac ....Read More
Rating
How to format miliseconds into hour, minute and seconds using StrFromTimeInterval API
Total Hit (2329) If you're working with VB built-in date/time functions, you can use VB Format function to convert Date/Time to any format you need. But API functions often return time in milliseconds. See how to convert it in readable format: «code LangId=1»Private Declare Function StrFromTimeInterval Lib "shlw ....Read More
Rating
How to format file/folder size into KB, MB or GB using StrFormatByteSize API
Total Hit (2637) Many functions (VB and API) return file/folder/drive size in bytes. To show this size user-friendly, you need to format it in KB, MB or GB. It's easy to do this with a simple math: 1KB = 1024 B, 1MB = 1024 KB etc. and many apps I've seen have a special function to perform this task. But there is a b ....Read More
Rating
Undocumented Shell Path APIs (Combining and Constructing Path).
Total Hit (3117) Way back when Microsoft released Internet Explorer 4.0, they bundled with it a number of upgrades to the operating system including a new DLL called SHLWAPI.DLL (Shell Lightweight Utility APIs). That DLL provided programmers with some useful path manipulation functions (amongst other things), but ob ....Read More
Rating
Enumerate local/global groups, Enumerate users and user membership in all groups
Total Hit (7883) In this article you will learn couple of LAN Manager APIs to list groups and users. This demo uses the following APIs «code LangId=0»NetAPIBufferFree : Frees memory allocated by the NetApiBufferAllocate function and other network management functions. NetGroupEnum : Lists all global groups on a se ....Read More
Rating
This is a link to a different site INFO: Methods for Transferring Data to Excel from Visual Basic
Total Hit (1348) This sample illustrates how you can use ActiveX Data Objects (ADO) with the Microsoft Jet OLE DB 4.0 Provider to read and write data in Microsoft Excel workbooks.
Rating
This is a link to a different site ExcelADO Demonstrates How to Use ADO to Read and Write Data in Excel Workbooks
Total Hit (1404) This sample illustrates how you can use ActiveX Data Objects (ADO) with the Microsoft Jet OLE DB 4.0 Provider to read and write data in Microsoft Excel workbooks.
Rating
This is a link to a different site Extending the functionality of the VB ListView controls
Total Hit (2104) The "ListView" control in both Comctl32.ocx and Mscomctl.ocx is simply a wrapper that superclasses (encapsulates) the real "listview" common control in Comctl32.dll. This allows the real listview common control messages and definitions to be used to override almost every aspect of the VB ListView co ....Read More
Rating
This is a link to a different site How to extract graphics from VB binary property files (*.frx, *.ctx, *.dox, *.dsx)
Total Hit (1885) The VB FRX binary files that have been around since the early days (< VB3?) are use to hold large property information assigned in designtime to Forms, and all controls contained with the Form, a property overflow bag if you will. Now we also have even more binary files that provide the same service ....Read More
Rating
This is a link to a different site Connection strings for various OLEDB Data Providers
Total Hit (2631) OLE DB Providers for Active Directory Service, Advantage, AS/400 (from IBM), AS/400 and VSAM (from Microsoft), Commerce Server, DB2, DTS Packages, Exchange, Excel, Internet Publishing, Index Server, Microsoft Jet, Microsoft Project, MySQL, ODBC Databases, OLAP Services, Oracle (from Microsoft), Orac ....Read More
Rating


(Page 53 of 133) 3985 Result(s) found  ... 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 ...

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.