Please show me the way to draw an arc circle and ellipse by using Bresenham Algorithm. (I know already how to draw a cirlce and Ellipse bu using Bresenham). Thanks Ask More - Learn More JohnJone
john_tran
Posts
-
How i draw an arc circle and ellipse by using Breseham Algorithm?? -
About FFLUSH in C++when i get a string by using gets(ch) (ch is char *), i just get the wasted value at the stdin, not exactly the value i want. How is it? How can i solve this problem? PS : The same problem happened when i use both cin and scanf in same project. Ask More - Learn More JohnJone
-
How to draw an arc??I want to draw an arc denpend on Midpoint Algorithm. I have 0(x,y), radius r, and 2 angles. How i draw a AB arc?? Thanks Ask More - Learn More JohnJone
-
How to insert a Word File into a form??? (in VB6.0)Tell me the detail please. I dont know what to do now. Ask More - Learn More JohnJone
-
How to insert a Word File into a form??? (in VB6.0)How to insert a Document File (Word Doc) into a form in VB6.0. And user cannot change anything , just show ints contain to user. If the contain too long , It will show scrollbar so that user can scroll it and view. How can i do that? (Use OLE, i dont know how to use it?) Thanks Ask More - Learn More JohnJone
-
How an exe file execute???Oh.Yes, i want to know what Executable file structure (or Portable file in windows). Because i want to push my program into it, so everytime i double click to this file, it will execute itselft, not need any other program. My Program is made by C++, but i dont want to compile it to exe file(build). I want to make exe file by myself. Clearly, i want to make a compress file that will be execute itself. I knew the compress algorithm (i use LZW) and did successfuly in borland c++. Now, i want to make a exe file for the compressed file so that it will uncompress to the original file when run it. So, How i can push my LZW into executable File (or Portable file). Ask More - Learn More JohnJone
-
How an exe file execute???yeah, i want to create a file by using c++. (But dont tell me compile cpp file to exe file, it's another way). thanks Ask More - Learn More JohnJone
-
How an exe file execute???No, i dont want to create Exe like that. I want to program with it by using C/C++. For instance, I want to know all about Exe header, so what exe header use for? How can i manage its header? Then, i want to know how to create a file that will execute its information, needn't any program. (where in the exe file i will insert data to execute, and how i do that?) Thanks anyway Ask More - Learn More JohnJone
-
What is cluster ????I read all these, but i still dont know how to a file link list by cluster. It just explain what size of cluster. If you know any other page, please give it to me. Thanks Ask More - Learn More JohnJone
-
How an exe file execute???How an Exe file excute? Give me a example . Such as : Program a exe file that when it execute, it will show "Hello WORLD" on the screen. Thanks Ask More - Learn More JohnJone
-
How to remove an OS?There isnt any way to remove ME and keep XP??? Anyway, Thanks alot Ask More - Learn More JohnJone
-
How to remove an OS?For instance, I have Windows ME in C (first Installed) and Windows XP in D (later installed). Now i want to Remove : 1> Xp, keep ME. 2> ME, keep XP. How i do that because if i remove ME , my disk will not be bootable and then i dont know how to make XP boot. Help!!!!! Ask More - Learn More JohnJone
-
How to install Windows with Linux?I'm planing to install Red Hat 7 I have C and D and E volume(20GB Hard-drive). I installed Xp, and now to install Linux. So i want to try both 2 cases . Windows first, and Linux later. Then Linus First and Windows later. So I worry that if linux dont allow me install windows later. So how i do now? Ask More - Learn More JohnJone
-
What is cluster ????What is structure of Cluster ? How data link list by using Cluster? If i had a File address, How to find all its data by using CLuster? Thanks alot Ask More - Learn More JohnJone
-
How to install Windows with Linux?Yes, i dont know how to show a menu to choose between linux and windows. If i install linux first, how to install Windows? Ask More - Learn More JohnJone
-
How to install Windows with Linux?I have Windows OS in C drive(first install), how to install Linus OS in D drive (Manually or using Software) Opposite, Linux OS in C Drive(first install), and install windows OS in D Drive. How to change between 2 that OS? Ask More - Learn More JohnJone
-
Have a problem while create DLL!!!Need HelpI changed The value to Short Int (in CPP file), and it work exactly Thanks. Ask More - Learn More JohnJone
-
Have a question about Master Bootwhen OS start, it call Master Boot. Master Boot include Partition Entries. Partition Entry has BootSector. And Boot Sector has system information and a [B]code [/B] to load OS into memory, right? I want to ask that What structure of this code? what language make it? And how to add one by myself? In addition, when OS load itself into RAM, What file it will load? Give me an example when DOS load into RAM (and maybe Windows too) Thanks Ask More - Learn More JohnJone
-
Have a problem while create DLL!!!Need HelpI create a DLL in VC++, call VD.DLL, and include file VD.CPP, its contain: int _stdcall VD(int *index) { int i; for(i=0;i<5;i++) index[i] = i; return (i); } In VB6.0, i declare to use this DLL: Private Declare Function VD "my-dll-path" (ByRef intIndex as integer) as Integer And use this function in VB's body like this: Dim intIndex(0 to 50) as Integer //Global Integer Array Sub VD() Dim i as integer, intI as Integer intI = VD(intIndex) for i=0 to intI-1 MsgBox "Value " & i & " = " & intIndex(i) Next End Sub And It shows : Value 0 = 0 Value 1 = 0 'Unexpectly Value 2 = 1 Value 3 = 0 'Unexpectly Value 4 = 2 The second and fourth line is not correct. Because in my case, i must show: Value 0 = 0 Value 1 = 1 Value 2 = 1 Value 3 = 3 Value 4 = 4 Why this happen? Anything wrong in my code? Thanks Ask More - Learn More JohnJone
-
How to hide a file (any file)?Oh, i see some application can do that. But i dont know how they do that, what technology they use.