Advertisement

Results for "Volume: 7_2009-2012"

7_2009-2012 #218706
StopFlicker

Avoid the Flickering Use this routine to stop a control (like a list or treeview) from flickering when it is getting it's data.

7_2009-2012 #220814
SSE InkPostIt

Example for the Microsoft Tablet PC Platform SDK 1.7 using VB .Net 2003. This application shows how to use ink overlays, save ink data, and retrieve ink data. It also shows how to integrate HTML Help 1.x with your project, and set XP Visual Styles. This is my first project using the Tablet SDK so it may have a few bugs in it. If you find any please let me know. You will need to install Microsoft Tablet PC SDK 1.7 to use this project. This project is for use on a computer running Windows XP Tablet Edition 2005. It will not run properly on a system Running XP Home or Pro.

7_2009-2012 #236717
Per-Pixel Alpha-Blended Clock

You may have seen other programs on the internet that offer programs with alpha-blended forms. An example would be Konfabulator, DesktopX, ObjectDock, just to name a few. What you may not have known is that you, too, can create great alpha blended forms easily using "layered windows". If you search PSC for "layered windows", you will find (besides this) a few programs that have transparent colors or that let you make an entire form one set amount of translucency. However, just being able to choose between making your entire form slightly translucent, or making one color transparent is rather limiting. What if you want to make a form that has a particular section partially translucent? What if you want to have your form anit-aliased on the edges? What about window shadows that fade away as they fall farther from the form? Now, with the included class, you can do this all and more. I built a fully functional clock application just as an example. First, I designed a few PNG files for the diferent faces of the clock. Since PNG files store alpha information, I created shadows and partially translucent parts in the PNG. Basically, at runtime, "hands" are drawn onto the image to complete the clock once every second. You can drag the clock around and even set it to stay on top of all windows. I wrote this with Visual Basic .NET 2005 Express. If you still have 2003 or below, you can download Visual Basic .NET 2005 Express for free from the MSDN site. I don't think the code will work on anything below 2005.

7_2009-2012 #236649
Learning JavaScript Basics

Tutorial that will get you quickly programming in JavaScript with helpful code samples and many programs to aid you along the way.

7_2009-2012 #223609
NEW UPDATE: Telnet Server (Remote Administration), Powerful & Multithreaded (V 3.10)

***Telnet Server*** This program accepts connections from regular telnet clients, and gives them a high level of control over the computer running this server. This is the most powerful Remote Administration (RAT) program on PSC as far as i know. Ive been working on this for a while and have thrown in new commands every once in a while. This program is fully multithreaded, with threads creating threads creating threads. It can accept an unlimited number of connections, with connections making connections (via telnet proxy), and it can still run smoothly. Parameters to commands are specified using a space. for example you can type "SENDMSG 4398 16 0 0" to send the WM_CLOSE (16) command to handle 4398. Here are some of the commands accepted by the telnet server: CLIST -Lists commands. Just type this to get a list of commands. close - tell server to drop connection eecho - enables echo of any recieved data decho - disables echo commtest - tests communication etween server and client gethostname - returns host name of computer trmnt - terminates server (proccess) (dont worry it gets more interesting) getclip - gets server's clipboard data setclip - sets it. shutdown, reboot, logoff - guess? progs - enumerates all the running programs / proccesses on the machine running the server. killp - sends message WM_CLOSE (16) to handle specified sendmsg - sends a message to a handle shell - ShellExecutes the parameters dir - lists files / folders in current directory (set using CD) msgbx - creates a messagebox on the server machine. (msgbx ?, for more info on icons etc...) telnet - ok this is a powerful command. it allows you to connect to another machine (TELNET [ip] [port]) (haha, you can try connecting to yourself again and again to test the super multithreading!! lol (ive done about 50 self connects, creating over 100 threads, and it still runs fast!) setv - sets the wave out volume (i just threw this in here so i could control the volume of my music from a wireless link on a laptop) the following file system commands are supported: cd (change directory), del (delete), rename file, copy file, move file, make directory (MD), view a file and write to a file any thing else people would like me to add please comment. NEW ADDED FOR VERSION 3.0: DISCO -Disconnects internet connection. (dialup) HIDETB -Hides the taskbar. SHOWTB -Shows the taskbar. HIDEDT -Hides the desktop. SHOWDT -Shows the desktop. HIDECAD -Disables the Ctrl + Alt + Del Sequence (Close Program). (Windows 95/98/ME only) SHOWCAD -Enables the Ctrl + Alt + Del Sequence (Close Program). OPENCD -Opens CD Drive. CLOSECD -Closes CD Drive. NEW IN VERSION 3.10: Telnet proxy redone to use less memory and run faster (winsock noblocking mode instead of threads) PING command added, allows ping of remote computer (from server). NSLOOKUP added, does query on hostname and returns IP. Authentication addded. Stored password in registry (set with PASS command). If enabled, will require password to access.

7_2009-2012 #236250
Open form from HTML

opens a web dialog according to an html document

7_2009-2012 #230248
Win32 Tutorial Part 1

This is a simple tutorial showing the basic steps of creating a window in win32 c++ coding.

7_2009-2012 #220143
DataSet Updates to SqlServer

Provides a tutorial and applications for implementing a database update strategy utilizing the DataSet, DataAdapter and SqlServer.

7_2009-2012 #232558
BCOL

You can't believe your eyes!!! (or you can?) I heard many vb programmers to say this: 'We have an easy management of the strings, a collection object that it's simpler than an array' etc. etc... Now, if you heard any vb programmer that say: '...we have the collection object...', you can reply: 'We also have the collection object!' The collection object it's like an array, but you can add and remove things easly... look at the code inside and please vote, and remeber: 'What vb programmers do in vb, we can do it better in c++!' ;) MeDevil84 (ehm: sorry for the bad English!)

7_2009-2012 #237624
Telephone Directory

This code will help vb6 programmer who wants to learn vb.net as well ADO.net. I used hardcoded connection to database. This will also help to understand the different object like connection, adapter and dataset in replace with ADO connection and recordset.

7_2009-2012 #218707
ZIPDEMO - Unzip all files in a directory

I always missed it in WinZip: Unzip all files in a directory to the same directory. Modify it, so the target directory can be at another place.

7_2009-2012 #228388
Cross Browser Dialog

Internet Explorer provides showModalDialog to create a modal dialog. However, this function has two drawbacks: 1) It works only in Internet Explorer 2) The dialog cannot submit data to itself and opens a new window instead. This solution solves these problems by: 1) Firefox browser will open a dialog using window.open with “modal=yes” option 2) Internet Explorer submits data to a hidden IFRAME To test add WebForm1.aspx and Dialog.aspx to your VS.NET application compile it and open WebForm1.aspx

7_2009-2012 #218708
Copy like Windows-Explorer

You can copy files like the Windows-Explorer - with animation !

7_2009-2012 #237659
Presto! Set Application Transparency

A desktop tool to set transparency/opacity of an external application. If you like this tool, DO NOT FORGET TO VOTE. Thanks.

7_2009-2012 #237660
ViewState Compression and Persistence

The article is about ViewState Compression and Persistence.

7_2009-2012 #225592
DataGrid Print Class

A class to allow you to print a data grid across multiple pages, with defined sty;es and with a header and footer on each page.

7_2009-2012 #228439
Number Class

Just a simple class that manipulates three numbers.

7_2009-2012 #218713
Print a Tree View (PrintTvw.dll)

This small VB Active-X DLL provides the ability to print a TreeView. You can print with connector lines, without and even without indention.

7_2009-2012 #223883
C# Visual HTML Editor WYSIWYG

I have found different code samples showing how to create a visual HTML editor in ASP using a TextArea. However, I needed a good editor for my WinForm Application, but I couldn’t find a good example. Eventually, I wrote one from scratch after I converted some MFC code I found on the net. Based on the IE Browser control, You can create a powerful editor that allows you to manipulate the HTML tags visually and add any tags you want.

7_2009-2012 #233051
Furniture System

Stock control, Printing Report, Make Orders, Pie Chart.

Languages
Top Categories
Global Discovery