Advertisement
5_2007-2008 Windows API Call/ Explanation #175560

Use a Vb DLL as a RESOURCE DLL that your apps can *easily* link to!

do you want your program to have a skin? do you want your program to be a mulit-language app? Do you want to learn how to make any EXE, DLL or OCX into a resource library? This code shows you how. This will show you how to load any EXE, DLL or OCX and IMPORT the Bitmaps and Strings to your APP! Very easy to use =)

AI

สรุปโดย AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

ซอร์สโค้ด
original-source
Upload
#INCLUDE<STDIO.H>
#INCLUDE<CONIO.H>
#INCLUDE<MATH.H>
#INCLUDE<GRAPHICS.H>
#INCLUDE<DOS.H>
VOID MAIN(); *//here is ASHISH GOTHANIA//*
{
int gd=DETECT,gm,a,b,c,d,maxx,maxy,i,j;
clrscr();
initgraph(&gd,&gm,"C:\tc\bgi");
maxx=getmaxx();
maxy=getmaxy();
for(i=0;i<640;i++)
{
setcolor(GREEN);
circle(maxx,maxy,i^2);
setcolor(RED);
circle(i,i,i^2);
getch();
}
for(j=640;j>0;j--)
{
setcolor(ORANGE);
circle(j,j,640/j);
setcolor(BLUE);
circle(j,j/640,j);
getch();
}
delay(10);
closegraph();
}


ความคิดเห็นดั้งเดิม (3)
กู้คืนจาก Wayback Machine