top

  Info

  • Utilizzare la checkbox di selezione a fianco di ciascun documento per attivare le funzionalità di stampa, invio email, download nei formati disponibili del (i) record.

  Info

  • Utilizzare questo link per rimuovere la selezione effettuata.
1001 things you wanted to know about Visual FoxPro [[electronic resource] /] / Marcia Akins, Andy Kramek, Rick Schummer
1001 things you wanted to know about Visual FoxPro [[electronic resource] /] / Marcia Akins, Andy Kramek, Rick Schummer
Autore Akins Marcia
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Descrizione fisica 1 online resource (584 p.)
Disciplina 005.75/75
Altri autori (Persone) SchummerRick
Soggetto topico Database management
Soggetto genere / forma Electronic books.
ISBN 1-280-54412-0
9786610544127
1-930919-09-3
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Record Nr. UNINA-9910456211203321
Akins Marcia  
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
1001 things you wanted to know about Visual FoxPro [[electronic resource] /] / Marcia Akins, Andy Kramek, Rick Schummer
1001 things you wanted to know about Visual FoxPro [[electronic resource] /] / Marcia Akins, Andy Kramek, Rick Schummer
Autore Akins Marcia
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Descrizione fisica 1 online resource (584 p.)
Disciplina 005.75/75
Altri autori (Persone) SchummerRick
Soggetto topico Database management
ISBN 1-280-54412-0
9786610544127
1-930919-09-3
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Record Nr. UNINA-9910780262903321
Akins Marcia  
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
1001 things you wanted to know about Visual FoxPro / / Marcia Akins, Andy Kramek, Rick Schummer
1001 things you wanted to know about Visual FoxPro / / Marcia Akins, Andy Kramek, Rick Schummer
Autore Akins Marcia
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Descrizione fisica 1 online resource (584 p.)
Disciplina 005.75/75
Altri autori (Persone) SchummerRick
Soggetto topico Database management
ISBN 1-280-54412-0
9786610544127
1-930919-09-3
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto Intro -- Dedications -- List of Chapters -- Table of Contents -- Our Contract with You, The Reader -- Acknowledgements -- About Us -- How to Download the Files -- Introduction -- What is this book? -- A word about the code in this book -- So who is this book for? -- What is in this book? -- What is not in this book? -- Where do you start? -- Chapter 1 Controlling the VFP Environment -- Starting Visual FoxPro -- Configuration files -- How to specify a config.fpw file -- How VFP locates its configuration file -- How VFP starts up when no configuration file is found -- Including a configuration file in the project -- How to suppress a configuration file -- How to determine which configuration file is being used -- What goes into the configuration file? -- Special settings -- SET Commands -- Commands -- Giving VFP a path -- How VFP looks for files -- Setting the default directory -- Using the SET PATH command -- Where am I? -- How to set a path programmatically -- Making sure VFP is only started once -- Using a 'semaphore' file -- Using the Windows API -- Combination of semaphore and Windows API -- SET Commands and DataSessions -- What exactly does "Default DataSession" mean? -- So can I have a "public" Datasession? -- How can I ensure SET commands apply to a private data session? -- Adding code to BeforeOpenTables() -- Suppressing auto-open tables -- Creating an environment setting class -- How do I get rid of the system toolbars? -- The system toolbar "Gotcha! -- Can I make use of keyboard macros in VFP? -- How can I construct a more complex macro? -- What is a "Macro Set"? -- What's the difference between a macro and an On Key Label? -- How do I create a 'Splash' screen? -- How do I run my splash screen? -- An alternative to the splash screen -- How to wallpaper your desktop -- So how can I get the size of the current _Screen area?.
Do I really need to create all these bitmaps? -- A toolbar 'gotcha!' -- Tidying up your development environment -- Closing VFP down -- What is an On ShutDown procedure? -- What triggers an On Shutdown procedure? -- What goes into an On Shutdown procedure? -- Chapter 2 Functions and Procedures -- How shall we proceed? -- Parameters (an aside) -- By reference, by value? -- How do I know what was passed? -- How should I position my parameters? -- How can I return multiple values from a function? -- What about using named parameters? -- Passing parameters optionally -- Date and time functions -- Elapsed time -- Date in words -- Calculating Age -- What date is the second Tuesday in October of 2000? -- Setting up a payment schedule -- What date is ten business days from today? -- Gotcha! Strict date format and parameterized views -- Working with numbers -- Converting numbers to strings -- Gotcha! calculations that involve money -- String functions -- Gotcha! string concatenation -- Converting between strings and data -- Other useful functions -- How do I determine if a tag exists? -- How do I determine if a string contains at least one alphabetic character? -- How to convert numbers to words -- How to extract a specified item from a list -- Is there a simple way of encrypting passwords? -- Where do you want to GOTO? -- Chapter 3 Design, Design and Nothing Else -- So why all the fuss about OOP anyway? -- So, just what does all this OOP jargon mean? -- Property -- Method -- Event -- Messages -- Classes and Objects -- Inheritance -- Composition -- Aggregation -- Delegation -- Encapsulation -- Polymorphism -- Hierarchies -- Practical object oriented programming (POOP) -- When should you define a class? -- So how do you go about designing a class? -- This all sounds very good but what does it mean in practice? -- How do you go about building your classes?.
But does all this design stuff really work in practice? -- How does the design actually translate into code? -- Working with your classes -- How do I get my classes into the form controls toolbar? -- While we're at it, how can I identify my custom classes in the toolbar? -- But whenever I want white in my bitmaps it shows up gray! -- How do I make Visual FoxPro use my classes instead of base classes? -- How do I change the caption of the label that VFP adds? -- So can I get a browse to show the field name when a caption is set? -- User interface design -- Perception governs acceptance -- Keep your users focussed -- Use the right control for the job -- Chapter 4 Basic Controls -- What do we mean by 'basic'? -- Text boxes -- Text box label class -- Date text box -- Incremental search text box -- Numeric text box -- Handling time -- A time entry text box -- A time entry composite class -- The true time spinner -- Blinking labels -- The expanding edit box -- Calendar combo -- Command buttons -- Gotcha! Programming the logical controls -- Pages and page frames -- Chapter 5 Combos and Lists -- Combo and list box basics -- List and ListItem collections -- When do the events fire? -- How do I bind my combo and list boxes? -- How do I refer to the items in my combo and list boxes? -- What is the difference between DisplayValue and Value? -- What's the difference between RowSourceTypes "alias" and "fields"? -- How do I make my combo and list boxes point to a particular item? -- Quickfill combos -- How do I add new items to my combo and list boxes? -- How do I filter the items displayed in a second combo or list box based on the selection made in the first? -- A word about lookup tables -- Generic lookup combos and lists -- So what if I want to bind my combo to a value that isn't in the list? -- How do I disable individual items in a combo or list?.
How do I create a list box with check boxes like the one displayed by Visual FoxPro when I select "View Toolbars" from the menu? -- A mover list class -- What if I need to display hundreds of items in my combo box? -- Chapter 6 Grids: The Misunderstood Controls -- When do the events fire? -- Gotcha! Grid's valid fires before the valid of the current control -- What is the difference between ActiveRow and RelativeRow? -- Gotcha! ActiveColumn does not really tell you which is the active column -- How do I highlight the current grid row? -- How do I keep my grid from scrolling when the user tabs off the last column? -- How do I create multiline headers? -- Gotcha! Scrolled event does not fire when cursor keys scroll the grid -- Using tool tip text instead of multiline headers -- How do I change the grid's display order? -- How do I control the cursor? -- How do I display the last full page of a grid? -- How do I use a grid to select one or more rows? -- How do I give my multiselect grid incremental search capability? -- How do I use DynamicCurrentControl? -- How do I filter the contents of a grid? -- So what about data entry grids? -- How do I add new records to my grid? -- How do I handle row level validation in my data entry grid? -- How do I delete records in my data entry grid? -- How do I add a combo box to my grid? -- Conclusion -- Chapter 7 Working with Data -- Tables in Visual FoxPro -- Some basics -- How to open the specific table you want to use -- How to get the structure of a table -- How to compare the structures of two tables? -- How to test for the presence of a field in a table -- How to check if a table is being used by another user -- What is exactly is a cursor? -- Indexes in Visual FoxPro -- Types of indexes -- How to get information about an index -- How to test for the existence of an index tag -- Using candidate (and primary) keys.
What is a "surrogate key"? -- Managing user-entered keys -- Using indexes with bound tables -- How to index mixed data types when creating a compound key -- How to index a buffered table -- Working with the database container -- Using long table names -- Using long field names - don't!!! -- Using database containers -- How to validate a database container -- How to pack a database container -- Moving a database container -- Renaming a database container -- Managing referential integrity in Visual FoxPro -- Limitations of the generated RI Code -- Using compound keys in relationships -- What about other RI options? -- Using triggers and rules in Visual FoxPro -- So what's the practical difference between a 'trigger' and a 'rule'? -- Why, when adding a trigger to a table, does VFP sometimes reject it? -- Can I temporarily disable a trigger or rule then? -- How do I actually create my trigger and rule procedures? -- How do I add a trigger to a table? -- So when should I use a trigger? -- And when should I use a rule? -- Must a trigger or rule always refer to a single function? -- Chapter 8 Data Buffering and Transactions -- Using data buffering -- Where are we coming from? -- What do we mean by 'buffering' anyway? -- What does all this mean when creating data-bound forms? -- So just how do I set up buffering in a form? -- So what mode of buffering should I use in my forms? -- Changing the buffer mode of a table -- IsChanged() - another function that FoxPro forgot? -- Using TableUpdate() and TableRevert() -- Managing the scope of updates -- TableUpdate()'s second (force) parameter -- Specifying the table to be updated or reverted -- Conclusion -- How can I handle 'save' and 'undo' functionality generically? -- The design of the form class -- Using the new form class -- Detecting and resolving conflicts -- The role of OldVal() and CurVal().
So how do I actually detect conflicts?.
Altri titoli varianti Thousand and one things you wanted to know about Visual FoxPro
Record Nr. UNINA-9910827462803321
Akins Marcia  
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
Client/server applications with Visual FoxPro and SQL server [[electronic resource] /] / Chuck Urwiler ... [et al.]
Client/server applications with Visual FoxPro and SQL server [[electronic resource] /] / Chuck Urwiler ... [et al.]
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Descrizione fisica 1 online resource (263 p.)
Disciplina 005.756/5
Altri autori (Persone) UrwilerChuck
Soggetto topico Database management - Computer programs
Soggetto genere / forma Electronic books.
ISBN 1-280-55202-6
9786610552023
1-930919-11-5
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto ""Dedication""; ""Our Contract with You, The Reader""; ""Acknowledgements""; ""About the Authors""; ""How to Download the Files""; ""Table of Contents""; ""Chapter 1 Introduction to Client/Server""; ""The PC revolution""; ""Client/server to the rescue""; ""Features of client/server databases""; ""Data access""; ""Security""; ""Database backup""; ""Point-in-time recovery""; ""Triggers""; ""Referential integrity""; ""Indexes""; ""Defaults""; ""Rules""; ""Primary key generation""; ""Stored procedures""; ""Views""; ""User-defined data types""; ""Replication""; ""Transactions""; ""Scalability""
""Reliability""""Advantages of client/server""; ""Performance""; ""Cost""; ""Security""; ""Scalability""; ""Summary""; ""Chapter 2 Visual FoxPro for Client/Server Development""; ""Object-oriented programming (OOP)""; ""Support for COM""; ""Built-in client/server support""; ""Built-in local data engine""; ""Support for other data-access technologies""; ""Rapid Application Development (RAD)""; ""Summary""; ""Chapter 3 Introduction to SQL Server 7.0""; ""Why move to SQL Server?""; ""Capacity""; ""Concurrency""; ""Robustness""; ""Security""; ""Installation""; ""SQL Server editions""
""Licensing""""Character sets""; ""Sort order""; ""Network libraries""; ""Databases, database files and the transaction log""; ""Types of databases""; ""Database files""; ""Creating a database""; ""The transaction log""; ""How SQL Server allocates storage""; ""Transactions and locking""; ""Implicit and explicit transactions""; ""Locking""; ""Database objects""; ""SQL Server object names""; ""Tables""; ""Enforcing data integrity""; ""Indexes""; ""Views""; ""Stored procedures""; ""Triggers""; ""Summary""; ""Chapter 4 Remote Views""; ""Connections""; ""Remote views""; ""Updatable views""
""Buffering""""Committing and refreshing buffers""; ""Other view properties""; ""FetchAsNeeded and FetchSize""; ""MaxRecords""; ""FetchMemo""; ""Tables""; ""Field properties""; ""DefaultValue""; ""RuleExpression""; ""UpdateName""; ""DataType""; ""Summary""; ""Chapter 5 Upsizing: Moving from File-Server to Client/Server""; ""Why upsize?""; ""Using the SQL Server Upsizing Wizard""; ""Indexes""; ""Defaults""; ""Relationships""; ""Validation rules""; ""Changes made locally""; ""Finished at last? Modifying the results of the Upsizing Wizard""; ""The local database""; ""Summary""
""Chapter 6 Extending Remote Views with SQL Pass Through""""Connecting to the server""; ""The SQLConnect() function""; ""The SQLStringConnect() function""; ""Handling connection errors""; ""Disconnecting""; ""Accessing metadata""; ""The SQLTables() function""; ""The SQLColumns() function""; ""Submitting queries""; ""Queries that return a result set""; ""Retrieving multiple result sets""; ""Queries that modify data""; ""Parameterized queries""; ""Making SQL pass through result sets updatable""; ""Calling stored procedures""; ""Handling input and output parameters""; ""Transaction management""
""Binding connections""
Record Nr. UNINA-9910454963403321
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
Client/server applications with Visual FoxPro and SQL server [[electronic resource] /] / Chuck Urwiler ... [et al.]
Client/server applications with Visual FoxPro and SQL server [[electronic resource] /] / Chuck Urwiler ... [et al.]
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Descrizione fisica 1 online resource (263 p.)
Disciplina 005.756/5
Altri autori (Persone) UrwilerChuck
Soggetto topico Database management - Computer programs
ISBN 1-280-55202-6
9786610552023
1-930919-11-5
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto ""Dedication""; ""Our Contract with You, The Reader""; ""Acknowledgements""; ""About the Authors""; ""How to Download the Files""; ""Table of Contents""; ""Chapter 1 Introduction to Client/Server""; ""The PC revolution""; ""Client/server to the rescue""; ""Features of client/server databases""; ""Data access""; ""Security""; ""Database backup""; ""Point-in-time recovery""; ""Triggers""; ""Referential integrity""; ""Indexes""; ""Defaults""; ""Rules""; ""Primary key generation""; ""Stored procedures""; ""Views""; ""User-defined data types""; ""Replication""; ""Transactions""; ""Scalability""
""Reliability""""Advantages of client/server""; ""Performance""; ""Cost""; ""Security""; ""Scalability""; ""Summary""; ""Chapter 2 Visual FoxPro for Client/Server Development""; ""Object-oriented programming (OOP)""; ""Support for COM""; ""Built-in client/server support""; ""Built-in local data engine""; ""Support for other data-access technologies""; ""Rapid Application Development (RAD)""; ""Summary""; ""Chapter 3 Introduction to SQL Server 7.0""; ""Why move to SQL Server?""; ""Capacity""; ""Concurrency""; ""Robustness""; ""Security""; ""Installation""; ""SQL Server editions""
""Licensing""""Character sets""; ""Sort order""; ""Network libraries""; ""Databases, database files and the transaction log""; ""Types of databases""; ""Database files""; ""Creating a database""; ""The transaction log""; ""How SQL Server allocates storage""; ""Transactions and locking""; ""Implicit and explicit transactions""; ""Locking""; ""Database objects""; ""SQL Server object names""; ""Tables""; ""Enforcing data integrity""; ""Indexes""; ""Views""; ""Stored procedures""; ""Triggers""; ""Summary""; ""Chapter 4 Remote Views""; ""Connections""; ""Remote views""; ""Updatable views""
""Buffering""""Committing and refreshing buffers""; ""Other view properties""; ""FetchAsNeeded and FetchSize""; ""MaxRecords""; ""FetchMemo""; ""Tables""; ""Field properties""; ""DefaultValue""; ""RuleExpression""; ""UpdateName""; ""DataType""; ""Summary""; ""Chapter 5 Upsizing: Moving from File-Server to Client/Server""; ""Why upsize?""; ""Using the SQL Server Upsizing Wizard""; ""Indexes""; ""Defaults""; ""Relationships""; ""Validation rules""; ""Changes made locally""; ""Finished at last? Modifying the results of the Upsizing Wizard""; ""The local database""; ""Summary""
""Chapter 6 Extending Remote Views with SQL Pass Through""""Connecting to the server""; ""The SQLConnect() function""; ""The SQLStringConnect() function""; ""Handling connection errors""; ""Disconnecting""; ""Accessing metadata""; ""The SQLTables() function""; ""The SQLColumns() function""; ""Submitting queries""; ""Queries that return a result set""; ""Retrieving multiple result sets""; ""Queries that modify data""; ""Parameterized queries""; ""Making SQL pass through result sets updatable""; ""Calling stored procedures""; ""Handling input and output parameters""; ""Transaction management""
""Binding connections""
Record Nr. UNINA-9910779967603321
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
Client/server applications with Visual FoxPro and SQL server / / Chuck Urwiler ... [et al.]
Client/server applications with Visual FoxPro and SQL server / / Chuck Urwiler ... [et al.]
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Descrizione fisica 1 online resource (263 p.)
Disciplina 005.756/5
Altri autori (Persone) UrwilerChuck
Soggetto topico Database management - Computer programs
ISBN 1-280-55202-6
9786610552023
1-930919-11-5
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto ""Dedication""; ""Our Contract with You, The Reader""; ""Acknowledgements""; ""About the Authors""; ""How to Download the Files""; ""Table of Contents""; ""Chapter 1 Introduction to Client/Server""; ""The PC revolution""; ""Client/server to the rescue""; ""Features of client/server databases""; ""Data access""; ""Security""; ""Database backup""; ""Point-in-time recovery""; ""Triggers""; ""Referential integrity""; ""Indexes""; ""Defaults""; ""Rules""; ""Primary key generation""; ""Stored procedures""; ""Views""; ""User-defined data types""; ""Replication""; ""Transactions""; ""Scalability""
""Reliability""""Advantages of client/server""; ""Performance""; ""Cost""; ""Security""; ""Scalability""; ""Summary""; ""Chapter 2 Visual FoxPro for Client/Server Development""; ""Object-oriented programming (OOP)""; ""Support for COM""; ""Built-in client/server support""; ""Built-in local data engine""; ""Support for other data-access technologies""; ""Rapid Application Development (RAD)""; ""Summary""; ""Chapter 3 Introduction to SQL Server 7.0""; ""Why move to SQL Server?""; ""Capacity""; ""Concurrency""; ""Robustness""; ""Security""; ""Installation""; ""SQL Server editions""
""Licensing""""Character sets""; ""Sort order""; ""Network libraries""; ""Databases, database files and the transaction log""; ""Types of databases""; ""Database files""; ""Creating a database""; ""The transaction log""; ""How SQL Server allocates storage""; ""Transactions and locking""; ""Implicit and explicit transactions""; ""Locking""; ""Database objects""; ""SQL Server object names""; ""Tables""; ""Enforcing data integrity""; ""Indexes""; ""Views""; ""Stored procedures""; ""Triggers""; ""Summary""; ""Chapter 4 Remote Views""; ""Connections""; ""Remote views""; ""Updatable views""
""Buffering""""Committing and refreshing buffers""; ""Other view properties""; ""FetchAsNeeded and FetchSize""; ""MaxRecords""; ""FetchMemo""; ""Tables""; ""Field properties""; ""DefaultValue""; ""RuleExpression""; ""UpdateName""; ""DataType""; ""Summary""; ""Chapter 5 Upsizing: Moving from File-Server to Client/Server""; ""Why upsize?""; ""Using the SQL Server Upsizing Wizard""; ""Indexes""; ""Defaults""; ""Relationships""; ""Validation rules""; ""Changes made locally""; ""Finished at last? Modifying the results of the Upsizing Wizard""; ""The local database""; ""Summary""
""Chapter 6 Extending Remote Views with SQL Pass Through""""Connecting to the server""; ""The SQLConnect() function""; ""The SQLStringConnect() function""; ""Handling connection errors""; ""Disconnecting""; ""Accessing metadata""; ""The SQLTables() function""; ""The SQLColumns() function""; ""Submitting queries""; ""Queries that return a result set""; ""Retrieving multiple result sets""; ""Queries that modify data""; ""Parameterized queries""; ""Making SQL pass through result sets updatable""; ""Calling stored procedures""; ""Handling input and output parameters""; ""Transaction management""
""Binding connections""
Record Nr. UNINA-9910825973403321
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2000
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
CrysDev [[electronic resource] ] : a developer's guide to integrating Crystal reports / / Craig Berntson, Dan Jurden
CrysDev [[electronic resource] ] : a developer's guide to integrating Crystal reports / / Craig Berntson, Dan Jurden
Autore Berntson Craig
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2003
Descrizione fisica xxi, 450 p. : ill
Disciplina 651.7/8/028557585
Soggetto topico Business report writing - Computer programs
Soggetto genere / forma Electronic books.
ISBN 1-280-54423-6
9786610544233
1-930919-39-5
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Record Nr. UNINA-9910456358003321
Berntson Craig  
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2003
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
CrysDev [[electronic resource] ] : a developer's guide to integrating Crystal reports / / Craig Berntson, Dan Jurden
CrysDev [[electronic resource] ] : a developer's guide to integrating Crystal reports / / Craig Berntson, Dan Jurden
Autore Berntson Craig
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2003
Descrizione fisica xxi, 450 p. : ill
Disciplina 651.7/8/028557585
Soggetto topico Business report writing - Computer programs
ISBN 1-280-54423-6
9786610544233
1-930919-39-5
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Record Nr. UNINA-9910780128103321
Berntson Craig  
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2003
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
CrysDev : a developer's guide to integrating Crystal reports / / Craig Berntson, Dan Jurden
CrysDev : a developer's guide to integrating Crystal reports / / Craig Berntson, Dan Jurden
Autore Berntson Craig
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2003
Descrizione fisica xxi, 450 p. : ill
Disciplina 651.7/8/028557585
Soggetto topico Business report writing - Computer programs
ISBN 1-280-54423-6
9786610544233
1-930919-39-5
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto Intro -- Our Contract with You, The Reader -- List of Chapters -- Table of Contents -- Acknowledgements -- About the Authors -- How to Download the Files -- Chapter 1: Introducing Crystal Reports -- Crystal Reports versions -- Installing Crystal Reports -- What's changed in version 9? -- What's missing? -- What's new? -- Upcoming chapters -- Summary -- Chapter 2: Touring Crystal Reports -- Report Experts -- Data page -- Links page -- Fields page -- Grouping page -- Summaries page -- Group Sorting page -- Chart page -- Record Selection page -- Template page -- Blank Reports -- The Crystal Reports desktop -- Menus -- Toolbars -- Status bar -- Design page -- Preview page -- Report Sections -- Section Expert -- Formatting report objects -- Common page -- Border page -- Font page -- Paragraph page -- Hyperlink page -- Resizing and moving objects -- Using the mouse -- Using the keyboard -- The Object Size and Position window -- Guidelines -- Setting options -- Application options -- Report options -- The report-processing model -- Pre-pass 1 -- Pass 1 -- Pre-pass 2 -- Pass 2 -- Pass 3 -- Summary -- Chapter 3: Creating Your First Report -- Designing the report -- Sketching the report -- The report data -- Your first report, step-by-step -- Selecting the data source -- Adding data fields to the report -- Adding a calculated field -- Grouping and group totals -- Formatting the report -- Adding the page header -- Charting made easy -- Summary -- Chapter 4: Accessing Data -- Using the Database Expert -- Creating a new connection -- Selecting database objects -- Linking Tables -- Field definition files -- Creating a field definition file -- Using a field definition file -- Working with Images -- Images in the database -- Adding a watermark -- Limiting records selected -- The Select Expert -- Miscellaneous data functions -- Set Database Location.
LogOn or Off Server -- Show SQL Query -- Perform Grouping on Server -- Report Bursting Indexes -- Summary -- Chapter 5: Intermediate Reporting -- Understanding the Crystal Repository -- Adding objects to the repository -- Using repository objects in a report -- Updating objects in the repository -- Sorting -- Groups -- Drill-down -- Hierarchical groups -- Summaries -- Subtotals and grand totals -- Running totals -- Cross-tabs -- Charts -- Basic charting -- Advanced charting -- Maps -- The Data tab -- The Type tab -- The Text tab -- Summary -- Chapter 6: Advanced Reporting -- Report parameters -- Multiple value parameters -- Default values -- Report alerts -- OLE objects -- Embedded fields -- Hierarchical reports -- Summary -- Chapter 7: Subreports -- Inserting a subreport -- Unlinked subreports -- Linked subreports -- On-demand subreports -- Updating subreports -- Summary -- Chapter 8: Using Formulas -- The Formula Editor -- The General toolbar -- The Workshop toolbar -- The Custom Function toolbar -- The Workshop Tree -- The Editor toolbar -- Understanding formulas -- Comments -- Data Types -- Variables -- Fields -- Operators -- Functions -- Custom Functions -- The Forumla Extractor -- The Formula Expert -- Summary -- Chapter 9: The RDC: Introduction, Printing, and Databases -- Understanding the Report Designer Component -- Getting started with RDC programming -- Registering the runtime component -- Working with collections -- The Application object -- The Report object -- The Database object -- Working with tables -- Passing stored procedure parameters -- The DatabaseTable object -- The ConnectionProperties object -- Getting connection property information -- Working with fields -- Linking tables -- Connecting to data - some examples -- Logging on and off a server database -- Connecting to ADO -- Connecting to XML -- Connecting to file based data.
You connected to your data, now what? -- Summary -- Chapter 10: The RDC: Manipulating Data -- Sorting -- Working with Groups -- Summary Fields -- Running Totals -- SQL Expressions -- Formula Fields -- Parameter Fields -- Report alerts -- Summary -- Chapter 11: The RDC: Formatting the Report -- Working with Areas -- Condition Formulas -- Working with Sections -- The ReportObject object -- TextObject object -- Field elements -- LineObject object -- BoxObject object -- FieldObject object -- Picture fields -- Special variable fields -- Summary fields -- BlobFieldObject object -- Crosstabs -- GraphObject object -- The FieldDefinitions Collection -- MapObject object -- OLEObject -- OLAPGridObject object -- The ObjectSummaryFieldDefinitions collection -- Unbound fields -- Subreports -- Summary -- Chapter 12: Previewing the Report at Runtime -- Registering the control -- Creating a preview form -- Methods of the Viewer Control -- Showing the report -- Retrieving information -- Events -- Report objects events -- Drill events -- Toolbar objects events -- Miscellaneous events -- Summary -- Chapter 13: The Report Designer Control -- Registering the Control -- Creating a design form -- Working with the designer -- Providing Help -- Using the Designer Control -- Summary -- Chapter 14: Exporting Reports -- Programmatic exports -- Exporting to files -- Adobe Acrobat (PDF) -- Microsoft Word -- Microsoft Excel -- Rich Text Format (RTF) -- HTML -- XML -- Comma Separated Values (CSV) -- Tab-Separated Text -- Text -- Report Definition -- Exporting to an application -- Exporting to MAPI -- Exporting to ODBC -- Summary -- Chapter 15: Integrating COM Components -- Formulas revisited -- Events -- Report events -- Section events -- Separate image files -- Report variables -- Summary -- Chapter 16: Web Reporting -- Report design revisited -- Embedded hyperlinks.
Cascading style sheets -- Navigation -- Report Parts -- Working with ASP -- Page rendering objects -- Customizing the Viewer -- The Report Application Server -- Customizing the RAS -- The RAS SDK -- Summary -- Chapter 17: Crystal Reports .NET -- Windows-based applications -- Web-based applications -- The Crystal Reports .NET designer -- Connecting to ADO .NET -- XML web services -- Publishing a web service -- Consuming a web service -- The CrystalDecisions namespaces -- Summary -- Chapter 18: Licensing and Distribution -- Distribution -- RDC distribution -- Web reporting -- .NET distribution -- Licensing -- The License Manager -- Summary -- Chapter 19: Crystal Reports Tools -- Documentation files -- The Crystal Decisions web site -- Hot fixes and service packs -- Utilities -- Support forums -- Summary -- Index.
Record Nr. UNINA-9910828850803321
Berntson Craig  
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2003
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
Debugging Visual FoxPro applications [[electronic resource] /] / Nancy Folsom
Debugging Visual FoxPro applications [[electronic resource] /] / Nancy Folsom
Autore Folsom Nancy
Pubbl/distr/stampa Whitefish Bay, Wis., : Hentzenwerke Publishing, c2002
Descrizione fisica xvii, 113 p
Disciplina 005.75/65/0285514
Soggetto topico Debugging in computer science
Soggetto genere / forma Electronic books.
ISBN 1-280-54416-3
9781930919212
9786610544165
1-930919-21-2
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Record Nr. UNINA-9910455253803321
Folsom Nancy  
Whitefish Bay, Wis., : Hentzenwerke Publishing, c2002
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui