Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...This site is truly a marvel. Without a doubt the most comprehensive, friendly and just plain useful resource of its kind..."

Geography

Where in the world do Tek-Tips members come from?

Is .cc related to visual dbase database ?

icintamyself (MIS)
12 Mar 03 23:51
I am not having any knowledge on Visual Dbase. Recently there was a problem reported from other departments in a company I work. A customised application was corrupted and the software are not able to run anymore. The data was kept in a file with an extension .cc
When I search through internet, the extension is known to belong to visual dbase. I am wondering if the .cc extension file is native database format of visual dbase. If it is, is there any free tools that I can use either to read the .cc file or convert it to some other common format ?
I am hoping to write a software to replace the corrupted software. But first I should be able to preserve the old data.

Any help would be good. Thanks.
cfneumann (Programmer)
14 Mar 03 12:15
The CC should be a text file, CO is compiled.  Can you read it as text?  If so, post a few lines.

Christopher F. Neumann
[dBASE Charter Member]
Blue Star Visual dBASE graduate
ICCP TCP/IP Network Analyst
Data Communications Engineer
http://cfneumann.us

icintamyself (MIS)
15 Mar 03 1:20
The file when opened using notepad contain a mixture of non-print-able character and print-able character. The text data (column) are separated with 'garbage'.

Eg :

    è                            U ` ` f         ~ e › ÿ      n           q  9    µ  µ     r  ðL¯Þ_Ž    Ð æª\5  þ  B  ”ú db1.mdb                           m”
 |”  Databases (*.mdb) All Files (*.*)                                                            (                                                                                                                      a: c: bilbo_c d: gdi e: g: \\gandalf\public m: \\melmac\cc50                                               

END of Example
The filename is having an extension of .cc
I have no experience of this format. But what is the 'db1.mdb'and 'Databases (*.mdb)' in the example above shows ? Is it related to microsoft access ?
cfneumann (Programmer)
22 Apr 03 13:23
db1.mdb sounds more like MS Access.

Christopher F. Neumann
[dBASE Charter Member]
Blue Star Visual dBASE graduate
ICCP TCP/IP Network Analyst
Data Communications Engineer
http://cfneumann.us

icintamyself (MIS)
29 Apr 03 4:11
That's the problem.
The physical file name is having a .cc extension. I couldn't open it using MS Access. A peek into the file, among the garbage, we did see the db1.mdb.

Searching through the net revealed that .cc is related to visual dbase.

Anybody has a clue ?
thanks
cfneumann (Programmer)
29 Apr 03 15:51
You can take this web page that you are looking at and save it as test.html.  In explorer, rename test.html to test.exe and try to execute it.  Of course, you cannot.  The type of file is only identified in explorer as whichever naming that the last setup/configuration has labeled it as.

Christopher F. Neumann
[dBASE Charter Member]
Blue Star Visual dBASE graduate
ICCP TCP/IP Network Analyst
Data Communications Engineer
http://cfneumann.us

icintamyself (MIS)
2 May 03 4:57
Yes,I know that. But renaming the file from .cc to .mdb
and open it using Microsoft Access does not solve the problem.

So it seems to be a case of missing identification, fake identification or propietary manipulation of files....
charlesdenver (Programmer)
13 Apr 04 11:14
.cc in visual dbase is a custom configuration class. it has many functions. the compiled version is .co.
it sounds like you're not sure IF IT IS dbase??
is their a file(s) in your program folder, .exe or .DLL that indicates dbase?? if not, sorry, NOT dbase.
otherwise, is your program an *.exe, if so you are trying to work on a compiled file, not impossible but easier to write the program from scrach. now the good news, IF you bought the program you should have gotten the SOURCE code, the code the program was written from. No.. get in touch with the programer, you paid for it, it's yours. LOTS of help out there with progaming.
hope this helped;
charlesdenver@msn.com
TheGipper2 (TechnicalUser)
6 Jun 04 14:30
As charlesdenver states, .cc is a custom class in Borland's Visualdb. Below is what the .cc class peforms when compiled into a program. Each .wfm which is the extention of a form developed system that I've writtened contain the following or a similar statement linking the .cc module into the  program and it sounds as if the .cc module is missing or corrupted in your system.                                                 Set Procedure To \dir of stored .cc\BUTTONS.CC additive
Hope this helps TheGipper2


PROGRAM:      Buttons.cc
*
*  WRITTEN BY:   Borland Samples Group
*
*  DATE:         2/94
*
*  UPDATED:      7/95
*
*  REVISION:     $Revision:   1.70  $
*
*  VERSION:      Visual dBASE
*
*
*  DESCRIPTION:  This is a procedure file containing class definitions for pushbuttons most frequently used in Visual dBASE forms.These buttons contain both bitmaps, which are located in dbwinhome>\designer\form\Resource.dll, and text.
*                Current Classes:
*                   OkButton
*                   CloseButton
*                   CancelButton
*                   YesButton
*                   NoButton
*                   NextButton
*                   PrevButton
*                   HelpButton
*                   InfoButton
*                   ToolButton
*                   ReportButton
*                   BrowseButton
*                   SampleInfoButton
*
*  PARAMETERS:   Each custom button control in this file requires 2 arguments:
*F    -- Object -- Reference to the parent form
*Name -- String -- Name of the control being created
*Example:
f = new form()
p = new OkButton(f,"myOkButton")
*
*  CALLS:        None
*
*  USAGE:set procedure to Buttons.cc additive, then use these classes with:
NEW syntax:     x = new OkButton(f,"myOkButton"),
DEFINE syntax:  define OkButton x of f
FORMS DESIGNER: <Select Buttons.cc from the
"Set Up Custom Controls" dialog, and then
select the classes you want from the
"Custom" page of the Controls Palette.>
*

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close