Search results

  1. albybum

    OSNN Newsletter

    Great to see so many familiar faces usernames from my younger days. :p
  2. albybum

    PHP open_basedir

    http://blog.php-security.org/archives/72-Open_basedir-confusion.html
  3. albybum

    Methods before Members or Members before Methods?

    I define private members and private methods first. Then, I define all my public accessor methods. For me, classes are much easier to navigate that way. Attributes are listed before methods on UML class diagrams too. Basically, it is just preference. If your development house (or school) has a...
  4. albybum

    COM for CAM?

    This may or may not help. http://msdn2.microsoft.com/en-us/library/ms788116.aspx
  5. albybum

    Bioshock

    I have an Intel Core 2 Duo E6600, 2 GB Ram, and an Nvidia 7600 GT 256 MB GDDR3. Windows XP, Direct-X 9c. All the graphics settings defaulted to high. Runs great and looks beautiful. I just couldn't access the Direct-X 10 options.
  6. albybum

    C++: cant resolve string --> string[]

    In your prototype for the mainMenu function, you have userName specified as a string and not an array: ...double tRate[],int flagReadRecords,string userName... But when you try to pass it to the readRecords function, that function prototype is expecting an array. ...int menuExit[],int...
  7. albybum

    Archive Entire Site?

    1and1 supports SSH connections if you can get the info from your friend. Tar should be located at /bin/tar
  8. albybum

    c++: delete line in text file

    The Vector class in the STL has a bunch of methods for manipulating containing data. You may have been thinking of that. Arrays in C++ are very basic.
  9. albybum

    c++: delete line in text file

    An example. int *iPtr = new int[5]; // allocate memory int nCount=5; // set num of array items int nChoice=0; // variable to hold user index choice for(int nI=0;nI<nCount;nI++) // loop and generate values for array iPtr[nI]=nI; for(int nI=0;nI<nCount;nI++) // display array contents...
  10. albybum

    c++: delete line in text file

    The delete directive in C++ deallocates memory. It does not remove information from the array. In order to "delete" that item from the array, you can just copy over it with the next element from the array. Doing that repeatedly through the end of he array and decrementing your counter tracking...
  11. albybum

    Xhtml, html & PHP

    If you just want a webpage that you can update manually by editing the html documents, XHTML+CSS is just fine. ------ HTML and CSS have no functionality that would let you use a database (the reason you would need SQL). HTML is just a markup langauge that gives structure to information...
  12. albybum

    For Class -- Pong

  13. albybum

    C++: Help with pointer array

    You should probably declare and define your employees array this way. Declare your pointer: Employee* employees; Allocate memory and store pointer value: In your Company constructor you should have employees=new Employee[10]; Then you should be able to access your data by the following...
  14. albybum

    Playstation game -set aboard a space station

    This doesn't match your description exactly, but this is the only thing I could think of. Parasite Eve http://www.psxa2z.com/gpgs/BT0774.html
  15. albybum

    Firefox can do something IE can, but on no one elses

    It looks like you replaced the "Movie:" directive in the javascript. That isn't the location of playable media. That Movie directive points to the Flash file, the actual mp3 player. The code below is similar to what I use on my site. <script type="text/javascript"> //<![CDATA[ var FO =...
  16. albybum

    Firefox can do something IE can, but on no one elses

    http://www.jeroenwijering.com/?item=Flash_MP3_Player
  17. albybum

    Zipcode -> Bar Code proj C++

    #include <iostream> using std::cout; using std::endl; int main(void) { int code = 50360218; int result = code %10; code = code /10; while(code>=1) { cout << result << endl; result=code%10; code=code/10; } cout << result << endl...
  18. albybum

    Do you use Windows or Linux?

    I use both, but primarily Linux these days. Gaming is the only reason I keep a Windows machine at home. And my interest in that is waning because my desktop machine is getting older and unable to run some of the newer games very well. I left Fedora and jumped onto the Ubuntu bandwagon and...
  19. albybum

    Day 1: Hello World program

    //================================================= // Author : Albert Holtsclaw // Web : http://www.albybum.net // Purpose: Hello World Program // Lang : C++ //================================================= #include<iostream> #include<string> #include<conio.h> using std::cout; using...
Back