Mimi: For Borland C++ Compiler go to this site: http://www.webnotes.org/bcc55eng.htm.

For Visual Basic, follow this instructions:

There are many basic compilers that are free to students: Microsoft has Visual Studio 2005 C++ bare bones which you could run some homeworks. Here is the link to Download the compiler http://msdn.microsoft.com/vstudio/express/visualc/download/ This is a different website on how to install the application: http://www.cs.georgetown.edu/~maloof/cosc071/msdev.html

For instructions of how to install the applcation you can go to Deitel® Deitel® Dive-Into™ Series Publications: located in this link http://www.deitel.com/books/downloads.html or click here -- For sample chapters of how to learn C++ 1, 2, 3 or this link http://www.prenhall.com/deitel/

There are so many power point presentations about C++ in this site: http://www.cs.bilkent.edu.tr/~tugrul/CS201/201.html. This is one a power point presentation of the first lecture.

Visual C++ Programming Tutorial Try for free

"Nada es imposible: querer es poder" If you do not believe it read this


How can I make a boot diskette?

Do you mean an emergency repair disk? In Windows NT that's created with the command:
RDISK /S
The /S parameter adds the SAM or SECURITY hive to the others (I forgot which).
In Windows 2000 it is created with NTBACKUP.EXE. In Windows XP the function is no longer there. You can only create a backup of the system state with NTBACKUP.EXE on some other, bigger media.
Or do you mean a boot diskette, from which you can boot the computer if anything goes wrong with the boot files? For that you have to format a diskette from Windows NT, 2000, or XP (it doesn't work from the lesser versions of Windows), then copy the following 3 to 5 files from the root folder to the diskette:
NTDETECT.COM
NTLDR
BOOT.INI
BOOTSECT.DOS (if present)
NTBOOTDD.SYS (if present)

Some of these files have the hidden or system attributes, so you may not always see them. These attributes are not required though. You can remove them temporarily (using ATTRIB or Explorer) and you don't need them on the diskette.
Then try to boot from that diskette. If the computer boots as usual, the boot diskette is OK.
Yet another kind of boot diskette is the diskette set you need to install Windows in case the computer cannot boot from the CD-ROM drive. A program to create these is on the install CD for Windows 2000 and XP. More information for XP can be found in the following Microsoft Knowledge Base article:
Obtaining Windows XP Setup Boot Disks
http://support.microsoft.com/kb/310994/

http://winhlp.com/


SMS Server; Using the MBSA GUI Tool; command tool: mbsacli /c beansvr; mbsacli /i 192.x.x.x.; mbsacli /hf -i x.x.x.x


 


   
 
COMPUTER SCIENCES
SOFTWARE
HARDWARE
DATABASES
PROGRAMMING
ORACLE
 
COLOR CODE HTML
COMPUTERS
DATABASE
C & C++  
ORACLE CONFIG 101
 
HTML
  HARDWARE   DATA BASES III   COM (UNIX & DOS)   ORACLE II  
CLASSES & OBJECTS
  RESISTOR   DATA BASES IV   CONNECT STRINGS   ORACLE III  
ASCII & HTML SPANISH
  BIOCHIPS   DATA BASES V   JAVA      
OOP - CODE
  ROBOTICS   DATABASE LINKS   VISUAL BASIC      
 

cool tutorials... :: Build your own Browser using cocoa on OS X :: Flash Tutorial :: Continues Feedback Buttons :: ASP data Access tutorial by 15seconds :: Programming in D for C Programmers :: Interview Questions :: Building Internet Applications MSIT191 :: Best Tutorials found :: A PDF Lecture on Fuctions


Renaming Files/Folders

Overview

Both operating systems allow you to rename files in the filesystem:

Select a file and hit the Return key (OS X) or F2 (XP) to instantly rename it Click, pause and click again on a file's name to rename it Open a Get Info (OS X) or Properties (XP) dialog Mac OS X

While OS X does not facilitate batch renaming of files directly from the Finder, Apple does bundle several useful file renaming AppleScripts which you can access via the Script Menu. Scripts will execute against whatever files you have selected:

Add to File Names
Add to Folder Names
Change Case of Item Names
Replace Text in Item Names
Trim File Names
Trim Folder Names
In addition, OS X users can use Automator to quickly create a workflow that batch renames their files:

Select the files you wish to batch rename from the Finder
Control- or right-click on your selection
Choose Automator > Create Workflow. This will launch Automator and attach the files you have selected to a new workflow
Drag over the batch rename files action
Click Run
OS X also permits renaming of busy (in use) files. As soon as you rename an open file in the Finder and switch back to application it is open in, its name in the titlebar (and Save dialog) will adjust accordingly. Unfortunately, OS X lacks the ability to rename files/folders in any Open/Save dialogs, so taking advantage of this feature requires switching to the Finder, interrupting one's workflow.

Windows XP

Thanks to DJVirgen for the following info

XP has a rudimentary method to facilitate batch renaming. Select multiple files, right-click on them, and choose Rename. Type a new filename, and it will apply to all selected files, numbered sequentially. For example, say you have these three files:

sun.jpg
moon.jpg
mars.jpg
Right-click on sun.jpg and choose Rename. Type in "My - sun.jpg" as the new name. Your files will be renamed to:
My - sun.jpg
My - sun (1).jpg
My - sun (2).jpg
The obvious flaw in this method is that it does not permit a user to enter in a "base" file name to be appended to all of the files; rather, it renames all of the files the same full file name as the first, plus a sequential number. The original names of the files will be completely overwritten.

Power users could execute the following script at the Command prompt to achieve the same effect:

for %x in jpg do ren %x "My - "%x

However, this script will execute against the entire contents of a folder, rather than just the current selection.