Προς το περιεχόμενο

Database ολων των αυτοκινητων v2 me times


adi32

Προτεινόμενες αναρτήσεις

Δημοσ.

Καλή δουλίτσα για την Version 1.0 <img border="0" title="" alt="[smile]" src="images/icons/smile.gif" />

Καλό θα ήταν να προσθέσεις κι άλλα πράγματα όπως

Τα βασικά του, Εξοπλισμό Ασφάλειας, Εξοπλισμό άνεσης , Service, Εγγυήσεις, Τεχνικά Στοιχεία και να γίνονται συγκρίσεις απο αυτά.

Επίσης το βασικότερο είναι να ψάχνει κάποιος απο τύπο αυτοκινήτου (πχ ΤΖΙΠ, Coupe ktl...)

Επίσης καλό θα ήταν να έχει και τιμές ώστε να μπορεί κάποιος να κάνει σύγκριση.

Στα λέω αυτά μιας και αυτό τον καιρό ψάχνω για καινούργιο αμάξι και κοιτάω τα πάντα <img border="0" title="" alt="[smile]" src="images/icons/smile.gif" />

Φιλικά πάντα! Vooda

Δημοσ.

Πρεπει να δωσεις στην βαση σου ενα backward combatibility με τις περισσοτερες σουϊτες του office.Εγω προσωπικα εχω στη δουλεια εγκατεστημενη την εκδοση '97 και δεν καταφερε η βαση σου ουτε για πλακα να ανοιξει.

 

Αυτο σημαινει....

 

α.) Φτιαχνεις αλλη μια εκδοση για ολες τις παλαιες σουϊτες του office (95-97...) με λιγοτερες δυνατοτητες.

 

β.) Η καταφερνεις με καποιο τροπο η βαση να μπορει να τρεξει σε ολες τις εκδοσεις.

 

Εκτος αν σνομπαρεις τον κοσμο που εχει μεινει στα παλια

Δημοσ.

φιλε SkYwaLkGR δεν σνομπαρω κανεναν αλλα πιστευω οτι office 2000 εχει πλεον (και πρεπει να εχει) το 99% των χρηστων

παρολα αυτα θα προσπαθησω να φτιαξω και μια version για office 97 και θα σου τη στειλω

Δημοσ.

How to include a bound picture on form:

 

While it's possible to actually store the images within the database itself as OLE objects, normally it's not the preferred way. When you embed an OLE object in a table, you're storing a lot of overhead as well. This overhead is the information about the object (such as it's parent application) that Access needs to store in order to render the object properly.

 

The preferred way to display images is to store the complete path and filename to the actual files themselves within a table, and then use the Image tool (in Access 97/2000) to update the display.

 

The following example shows you how to display Windows bitmap images, .gif files and .jpg files on a Microsoft Access form without storing the images in a Microsoft Access table.

 

Creating the Table to Store File and Path Data:

 

Create a new table that is named Imagetable and then add a text field that is named ImagePath.

 

Open the Imagetable table in Datasheet view and then add the path and the name of a bitmap file to each record. The following examples show how the records might look:

 

c:\windows\circles.bmp

c:\Documents and Settings\Graham\Desktop\Temp\switchboard.jpg

c:\windows\tiles.bmp

c:\Documents and Settings\Graham\Desktop\Temp\Graham.gif

c:\windows\bubbles.bmp

 

Displaying Images in a Form

 

Use the AutoForm: Columnar Wizard to create a new form that is based on the ImageTable table.

 

Open the Imageform form in Design view and then add an image control to the form by using the Image tool in the toolbox. You are prompted to select an image to insert. Select any image available on your computer. Name the control ImageFrame.

 

Set the OnCurrent property of the Imageform form to the following event procedure:

 

Private Sub Form_Current()

On Error Resume Next

Me![imageFrame].Picture = Me![imagePath]

End Sub

 

Set the AfterUpdate property of the ImagePath text box to the following event procedure:

 

Private Sub ImagePath_AfterUpdate()

On Error Resume Next

Me![imageFrame].Picture = Me![imagePath]

End Sub

Αρχειοθετημένο

Αυτό το θέμα έχει αρχειοθετηθεί και είναι κλειστό για περαιτέρω απαντήσεις.

  • Δημιουργία νέου...