The Prestwood eMag  |  www.prestwood.com |
|
| October 2008 - Full Edition | Year 10 Issue 10
|
|
| A computer community for power-users and I.T. professionals! |
|
Table of Contents: |
|
 Mike Prestwood | From our Computer Community topic...Spend Your Points!It's time to spend your member points! C++Builder Specific: C++Builder 2009 Ships! Embarcadero Technologies unveils C++Builder 2009! The next generation of the popular CodeGear rapid application development (RAD) tools for Windows native code development. |
|
A classic post from our Software topic... 10 FREE Must-Have Net Admin Apps by Mike PrestwoodIf you maintain more than a few computers, here are 10 applications you should have in your toolbox of software. A classic post from our Delphi for Win32 topic... Delphi 2009 Ships!Embarcadero Technologies unveils Delphi 2009! The next generation of the popular CodeGear rapid application development (RAD) tools for Windows native code development.
Monthly Access Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Language Basics Topic. Code Snippet of the Month
- .MDB - Access Database
- .MDE - Protected Access Database
From our MDB DB & Tables Topic. Question: Should I store images in my Microsoft Access MDB database our outside and just store the name? Answer: Store the image outside of your MDB Access database. There are many benefits to storing it outside of Access including the following: - More easily work with all the images at once.
- avoid the overhead of an OLE server
- decrease the size of your MDB file
- easily reuse images with other development tools such as a website, VB, VS.Net, etc.
- Metadata is preserved
| |
Access Message Board Ask this group a question! Select a topic below or Visit Access Board Now!
| Thread Starter | Replies | Last Post | Topic | | Form with dependent combo b... Hello-Very much a beginner at Access here. I'm trying to create a form for data entry, and may have several questions, but let's start with this one:I am entering data related to employee attend... | 0 | New! 9/26/2008 | MS Access Interactive |
American I.T. Message Board Ask this group a question! Select a topic below or Visit American I.T. Board Now!
| Thread Starter | Replies | Last Post | Topic | | With our economy, do we sti... With the downturn in the economy and so many people out of work, do we really still need the H-1B program? If the H-1B program is really intended to fill in the... | 1 | I was watching an interview with Bill Gates this weekend on CNN and he essentially made the argument... 10/6/2008 | H-1B Discussion |
Monthly Analyst Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Data Flow Diagrams (DFD) Topic. DFDs document a process by documenting the flow of data throughout the process. They depict how data interacts with a system. They can be used to engineer a new process, document an existing process, or re-engineer an existing process. Traditional Data Flow Diagrams use four (4) symbols, a square, an arrow, a circle, and parallel lines. DFDs document a process by documenting the flow of data throughout the process. They depict how data interacts with a system. They can be used to engineer a new process, document an existing process, or re-engineer an existing process. Traditional Data Flow Diagrams use four (4) symbols, a square, an arrow, a circle, and parallel lines.
DFDs are also known as Data Flow Graphs, Bubble Charts, Petri Networks, Yourdon/DeMarco notation, and Gane/Sarson notation. From our Analysis & UML Topic. Question: Should the analyst be responsible for collecting domain entities and attributes? Answer: If the analyst is qualified sure, but if they're not, don't push it. Many times a resource was made the analyst not because they are a great analyst but because they have great people skills, know the domain well, and can document process well. Under that scenario, I prefer a programmer analyst work with the business analyst to identify entities and attributes. If the analyst is not good at documenting process, find a new analyst. In PSDP, we overcome this problem by creating the database and GUI prototype during the requirements phase. By forcing the creation of the database while discovering what the client wants, you force the identifying of entitities and attributes. In UML, sometimes analysts create class diagrams to create the database. The Data Model is a much better choice. | |
Analyst Message Board Ask this group a question! Select a topic below or Visit Analyst Board Now!
Monthly ASP Classic Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Tool Basics Topic. Code Snippet of the Month This is a simple example of passing a value to a JavaScript function. You can pass values to JavaScript the same way you pass values to HTML. <% Dim MyName MyName = "Mr Paradiddle" %> <script language="javascript"> <!-- function ShowYourName() { document.write('Your name is <%=MyName%>.') } ShowYourName() --> </script> From our Tool Basics Topic. Question: Can you edit Access and MS SQL Server views? Answer: Although this question really depends on the provider, in general, the answer is no to MS Access views and yes to MS SQL Server views so long as you open the RecordSet editable. | |
ASP Classic Message Board Ask this group a question! Select a topic below or Visit ASP Classic Board Now!
A classic post from our WebForms Coding Tasks topic... How to open a URL in a pop-up window. by Bryan ValenciaEvery now and then you want a link to open not only in a new browser, but you may want to give the new window the appearance of a pop-up window.
This ASP/Javascript method gives you a lot of control and is easy to figure out and implement. |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our WebForms Coding Tasks Topic. Code Snippet of the Month Retrieves an array of all the components of any given type within a starter control (such as a page, table, panel, etc.) This routine is recursive and will keep iterating down until all the embedded components are found.
This C# code can be invoked to produce an array as follows: CheckBox[] myCheckboxes = GetAllCheckboxes(Table1);
public CheckBox[] GetAllCheckboxes(Control myControl) { ArrayList myCheckboxes = new ArrayList(); foreach (Control thisControl in myControl.Controls) { if (thisControl is CheckBox) { myCheckboxes.Add(thisControl); } if (thisControl.HasControls()) { myCheckboxes.AddRange(GetAllCheckboxes(thisControl)); } } CheckBox[] result = (CheckBox[])myCheckboxes.ToArray(typeof(CheckBox)); return result; }
From our Language Basics Topic. The null-coalescing operatior ?? is used to assign a default value for nullable value types or reference types. This operator prevents exceptions from being thrown when trying to assign a nullable type to a non-nullable type.
For example, this code will throw an exception.
int? x = null; int y = x;
However, this code will assign the default value of -1 to y: int? x = null; int y = x ?? -1; | |
C# Message Board Ask this group a question! Select a topic below or Visit C# Board Now!
A classic post from our C++Builder Specific topic... C++Builder 2009 Ships!Embarcadero Technologies unveils C++Builder 2009! The next generation of the popular CodeGear rapid application development (RAD) tools for Windows native code development. |
C++ Message Board Ask this group a question! Select a topic below or Visit C++ Board Now!
A classic post from our Object Orientation (OO) topic... Aggregation by Mike PrestwoodAggregations indicate a whole-part relationship, and are known as "has-a" or "is part of" relationships. An Aggregation relationship is indicated by a line with a hollow diamond. |
Monthly Coder Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our General .Net Concepts Topic Resource Link of the Month: PowerCommands for Visual Studio 2008 According to Microsoft, "PowerCommands is a set of useful extensions for the Visual Studio 2008 adding additional functionality to various areas of the IDE. The source code is included and requires the VS SDK for VS 2008 to allow modification of functionality or as a reference to create additional custom PowerCommand extensions. " If you've previously worked with Delphi and GExperts, you know how helpful some extensions to your IDE can be. This free download, from Microsoft, adds some really useful functionality to the VS2008 IDE. Check it out. From our General Tasks Topic. Question: How do you enable ASP.Net (ASPX) in IIS 6? Answer: You turn on ASPX in your control panel. Depending on what O/S and version of IIS there are slightly different steps required but essentially you go to the Add/Remove Programs, Alter Windows Components, and make sure ASPX is checked in the Application Server or Application Development Services.
More Info / Details - http://support.microsoft.com/default.aspx?scid=kb;en-us;332124&Product=winsvr2003 | |
Coder Message Board Ask this group a question! Select a topic below or Visit Coder Board Now!
A classic post from our DBA & Data topic... oracle silent mode installation using response file by swawsjiYou can automate the installation and configuration of Oracle software, either fully or partially, by specifying a response file when you start the Oracle Universal Installer. |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our DBA & Data Topic. In a Tab-delimited format (TDF) file, each field is delimited by a tab character. Each record is delimited with a carriage return and line feed. TDF has the advantages of being immune to commas and quotation marks within the data itself. In a Tab-delimited format (TDF) file, each field is delimited by a tab character. Each record is delimited with a carriage return and line feed. TDF has the advantages of being immune to commas and quotation marks within the data itself.From our Desktop Databases Topic Resource Link of the Month: Windows Virtualization List of resources provided by Microsoft about Windows Virtualization which was introduced with Vista. From our MS SQL 2005 Topic. Question: How do you store BLOBs (Binary Large Objects) in Microsoft SQL Server? Answer: BLOBs (Binary Large Objects) are collections of data that can be stored as a single entity in a database. In Microsoft SQL Server, BLOBs are stored using the text, ntext, and image data types.
- The text data type stores a variable length of non-unicode data up to 231 - 1 characters.
- The ntext data type stores a variable length of unicode data up to 230 - 1 characters. The storage size, in bytes, is twice the amount of characters.
- The image data type is used to store image files smaller than 231 - 1 bytes.
| |
DBA Message Board Ask this group a question! Select a topic below or Visit DBA Board Now!
A classic post from our Language Basics topic... Simple Habits Save Lots of Pain by Wes PetersonWe developers sometimes get "on a roll." We know exactly what we need to do, and the code just flies off our fingertips.
Later, though, we find ourselves in trouble... A classic post from our Using Data topic... Developing Web Servers with Delphi by Kim BerryThis article by Kim Berry was first published in the July 2001 Prestwood eMagazine. |
Monthly Delphi Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Using Data Topic. Code Snippet of the Month Use SetWindowRgn API call to make a round form. The SetWindowRgn function sets the window region of a window. The window region determines the area within the window where the operating system permits drawing. The operating system does not display any portion of a window that lies outside of the window region.
Simply use this function in the FormCreate event: procedure TForm.FormCreate(Sender: TObject); var R1: HRGN; R2: HRGN;
begin R1 := CreateEllipticRgn(1, -1, Width - 1, Height); R2 := CreateEllipticRgn(50, 50, Width - 50, Height - 50); CombineRgn(R2, R1, R2, RGN_XOR); SetWindowRgn(Handle, R2, True); end; From our Delphi for Win32 Topic Resource Link of the Month: Delphi for Win32 Roadmap Official Delphi and C++Builder Roadmap from Codegear. From our OOP Topic. Question: What is the difference between private and strict private? Answer: Private visibility means members are invisible outside of the unit. In OO terms, this is how Object Pascal implements friendly classes (visibility to the private members of another class). To implement true private members in Delphi 1-7, put each class in a separate unit (most developers didn't bother).
Strict Private visibility means that private members within a class are visible ONLY within the class declared. In OO terms, this is true private visibility. | |
Delphi Message Board Ask this group a question! Select a topic below or Visit Delphi Board Now!
| Thread Starter | Replies | Last Post | Topic | | Storing Jpeg Files into Par... Can anyone help me How can I store Jpeg Camera files into my database I have a field in my database called image which is set to a graphic Type How can I sto... | 3 | Hi Owen,
Nice solution. Sure, I'd like to see the code. You can post it here if it's short or how a... 9/25/2008 | Delphi Single User Apps |
A classic post from our Coding Tasks topic... Add Favorites or Bookmark - Works with all browsers. by Mike PrestwoodFor IE 4+, this script will give visitors to your site the option to add your page to their favorites. For Netscape users it will remind them to press Control + D, for all others, it simply reminds them to bookmark your page. A classic post from our Beginners Corner topic... JavaScript Event Model by Mike PrestwoodDescription of the JavaScript event handlers. |
Monthly JavaScript Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Beginners Corner Topic. Question: How do I protect my javascript code? Answer: In the main you don't, as the language is ran from source, you need to deliver the source code, with JScript, there is the Script Encoder (see MSDN) but this is nothing more than obfuscation in effect, disabling the Right Mouse button, also achieves nothing to protect your script in a web browser. Your code is likely protected under copyright laws. | |
JavaScript Message Board Ask this group a question! Select a topic below or Visit JavaScript Board Now!
A classic post from our Interactive Paradox: Using Data topic... Types of Tables -- Which Type to Use by Mike PrestwoodParadox versus dBASE tables. Which to use in Paradox for Windows. A classic post from our Paradox for Linux topic... Chapter 29: An ObjectPAL Primer for Paradox for Linux by Mike PrestwoodChapter 29 by Mike Prestwood from the book WordPerfect Office 2000 for Linux: The Official Guide. First published June 2000 by Osborne-McGraw/Hill. ISBN 0-07-212238-2. |
Monthly Paradox Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Interactive Paradox: Queries (QBE) Topic. Code Snippet of the Month The first half is an inexact search and the second half tells it to limit the search to four characters. QBE Expression... mIkE.., @@@@ From our Interactive Paradox: Using Data Topic. A Paradox Database is a set of related Paradox tables (usually in the same directory). A database is an organized collection of information. For Paradox table users, the meaning of the term Paradox Database is stretched to mean a set of related Paradox tables (usually in the same directory). From our Installation, Setup, & BDE Topic Windows Vista and Server 2008 users need to install Windows Help to use Paradox's help. Paradox 9 (and all versions of Paradox including Paradox 10 and 11) still ship with a Windows Help file so, if you're a Vista user, you will need to download Windows Help. Hopefully Corel will convert the Paradox help file to the new help system in a future version of Paradox and hook it into Paradox. This is a very easy task to do so it's just a matter of them wanting to do it. From our Paradox for DOS Topic Resource Link of the Month: Workaround to This System Does Not Support Full Screen Mode in Windows Vista Want to run Paradox for DOS in full screen mode? Good summary of this issue with 3 work-arounds. It seems it's better just to get used to looking at Paradox for DOS in a Window. The default font size for DOS apps is pretty small and you get a small Window on most monitors because monitors these days have much higher resolution. Increasing it to 10x18 on my Vista notebook made for a nice Paradox for DOS experience.
Microsoft link addressing this issue... Some 16-bit DOS-based Programs and the Command Prompt will not run in full-screen mode in Windows Vista
From our Professional Paradox/ObjectPAL Help Topic. Question: I like the concept and feature-set of Paradox, but wonder if it can handle very large transactions and storage? Answer: We like Paradox's feature set too but it's not the right tool for every situation. For very large transactions and storage, we prefer a true SQL server over ALL file-based databases including over Paradox. Although we judge and discuss the viability of toolsets for each project, we do have standards we steer our clients toward. For example, we steer our Paradox-oriented large transaction/large storage needs clients toward SQL Server 2005 with either VS.Net as a front-end or Delphi (for a true native code solution).
From our Paradox Tables Topic Tip of the Month If you are developing an application using local tables and you know you are eventually going to move the data onto a SQL server, then do yourself a favor and spend a few hours studying the field and table naming rules of your target SQL server before you create your first table. While creating your local tables, use a naming convention that uses common rules. If you use the naming rules in common between the two database types, then you will save yourself time when you move your data to the SQL server because SQL servers often have different naming rules from the naming rules in Paradox. | |
Paradox Message Board Ask this group a question! Select a topic below or Visit Paradox Board Now!
| Thread Starter | Replies | Last Post | Topic | | Open Paradox9 form in Parad... Hi,
I would not be the first to request some help to migrate from P9 to P10.
I have some forms, created with P9 with a bipmap on each... I try to open with P1... | 5 | OK.. first, I suggest that you check Bertil's bug list site.. if it's a known bug or issue, it'll be... 10/2/2008 | Convert To/From Paradox | | retrieving table structure(... Hello friends,
I am new to paradox environement. I am using dotnet as front end and need to retrieve the table structure from a paradox table ... | 1 | Just adding a bit to this thread...The various ODBC drivers work pretty well. There are several Para... 9/30/2008 | Paradox Tables | | access violation error Any ideas on how to resolve this error when clicking on the table lookup tab in the table info dialogue? Running Win XP Service Pak 2, and Paradox 11... | 1 | Hi Gary,Not sure if you're still having this issue but I thought I would add a bit to this thread.Th... 9/30/2008 | Paradox Setup, Vista, etc. | | Problem with Query Hello!
There are problem in query:
Can't process this query remotely.
This is part of code:
q_first=Query ANSWER: :PRIV:blankRazr1.DB REGISTR.DB | | |... | 1 | What is the error on the one workstation that has the error? Are you still having this error? 9/25/2008 | QBE & SQL | | Paradox 10 and XP Service P... Hello!
Using Paradox Version 10.0.0.663
Any Issues? or Was it no problem!
Been searching the forum and could not find much of anything.
Thanks
scot... | 1 | scott.. total non-issue with any version of paradox.. 9/11/2008 | Paradox Setup, Vista, etc. |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Education (Audio/Video) Topic Resource Link of the Month: Audio: David I on GeekSpeak Hear David I discuss software development on a nationally syndicated radio show. I posted this to the PHP group because he focused a bit on Delphi for PHP and PHP in general. | |
PHP Message Board Ask this group a question! Select a topic below or Visit PHP Board Now!
Prestwood Message Board Ask this group a question! Select a topic below or Visit Prestwood Board Now!
PrestwoodBoards Message Board Ask this group a question! Select a topic below or Visit PrestwoodBoards Board Now!
| Thread Starter | Replies | Last Post | Topic | | Time to spend your points! ... This month we finally finished up our spend member points features.
Now you can earn points for your community participation and then spend
them on merchandis... | 1 | Thanks Mike. That's a neat program. I'll take a look later this week when I have time. 10/6/2008 | Just Conversation | | No more verify email required. In an effort to make using the Prestwood Programmer Community easier, we've relaxed some of the obsticles. You no longer need to verify your email address prior... | 2 | I like it Mike. Good change! I don't know about psantoro's suggestions though. I think it would invi... 10/6/2008 | Just Conversation | | Amateur? Paradox developer Hi folks I am not a professional programmer, but I am programmed with Paradox since 1995 (with the first version for Windows) a single application (for the pro... | 2 | Thanks Wes, for the information and the tip. 9/18/2008 | Member Introductions |
Prism Message Board Ask this group a question! Select a topic below or Visit Prism Board Now!
A classic post from our PSDP & Process topic... QC: PSDP Change Management Procedure by Mike PrestwoodThis change management procedure is specific to Prestwood Software Development Process (PSDP). PSDP is our free process we maintain and distribute as well as use with our own clients. Althought this is specific to PSDP, you can read it with an eye toward your own change management procedure. Do you use version control software? Do you use promotion groups? |
Monthly PSDP Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our PSDP Analysis Topic. In PSDP Online, an actor is a UML Actor, role, or person that interfaces with the system you are building.
When establishing actors of your system, do not think in terms of a specific person, think in terms of their role. Do not name an actor the name of the person filling the role. If Bob is our Sales Clerk, name your actor Sales Clerk (not Bob). From our PSDP Change Orders Topic. Question: When should I execute a change order on a time and material project? Answer: At a minimum, execute a change order whenever the project budget will increase and when it will decrease by a substantial amount. Although not required, you should execute a change order whenever features migrate or are swapped out for other features. You should execute a change order even when the swap has no apparent impact on budget. I say "apparent" because analysts frequently do less research on changes especially when they look like they will have no impact on the budget. From our PSDP Artifacts Topic Tip of the Month You can apply PSDP Artifacts to an existing system that has ongoing development and/or maintenance. For desktop applications, start with one PSDP Artifact per form and report. For websites, start with one PSDP Artifact per page. If you have a utility that imports and/or exports data, start with one PSDP Artifact per import/outport combination. Perhaps add each artifact as you go forward in your development. | |
PSDP Message Board Ask this group a question! Select a topic below or Visit PSDP Board Now!
Monthly Tech Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Hardware Topic. Definition of the Month: SAN A high speed network of storage devices availabe to all servers on a LAN or WANA high speed network of storage devices availabe to all servers on a LAN or WAN | |
Tech Message Board Ask this group a question! Select a topic below or Visit Tech Board Now!
Monthly Tech Writer Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our MS Compiled Windows Help (.CHM) Topic Resource Link of the Month: HelpScribble - an amazing tool We're all familiar with program help systems. At Prestwood, of course, we need to author them for many of the applications we create.
There are many help authoring tools available, and HelpScribble is one of my two favorites.
Now, even though you may not need to create program help systems, help files, on their own, can be a great way to organize and convey all manner of information. Because they can contain a table of contents, an index, search capabilities, hyperlinks from one topic to another, and embedded graphics, they can be a wonderful way to document many kinds of complex information - say a training manual for new workers - in just about any industry.
The people at Just Great Software like to say that, "If you can scribble, you can create help systems." They're right: HelpScribble makes it about as easy as it could get. Naturally, HelpScribble includes an extensive help system of its own, which will teach you everything you need to know.
HelpScribble can produce
- WinHelp (.hlp files),
- Compiled HTML Help (.chm files),
- Rich Text Format (.rtf files) for printed manuals, and
- Multi-page HTML output - suitable for web help.
At only $99, this is one of the best software bargains I've encountered.
You can read all about HelpScribble, and download a free trial here: http://www.helpscribble.com/ | |
Tech Writer Message Board Ask this group a question! Select a topic below or Visit Tech Writer Board Now!
Monthly Tester Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Beginner's Corner Topic. The preliminary testing of a new product in which research and development are still in progress. In PSDP, alpha builds are delivered during the initial coding phase in order to validate functionality.The preliminary testing of a new product in which research and development are still in progress. In PSDP, alpha builds are delivered during the initial coding phase in order to validate functionality. The focus is on validating that the requirements are met and not on finding defects. | |
Tester Message Board Ask this group a question! Select a topic below or Visit Tester Board Now!| Topic | Threads | Posts | Last Active Thread | | Testing | 1 | 0 | No Subject! |
V.FoxPro Message Board Ask this group a question! Select a topic below or Visit V.FoxPro Board Now!
A classic post from our WinForms topic... A 10 Minute VB.Net Winforms Quick Start by Mike PrestwoodThe ButtonsVB project. Create a classic "Hello, World" application using Visual Studio .Net with VB.Net syntax. Requires either the full version or VB.Net Express Edition. |
VB.Net Message Board Ask this group a question! Select a topic below or Visit VB.Net Board Now!
A classic post from our Windows Hosting topic... MS Access Web Hosting Limitations by Mike PrestwoodLimitations of using Microsoft Access as a database in a hosting environment. |
Monthly Web Design Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Website Scripting Topic. Definition of the Month: CMS Short for Content Management Sytem (CMS) and is used to manage content on a website such as web page content, knowledge base, online store, message boards, etc. A popular .Net CMS' right now is DotNetNuke. Prestwood's own ASPSuite is a customized CMS we use for our website and our clients.Short for Content Management Sytem (CMS) and is used to manage content on a website such as web page content, knowledge base, online store, message boards, etc. A popular .Net CMS' right now is DotNetNuke. Prestwood's own ASPSuite is a customized CMS we use for our website and our clients. From our Server Farm: RS Topic. Question: What is the password standard for the RS pop3 accounts? Answer: The password standard on our RS servers changed in 2007 to 6 characters with at least 1 number. | |
Web Design Message Board Ask this group a question! Select a topic below or Visit Web Design Board Now!
A classic post from our Win Users topic... Disable Unused Windows Services by Vicki NelsonOptimize your Windows performance by disabling unused Windows Services. |
Monthly Win Users Lesson | Learn! Review! Keep Up! |
| Short tidbits pulled from our knowledge base each month. | M O N T H L Y L E S S O N | From our Windows Vista Topic. Memory caching scheme introduced with Windows Vista that tracks what kind of applications you use and loads them into RAM so they can be launched faster. SuperFecth can use ReadyBoost to add to the available cache using a ReadyBoost compliant USB 2.0 flash drive. SuperFetch and ReadyBoost speed up virtual memory transactions. From our Windows Vista Topic. Error: Missing critical file ACPI.SYS (error code 0xc0000098). Explanation: If you received this after you applied Vista SP1, follow the onscreen directions. Note When applying Vista's SP1, have your bootable Vista CD available when you apply this service pack. Vista will detect if anything goes wrong, and prompt you to boot from your installation CD. If you have a new computer with the media on the drive, create a CD prior to applying SP1!!! This happened to me last night while at home and I had to wait until today to get to the office to boot from my installation CD. I received the dreaded missing ACPI.SYS file with an error code of 0xc0000098. From our Win Users Topic. Question: What is the relationship between ReadyBoost and virtual paging? Answer: All files cached to ReadyBoost are still backed up on disk in virtual memory. This is why you can disconnect a ReadyBoost device anytime you wish. ReadyBoost increases overall speed because random I/Os are faster with flash RAM than with disk. It's interesting to note that some hard drives are much faster at sequential I/O than flash RAM so ReadyBoost focuses on caching virtual memory which is random I/O intensive. Many industry experts expect flash RAM to outperform disks in the near future especially now that Microsoft has created a market for super fast flash RAM devices. | |
Win Users Message Board Ask this group a question! Select a topic below or Visit Win Users Board Now!
| Thread Starter | Replies | Last Post | Topic | | I need to create an rtf file. I need a Rich Text file for a program I'm using (CorelDraw - merge).
I'm not sure if it works to create an rtf file using ObjectPAL but that would be the easiest, otherwise I would like to know how t... | 0 | New! 9/8/2010 | ObjectPAL | | TMonthCalendar and OnGetMon... I've noticed a problem with the OnGetMonthInfo event of TMonthCalendar. (IE. MonthCalendar1GetMonthInfo(Sender: TObject; Month: Cardinal; var MonthBoldInf... | 1 | Try such a nice piece of code as Calendar.Date:=Calendar.Date+31; C... 9/4/2010 | Delphi VCL | | PrinterSetCurrent I have the following code on a form to switch printers behind the scenes. There is a table that lists the users printers and a field in that table that defines what the printer is used for (i.e.... | 0 | New! 9/2/2010 | ObjectPAL | | ReportPrintInfo DynArray Can anybody explain to me the syntax to use ReportPrintInfo - the syntax # 3 version that uses an array? I need to set the PrintToFile option to create a postscript file and it seems to only be availa... | 0 | New! 9/2/2010 | ObjectPAL | | ReportPrintInfo DynArray Can anybody explain to me the syntax to use ReportPrintInfo - the syntax # 3 version that uses an array? I need to set the PrintToFile option to create a postscript file and it seems to only be availa... | 0 | New! 9/2/2010 | ObjectPAL | | Printing forms as reports d... I have a 3 page form that I need to open as a report. When I open it, however, I only get the first page and a half. Any ideas? I have to do i... | 1 | Figured it out - has to do with the page size - ended up having to create 3 seperate reports but it ... 9/2/2010 | Paradox Reports | | Changing account records ba... Does anyone know how to write this Paradox 4.5 code into a Paradox 11 script?
This works in my old Paradox. It goes through a list of account names finds the account in another table and scans to pro... | 0 | New! 8/29/2010 | ObjectPAL | | Windows 7 Paradox 9 report ... I've successfully installed Paradox 9 on a windows 7 workstation linked to SBS 2008.However, when I went to amend a report by redefining a field, Paradox crashe... | 9 | I've tried everything suggested in previous posts. Sometimes it works and sometimes it crashes. My w... 8/24/2010 | Paradox Reports | | Server 2003 and BDE I have just thought I might move all my delphi stuff onto my 2003 server and then use remote desktop to access it however some of my apps give me a bdertl70 err... | 2 | Hi Owen,
I suspect a rights problem. The app/user needs full rights to the data folder and net dir. 8/16/2010 | Delphi Single User Apps | | Paradox 7 Update I know P7 is an ancient version but I dug the install disks out of a dusty drawer this morning and installed it in my XP machine. My question is whether I need ... | 1 | Never mind, I've applied the patch selectively. 8/11/2010 | Paradox Setup, Vista, etc. |
Editor's Final Word
Check out our enhanced store! We've added thousands of items!
 |
About our Prestwood Computer Store! In addition to offering our own products and services, we offer thousands of items including software, books, computer accessories, and accessories for your iPod, iPhone, Blackberry, Zune, etc. All at rock bottom prices. |
|
--Mike Prestwood |
Check out our store and help support this eMag and our online community! |