User Profile

Collapse

Profile Sidebar

Collapse
epyk
epyk
Last Activity: Sep 24 '07, 10:27 PM
Joined: Jul 19 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • epyk
    replied to make changes to an existing exe
    in .NET
    bump........... ............... ............... ....
    See more | Go to post

    Leave a comment:


  • epyk
    started a topic make changes to an existing exe
    in .NET

    make changes to an existing exe

    i want to recreate the effects of a resource editor, but in code. in full i want to make a resource editor control for forms. i want to be able to change images, strings, and all the things a real resource editor does
    i am using c# right now, but i can easily create one for vb too. but i am finding it hard to get any documentation on the subject.
    any help or pointers would greatly be appreciated.
    See more | Go to post

  • epyk
    replied to Another bitwise operators puzzle
    in C
    Code:
    cin >> num;
    temp = num;
    temp = temp>>2;
    //here i have to add 1
    temp += 1;
    this is the easiest way
    See more | Go to post

    Leave a comment:


  • epyk
    replied to what is # symbol in C?
    in C
    ive know # as a compiler directive, it allows you to use the compiler to edit, add or select code during compile time. you can prolly find documentation on whatever compiler you are using
    See more | Go to post

    Leave a comment:


  • epyk
    replied to Inheritance question
    in C
    well in actuality square and rectangle can inherit from triangle. this will work if triangle contains virtual function for area and perimeter has length, width and hyp. square can inherit them and have its own VIRTUAL function for determining its area and parimeter... esentially a polygon is made up of differant triangles, which an instance of a triangle can contain 1 or more other triangles... look at any 3-d game or model skeleton, you will not...
    See more | Go to post

    Leave a comment:


  • epyk
    replied to Another bitwise operators puzzle
    in C
    the code i posted actually only works sometimes.... it happens in the adding section, i have to check it out some. i only started doing bitwise yesterday... so bear with me... this post started me on the topic.. if anyone else can fix the carry method let me know...
    See more | Go to post

    Leave a comment:


  • epyk
    replied to Another bitwise operators puzzle
    in C
    Code:
    #include<iostream>
    using namespace std;
    #define LARGEST_UINT_BIT (1 << 31)
    bool add_carry_bit = true;
    unsigned int add(unsigned int in1, unsigned int in2){
    	unsigned int bit, carry, tmp;
    	carry = in1 & in2;
    	bit = in1 ^ in2;
    	add_carry_bit = false;
    	while(carry){
    		if(carry & LARGEST_UINT_BIT) add_carry_bit = 1;
    		carry <<= 1;
    		tmp = bit
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...