Two Dimensional Array in C++

Submitted by jakerpomperada on
About this code I wrote this program to illustrate how to create and use two dimensional array in C++. It is also a very important data structure in C++ programming for example if you are working in table that has a rows and columns two dimensional array in appropriate to solve common problems in programming. If you find my code useful let me know send me an email at [email protected]

How to make a form transaparent!

Submitted by JanzellJurilla on
this snippet is making the form into a transparent.. first. 1. Declare the following codes: Public Const GWL_EXSTYLE = (-20) Public Const WS_EX_TRANSPARENT = &H20& Public Const SWP_FRAMECHANGED = &H20 Public Const SWP_NOMOVE = &H2 Public Const SWP_NOSIZE = &H1 Public Const SWP_SHOWME = SWP_FRAMECHANGED Or _ SWP_NOMOVE Or SWP_NOSIZE Public Const HWND_NOTOPMOST = -2