|
Save Text file to "My Documents" with .NET
(Saturday, September 11, 2004)
Found the following interesting discussion in the Newsgroups:
Save Text file to "My Documents" by:Ben
| Hello,
I need to save some information into a text file. For this, I use :
FileOpen(1, "c:\MyFile.txt", OpenMode.Output) For I = 0 To iCpt - 1 WriteLine(1, myDs.Tables(0).Rows(I).Item("MyText")) Next FileClose(1)
This is running...
BUT I would like to save the text file into "My Documents" of user whos run application.
--> In place of : FileOpen(1, "c:\MyFile.txt", OpenMode.Output) --> I would like : FileOpen(1,"c:\Documents and settings\[USER]\My Documents", OpenMode.Output)
How know ?
Thanks
Ben
| | | Reply: by:Klaus Löffelmann
| | | Ben,
try
Environment.GetFolderPath(Environment.SpecialFolder.Personal)
to get that path.
Klaus
| | | Reply: by:Armin Zingler
| | |
dim Dirname, fullname as string
Dirname = Environment.GetFolderPath( _ Environment.SpecialFolder.Personal _ )
fullname = io.path.combine(dirname, "myfile.txt")
-- Armin
| | | Reply: by:Ben
| | | THANKS !!!
It's running...
| | | Reply: by:Cor Ligthert
| | | Hi Ben
dim Myfolder as string = Environment.GetFolderPath(Environment.SpecialFolder.Personal)
I hope this helps?
Cor
|
Posted by Xander Zelders

Copyright Symbol
Found the following interesting discussion in the Newsgroups:
Copyright Symbol by:Radith Silva
| First of all thanx for the help with my last q.
Just wondering, how would you insert the copyright symbol into your projects.
Thankx in advance
Radith Silva radith@xtra.co.nz
| | | Reply: by:Frank Rizzo
| | | projects.
You mean ©? Usually, you can hold down the Alt key and press 169 on the number pad. Otherwise, I'd run the CharMap application and get it from there.
| | | Reply: by:Cor Ligthert
| | | Hi Radith,
Difficult to say,
However you can start here, I could not find the table either direct
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/intl/unicode_6bqr.asp
When you want to use extended ASCII you can do it with try on error and start with typing Alt 129 untill alt 255 and so on to see if it is in your extended ascii table.(code page) Or find the code page you are using
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/intl/unicode_81rn.asp
In the code page 437 it is 169 as Frank stated.
I hope this helps
Cor
| | | Reply: by:hirf-spam-me-here@gmx.at (Herfried K. Wagner [MVP])
| | | Where exactly do you want to insert it?
-- Herfried K. Wagner [MVP] <URL:http://dotnet.mvps.org/>
|
Posted by Xander Zelders

Running a program from CD
Found the following interesting discussion in the Newsgroups:
Running a program from CD by:Brad Allison
| Okay, easy question for this newsgroup, but difficult for me being new.
I have an application in where the user can either install the program to their machine or they can run this from the CD. However, in testing the program where PCs without the .NET Framework installed, there of course is an error message. How and where would I write a file to check for the .NET framework and if it is not present, then install dotnetfx (which I have provided on the CD)?
Thanks for the information.
| | | Reply: by:Anonymous
| | | I am not sure whether our tool would interest you, salamander linker and mini-deployment tool, which can generate a package that contains your own application and a very small subset of the CLR runtime files. You can copy the generated directory to a CD, and your app will launch w/o .NET installation on the target machine. More info can be found here: http://www.remotesoft.com/linker/
A trial version will be posted soon,
Huihong
|
Posted by Xander Zelders

Hash table and .NET
Found the following interesting discussion in the Newsgroups:
hash table question by:WStoreyII
| does a hash table hold its value when the program is closed?
WStoreyII
| | | Reply: by:Mike McIntyre [MVP]
| | | No. -- Mike McIntyre Visual Basic MVP www.getdotnetcode.com
| | | Reply: by:Armin Zingler
| | | It even holds it's values when the machine has been shut down.
SCNR -- Armin
| | | Reply: by:Cor Ligthert
| | | Hi WS
When a program is closed all things from that program are destroyed that are not saved.
Even more, when you are busy and there is no reference anymore to something, it will be normaly destroyed by the Garbage Collector.
Sub y dim a as integer = 1 end sub
Is creating an integer with the value 1 from which will be told that it can be deleted as soon as it is created. (To hold this you can use the keyword "static", however that can be very confusing when used)
I hope this helps?
Cor
|
Posted by Xander Zelders

Update to DataTable having Calculated Row
Found the following interesting discussion in the Newsgroups:
Update to DataTable having Calculated Row by:manish.chaturvedi@hmshost.com (Manish)
| Hello Everyone I am having weird problem in my datagrid bounded to datatable. My datatable is populated from SQLServer database. DataGrid has Calculated column Week% and Calculated record, SPLH. An example of datagrid is
Category Amount Week% Revenue 200 Cost 60 30 Hours 100 SPLH 2 Payroll 100 Benefit 30 30 Controllable 10 5
Record for category - Revenue, Cost, Hours, Payroll and Benefit is extracted from database in SQL Server. These records are extracted into a DataTable, which is binded to DataGrid. Also i have attached Column Changing event to DataGrid on Column Week%. Benefit is based on Payroll and Controllable/Cost is based on Revenue. SPLH is calculated record based on Revenue/Hours and is inserted above payroll. In column changing event, if i change Week% for category, then amount is calculated as multiplying week% by category amount, on which they are based. Therefore if we update week% for Cost/Controllable, then Cost/Controllable amount changes by week% of Revenue and same is for Benefit, which is based on Payroll. Now if i change Cost/Controllable, then Amount and Week% gets updated based on Revenue, which is above SPLH. For example if i update Cost week% to 40, then DataGrid looks like- Category Amount Week% Revenue 200 Cost 80 40 Hours 100 SPLH 2 Payroll 100 Benefit 30 30 Controllable 10 5
But if i update Week% for Benefit to 50%, then amount gets updated for benefit, which is based on payroll but week% is preserved. Also it inserts new record for Benefit above SPLH with new value for Amount and Week%. Category Amount Week% Revenue 200 Cost 80 40 Hours 100 Benefit 50 50 SPLH 2 Payroll 100 Benefit 50 30 Controllable 10 5
Also if i had Payroll above SPLH originally, something like Category Amount Week% Revenue 200 Cost 60 30 Hours 100 Payroll 100 SPLH 2 Benefit 30 30 Controllable 10 5
Then changing Week% for Benefit will result in, Category Amount Week% Revenue 200 Cost 60 30 Hours 100 Payroll 100 SPLH 2 Benefit 50 50 Controllable 10 5
I think for some reason, if a record is updated based on data above calculated row, it works fine but if it is being updated based on record after calculated record, it creates additional record above first calculated record. Can anyone explain why so?
Thanks, Manish
| | | Reply: by:Cor Ligthert
| | | Hi Manish,
I saw this question before in this newsgroup. Normaly this means that nobody can help you.
I think in this case that the question is to complex for a newsgroup.
However a new row will be normaly created by a: datatable.rows.add(...) datatable.rows.insertat() currencymanager.addnew
You can have a look of one of those is in your program
I hope this helps? Cor
|
Posted by Xander Zelders

Graphics and resizing in .NET
Found the following interesting discussion in the Newsgroups:
Graphics and resize problem by:Christian Soltenborn
| Hi guys,
I have a question to VB .NET: I add a Graphics object to a panel and use a bunch of DrawLine methods etc (it's really nice and convenient).
But: As soon as I send my form (which contains the panel) to the task bar and get it back, the graphics are gone. I guess that I need to add an event handler to the pane (or the form?), but which event do I have to handle? And which method do I call on the panel to get it repainted? Panel.Invalidate? I have the same problem if I resize the form containing the panel - If I make it smaller such that some of the graphics disappear, they are gone if I make it bigger again.
One more question: I would like my panel to resize itself if the form whicht contains it gets resized (e.g. maximized). How can I do this? I'm actually not sure if this is related to the problem above (maybe the panel grows, but my graphics just don't get repainted :-)
Sorry if those questions are stupid, but I'm new to VB .NET and to UI programming...
Thankx in advance, Christian
| | | Reply: by:Ken Tucker [MVP]
| | | Hi,
If you want the panel to redraw the graphics draw your lines in the paint event. To get your control to resize itself look at the panels anchor property.
Ken
| | | Reply: by:Arcer P
| | | Draw graphics in a bitmap and display that bitmap
|
Posted by Xander Zelders

Ivor Horton's Beginning Visual C++.Net
(Friday, September 10, 2004)
Ivor Horton's Beginning Visual C++.Net by Horton
Paperback: 1200 pages Publisher: Titles Supplied by John Wiley & Sons Australia; (February 10, 2005) ASIN: 0764571974
Posted by Xander Zelders

Free Choice Petri Nets (Cambridge Tracts in Theoretical Computer Science)
Free Choice Petri Nets (Cambridge Tracts in Theoretical Computer Science) by Jorg Desel, Javier Esparza, C. J. van Rijsbergen (Editor)
Hardcover: 252 pages ; Dimensions (in inches): 0.69 x 10.06 x 7.09 Publisher: Cambridge University Press; (January 12, 1995) ISBN: 0521465192
Book Description Petri nets are a popular and powerful model for analyzing and modeling concurrent systems, and a rich theory has developed around them. This book focuses on a particular class of Petri nets, free choice Petri nets, which plays a central role in the theory. The text is organized very clearly, with every notion carefully explained and every result proved. The authors give clear exposition of place invariants, siphons, traps and many other important analysis techniques. The book contains classical results of free-choice theory as well as more recent results. The material is organized along the lines of a course, and each chapter contains numerous exercises, making this text ideal for graduate students and research workers alike.
Posted by Xander Zelders

Civic Charity in a Golden Age: Orphan Care in Early Modern Amsterdam
Civic Charity in a Golden Age: Orphan Care in Early Modern Amsterdam by Anne E. C. McCants
Hardcover: 281 pages ; Dimensions (in inches): 1.12 x 9.34 x 6.18 Publisher: University of Illinois Press; (September 1, 1997) ISBN: 0252023331
Posted by Xander Zelders

Applied .NET: Developing People-Oriented Software Using C#
Applied .NET: Developing People-Oriented Software Using C# by Ronan Sorensen, George Shepherd, John Roberts, Russ Williams
Paperback: 416 pages ; Dimensions (in inches): 9.00 x 1.25 x 7.25 Publisher: Addison-Wesley Pub Co; 1st edition (October 18, 2001) ISBN: 0201738287
Posted by Xander Zelders

Développer des services Web XML et des composants Server avec Visual Basic NET & Visual C Sharp
Développer des services Web XML et des composants Server avec Visual Basic NET & Visual C Sharp by Microsoft Corporation
Paperback Publisher: Microsoft Press; (May 23, 2003) ISBN: 2100079468
Posted by Xander Zelders

Net Gain
Net Gain by C. Lengeler, J. Cattani (Editor), D. De Savigny (Editor)
Paperback: 260 pages Publisher: IDRC (International Development Research Cent; (December 1, 1996) ISBN: 0889367922
Posted by Xander Zelders

Développer des applications Windows avec Visual basic .NET & Visual C Sharp : Kit de formation, Examen MCAD/MCSD 70-306 et 70-316
Développer des applications Windows avec Visual basic .NET & Visual C Sharp : Kit de formation, Examen MCAD/MCSD 70-306 et 70-316 by Microsoft corporation
Paperback Publisher: Microsoft Press; (January 13, 2003) ISBN: 2100069500 by Microsoft corporation
Posted by Xander Zelders

Nonsequential Processes: A Petri Net View (E a T C S Monographs on Theoretical Computer Science)
Nonsequential Processes: A Petri Net View (E a T C S Monographs on Theoretical Computer Science) by Eike Best, Cesar Fernandez C.
Hardcover: 112 pages ; Dimensions (in inches): 0.46 x 9.76 x 6.74 Publisher: Springer-Verlag; (May 1, 1988) ISBN: 0387190309
Book Description The theory of the processes of concurrent systems is studied using partially ordered sets. The study is based on Petri net theory. General properties of posets and their relations with properties of concurrent systems are examined.
Posted by Xander Zelders

Artificial Neural Nets and Genetic Algorithms
Artificial Neural Nets and Genetic Algorithms by Vera Kurkova, Nigel C. Steele, Roman Neruda, Miroslav Karny, R. Neruda, T. Driemeyer
Paperback: 530 pages ; Dimensions (in inches): 10.50 x 0.75 x 8.00 Publisher: Springer-Verlag Telos; 2nd edition (July 15, 2001) ISBN: 3211836519
Book Info Proceedings of the Intl Conference in Prague, 2001. Papers represent the theoretical insights and reports of successful applications of artificial neural networks and genetic algorithms. For researchers at the university and industry, advanced students. Softcover.
Posted by Xander Zelders

Artificial Neural Nets and Genetic Algorithms: Proceedings of the International Conference in Ales, France, 1995
Artificial Neural Nets and Genetic Algorithms: Proceedings of the International Conference in Ales, France, 1995 by D. W. Pearson, N.C. Steele, D.W. Pearson, N. C. Steele, R. F. Albrecht
Paperback: 528 pages ; Dimensions (in inches): 11.25 x 1.00 x 8.50 Publisher: Springer-Verlag Telos; (July 1, 1995) ASIN: 3211826920
Posted by Xander Zelders

The Adventures of Roopster Roux: Surfing the Net (Adventures of Roopster Roux)
The Adventures of Roopster Roux: Surfing the Net (Adventures of Roopster Roux) by Lavaille Lavette, A. C. Green
Audio Cassette: ; Dimensions (in inches): 4.50 x 0.75 x 2.75 Publisher: Pelican Publishing Company; (July 1, 1998) ISBN: 1565544021
Posted by Xander Zelders

La Sorcière C@momille surfe sur le net
La Sorcière C@momille surfe sur le net by Roser Capdevila
Board book Publisher: Sorbier; (October 10, 2001) ISBN: 2732036277
Posted by Xander Zelders

Intelligent Control: Aspects of Fuzzy Logic and Neural Nets (World Scientific Series in Robotics and Automated Systems, Vol 6)
Intelligent Control: Aspects of Fuzzy Logic and Neural Nets (World Scientific Series in Robotics and Automated Systems, Vol 6) by C. J. Harris, C.G. Moore, M. Brown, C.J. Harris, C. G. Moore
Hardcover: 380 pages ; Dimensions (in inches): 8.75 x 1.00 x 6.25 Publisher: World Scientific Publishing Company; (August 1, 1993) ISBN: 9810210426
Posted by Xander Zelders

The Future of the Safety Net: Social Insurance and Employee Benefits (Industrial Relations Research Association Series)
The Future of the Safety Net: Social Insurance and Employee Benefits (Industrial Relations Research Association Series) by Sheldon Friedman, David Jacobs, David C. Jacobs
Paperback: 350 pages ; Dimensions (in inches): 0.41 x 8.44 x 5.56 Publisher: Industrial Relations Research Association; 1st ed edition (November 1, 2001) ISBN: 0913447811
Posted by Xander Zelders

Net worth: The memories of C. E. Pickering
Net worth: The memories of C. E. Pickering by Dean Walker
Unknown Binding: 171 pages Publisher: Yorkminster Pub; (1973) ASIN: 0919692001
Posted by Xander Zelders

Développer des applications Web avec Visual Basic .NET & Visual C Sharp : Kit de formation, Examen MCAD/MCSD 70-305 et 70-315
Développer des applications Web avec Visual Basic .NET & Visual C Sharp : Kit de formation, Examen MCAD/MCSD 70-305 et 70-315 by Microsoft corporation
Paperback Publisher: Microsoft Press; (January 2, 2003) ISBN: 2100069497
Posted by Xander Zelders

Visual C Sharp .NET : Manuel de référence
Visual C Sharp .NET : Manuel de référence by Williams
Paperback Publisher: Dunod; (September 30, 2002) ISBN: 2100066595
Posted by Xander Zelders

How to Build Your Net Worth; Buying Residential Real Estate with None of Your Own Money- Guide Volume 2
How to Build Your Net Worth; Buying Residential Real Estate with None of Your Own Money- Guide Volume 2 by C. Mark Leaphart, J. Kirk Leaphart
Mass Market Paperback: 178 pages ; Dimensions (in inches): 0.45 x 10.71 x 7.91 Publisher: Partners Publishers Group; (November 15, 1994) ISBN: 1890646040
From the Publisher The information is easy to understand and is written for anyone, even if they lack any real estate experience. This course is a "Diamond In The Ruff"
From the Author If one has the desire and a direction, there is no limit. We supply the direction!
Book Description This continues explaining locating, buying, managing, renovating, financing, renting, selling, and more. Also includes simple chapter summaries for quick review.
Posted by Xander Zelders

C # et .NET
C # et .NET by Gérard Leblanc
Paperback Publisher: Eyrolles; (May 5, 2002) ISBN: 2212110669
Posted by Xander Zelders

Maintaining the Safety Net: Income Redistribution Programs in the Reagan Administration (Studies in Economic Policy) (Aei Studies ; 401)
Maintaining the Safety Net: Income Redistribution Programs in the Reagan Administration (Studies in Economic Policy) (Aei Studies ; 401) by John C. Weicher
Textbook Binding Publisher: Rowman & Littlefield (Non NBN); (June 1984) ASIN: 0844735582
Posted by Xander Zelders

Neural Nets: Applications in Geography (The Geojournal Library, Vol 29)
Neural Nets: Applications in Geography (The Geojournal Library, Vol 29) by Bruce C. Hewitson, Robert G. Crane
Hardcover: 194 pages ; Dimensions (in inches): 10.00 x 0.75 x 6.75 Publisher: Kluwer Academic Publishers; (May 1, 1994) ISBN: 0792327462
Book Description Neural nets offer a fascinating new strategy for spatial analysis, and their application holds enormous potential for the geographic sciences. However, the number of studies that have utilized these techniques is limited. This lack of interest can be attributed, in part, to lack of exposure, to the use of extensive and often confusing jargon, and to the misapprehension that, without an underlying statistical model, the explanatory power of the neural net is very low. Neural Nets: Applications for Geography attacks all three issues; the text demonstrates a wide variety of neural net applications in geography in a simple manner, with minimal jargon. The volume presents an introduction to neural nets that describes some of the basic concepts, as well as providing a more mathematical treatise for those wishing further details on neural net architecture. The bulk of the text, however, is devoted to descriptions of neural net applications in such broad-ranging fields as census analysis, predicting the spread of AIDS, describing synoptic controls on mountain snowfall, examining the relationships between atmospheric circulation and tropical rainfall, and the remote sensing of polar cloud and sea ice characteristics. The text illustrates neural nets employed in modes analogous to multiple regression analysis, cluster analysis, and maximum likelihood classification. Not only are the neural nets shown to be equal or superior to these more conventional methods, particularly where the relationships have a strong nonlinear component, but they are also shown to contain significant explanatory power. Several chapters demonstrate that the nets themselves can be decomposed to illuminate causative linkages between different events in both the physical and human environments.
Posted by Xander Zelders

Intelligent Task Planning Using Fuzzy Petri Nets (Series in Intelligent Control and Intelligent Automation, Vol 3)
Intelligent Task Planning Using Fuzzy Petri Nets (Series in Intelligent Control and Intelligent Automation, Vol 3) by Tiehua Cao, Arthur C. Sanderson
Hardcover: 192 pages ; Dimensions (in inches): 9.00 x 0.75 x 6.50 Publisher: World Scientific Pub Co Inc; (December 1, 1996) ISBN: 9810225563
Book Description This book describes an approach to intelligent task planning in a robotic system. Petri net and fuzzy logic are integrated and used to represent task sequence planning and error recovery. During the generation and execution of task plans, different kinds of uncertainties need to be handled to ensure the efficiency and reliability of the system. Following a systematic modeling procedure, a fuzzy Petri net is constructed based on geometric relations, fuzzy variables, and reasoning structures. The resulting net can be used to analyze and control the system. Many examples are discussed to illustrate the theory and the applications of fuzzy Petri nets.
Posted by Xander Zelders

Taxation of Net Wealth, Capital Transfers and Capital Gains of Individuals
Taxation of Net Wealth, Capital Transfers and Capital Gains of Individuals by C. T. Sandford
Paperback: 279 pages Publisher: Organization for Economic Cooperation & Devel; (June 1, 1988) ASIN: 926413073X
Posted by Xander Zelders

New Jersey Nets (NBA Today (Mankato, Minn.).)
New Jersey Nets (NBA Today (Mankato, Minn.).) by Jack C. Harris
Library Binding: 32 pages ; Dimensions (in inches): 0.35 x 9.83 x 7.56 Publisher: Child's World Inc; (June 1, 1997) ISBN: 0886828821
Posted by Xander Zelders

Taxation of Net Wealth, Capital Transfers and Capital Gains of Individuals
Taxation of Net Wealth, Capital Transfers and Capital Gains of Individuals by C. T. Sandford
Paperback: 279 pages Publisher: Organization for Economic Cooperation & Devel; (June 1, 1988) ASIN: 926413073X
Posted by Xander Zelders

Visual C++.NET: Your Visual Blueprint for Programming on the .NET Platform (With CD-ROM)
Visual C++.NET: Your Visual Blueprint for Programming on the .NET Platform (With CD-ROM) by Jeff Cogswell
Paperback: 336 pages ; Dimensions (in inches): 1.10 x 9.58 x 7.86 Publisher: Visual; Bk&CD-Rom edition (December 15, 2001) ISBN: 0764536443
Book Info You will find complete coverage of C++, including basics, strings, structures, converting data types, classes, debugging, event handling, and the .NET conversion. CD-ROM loaded with all the code examples. Softcover.
Back Cover Copy Welcome to the only guidebook series that takes a visual approach to professional-level computer topics. Open the book and you’ll discover step-by-step screen shots that demonstrate over 135 key C++ .NET tasks, including:
-Creating a local variable -Initializing a structure -Adding a nested class -Adding a timer -Comparing strings -Creating a debugging executable -Displaying a custom dialog box -Converting data with C-style casts -Responding to menu commands -Using
Posted by Xander Zelders

.NET Concurrency Design Patterns: Programming in C#
.NET Concurrency Design Patterns: Programming in C# by William Stamatakis
Paperback: 352 pages Publisher: Addison-Wesley Pub Co; 1st edition (March 23, 2004) ISBN: 032116606X
Posted by Xander Zelders

.NET Developer's Kit Including ASP, C#, and Visual Basic
.NET Developer's Kit Including ASP, C#, and Visual Basic by Cameron Wakefield, Robert Patton
Paperback: 1800 pages ; Dimensions (in inches): 5.38 x 7.73 x 9.67 Publisher: Syngress; 1 edition (December 15, 2001) ISBN: 192899461X
Book Info Teaches Web developers expert in ASP and other languages how to efficiently devise solutions for the Microsoft .NET platform. Offers a significantly changed environment, language, and skill set than previous versions of Visual Basic 6.0. Softcover.
Book Description ASP.NET Web Developer’s Guide (ISBN 1-928994-51-2) teaches Web developers expert in ASP and other languages how to efficiently devise solutions for the Microsoft .NET platform. C#.NET Web Developer’s Guide C# (ISBN 1-928994-50-4) shows Web developers how to quickly and easily build solutions for the Microsoft .NET platform. Web developers learn to use C# components to build Web services and applications that are available across the Internet — from any application running on any platform. VB.NET Developer’s Guide (ISBN 1-928994-48-2) is written for Visual Basic programmers looking to harness the power of the new features and functionality of Visual Basic.NET. VB.NET offers a significantly changed environment, language, and skill set than previous versions of Visual Basic 6.0.
Posted by Xander Zelders

Nets, Terms and Formulas : Three Views of Concurrent Processes and their Relationship (Cambridge Tracts in Theoretical Computer Science)
Nets, Terms and Formulas : Three Views of Concurrent Processes and their Relationship (Cambridge Tracts in Theoretical Computer Science) by E. R. Olderog, C. J. van Rijsbergen (Editor)
Hardcover: 277 pages ; Dimensions (in inches): 10.00 x 0.75 x 7.00 Publisher: Cambridge University Press; (October 3, 1991) ISBN: 0521400449
Book Description The author presents a theory whereby nets, terms and formulas represent concurrent process at three levels of abstractions: Petri nets are used to describe all details of the operational machine behavior of processes. Algebraic process terms such as Calculus of Communicating Systems (CCS) or Communicating Sequential Processes (CSP) two of the main models for parallel programming, are used to describe the architecture of processes, i.e. how they can be composed from subprocesses. Logical formulas of a first-order trace logic are used to describe the safety and liveness aspects of the communication behavior of processes as required by their users. The main emphasis and technical contribution of this theory are transformations for a top-down design of concurrent processes starting with formulas and proceeding through terms to nets.
Posted by Xander Zelders

An Occupational Information System for the 21st Century: The Development of O Net
An Occupational Information System for the 21st Century: The Development of O Net by Norman G. Peterson, Michael D. Mumford, Walter C. Borman, P. Richard Jeanneret, Edwin A. Fleishman
Synopsis "The Dictionary of Occupational Titles" has been relied on for workforce development since its inception during the Great Depression. But as global competition and technological change created a new world of work, the Department of Labour realized that a more flexible and precise system was needed. Thus, the O*NET system, or the Occupational Information Network, was launched. Written by the developers of the O*NET system, this edited volume describes the research and methodology used in the development and validation of this ground-breaking system. The O*NET is intended to provide a framework for describing jobs capable of addressing the needs of workers and employers into the 21st century. Instead of relying on rigid task descriptions, the O*NET uses domains of worker and occupational characteristics - such as abilities, work styles, and organizational context - to describe each job. This volume details each of the main domains used by the O*NET. It outlines how each was quantified and provides statistical analyses on its development and validation. The volume also places the O*NET system in its historical context and describes how this innovative new system can support the creation of jobs tailored for the new economy. This volume should be of interest to industrial/organizational psychologists, human factors specialists, counselling psychologists, vocational counsellors, rehabilitation counsellors, occupational analysts and labour market analysts.
Book Info Describes a two-year effort to develop a comprehensive occupational information system, suitable for many purposes, that would primarily reside in electronic media. Product is a prototype of the national occupational information system intended to replace the Dictionary of Occupational Titles, c1991, and its supporting technology. For researchers and practitioners. Softcover. Paperback: 336 pages ; Dimensions (in inches): 0.74 x 10.98 x 8.46 Publisher: American Psychological Association (APA); 1st ed edition (February 1, 1999) ISBN: 1557985561
Posted by Xander Zelders

net.people: The Personalities and Passions Behind the Web Sites
(Thursday, September 09, 2004)
net.people: The Personalities and Passions Behind the Web Sites by Thomas E. Bleier, Eric C. Steinert
Paperback: 317 pages ; Dimensions (in inches): 0.70 x 9.95 x 7.97 Publisher: Cyberage Books; (May 2000) ISBN: 0910965374
Posted by Xander Zelders

Beginning ASP.NET 1.1 with Visual C NET 2003 [DOWNLOAD: ADOBE READER]
Beginning ASP.NET 1.1 with Visual C NET 2003 [DOWNLOAD: ADOBE READER] by Chris Ullman, John Kauffman, Chris Hart
Format: Adobe Reader File Size: 24281K Printable: Most publishers do not allow Adobe e-books to be printed. Mac OS Compatible: This title requires Adobe Reader 6.x, which requires Mac OS 10.2 and above. Windows Compatible: Yes Handheld Compatible: Adobe Reader supports transfer of e-books to PalmOS devices, but not to Pocket PC or Symbian devices. Publisher: Wrox; ISBN: B0001VQETE; (March 2004)
Book Info Text shows how to build custom ASP.NET Web sites from the ground up. Features new examples, and all code is written and tested for ASP.NET version 1.1. Discusses key differences between ASP.NET 1.0 and 1.1, and how to move from 1.0 to 1.1. Softcover. --This text refers to the Paperback edition.
From the Back Cover This book teaches you how to build custom ASP.NET Web sites from the ground up. An expert team of authors uses their extensive ASP.NET programming experience to give you hands-on instruction in the best way to create Web sites with ASP.NET and C#. This completely updated edition features new examples, and all code is written and tested for ASP.NET version 1.1. What you will learn from this book
Fast ASP.NET site construction using Microsoft’s new, free Web Matrix tool How to install ... read more --This text refers to the Paperback edition.
Book Description * Readers will learn how to build dynamic personalized Web sites from the ground up using Microsoft ASP.NET 1.1 * ASP.NET supports twenty-five languages, and C# is the second most popular, trailing only VB .NET * The expert author team makes no assumptions about readers' previous programming experience, and they've decreased coverage of object-oriented programming to make the book even more accessible for absolute beginners * All code has been rechecked and verified to work correctly with ASP.NET version 1.1 * Anyone with even a slight knowledge of HTML and Web page creation can pick up this book and soon be creating dynamic sites with ASP.NET --This text refers to the Paperback edition.
Posted by Xander Zelders

Asian America.Net: Ethnicity, Nationalism, and Cyberculture
Asian America.Net: Ethnicity, Nationalism, and Cyberculture by Rachel C. Lee, Sau-Ling Cynthia Wong
Paperback: 368 pages ; Dimensions (in inches): 0.89 x 8.84 x 7.12 Publisher: Routledge; 1 edition (May 2003) ISBN: 0415965608
Synopsis Asian America.Net demonstrates how Asian Americans have both defined and been defined by electronic technology. From 'model minority' stereotypes in the software industry to the "techno-orientalism" of computer games, these associations weigh heavily on contemporary discourses of race, ethnicity, gender, and technology. The thirteen essays gathered here critically examine the intersections of these discourses in mainstream media including novels and film, in alternative currents such as chat... read more
Book Description Asian America.Net demonstrates how Asian Americans have both defined and been defined by electronic technology. From "model minority" stereotypes in the software industry to the "techno-orientalism" of computer games, these associations weigh heavily on contemporary discourses of race, ethnicity, gender, and technology. The thirteen essays gathered here critically examine the intersections of these discourses in mainstream media including novels and film, in alternative currents such as chat rooms and comic books, and in "real life." A landmark contribution to the study of cyberculture, Asian America.Net illuminates the complex networks of identity, community, and history in the digital age.
Posted by Xander Zelders

C# and the .Net Framework: The C++ Perspective
C# and the .Net Framework: The C++ Perspective by Robert W. Powell, Richard L. Weeks
Paperback: 500 pages ; Dimensions (in inches): 1.45 x 9.06 x 7.40 Publisher: Sams; 1st edition (October 15, 2001) ISBN: 067232153X
From the Back Cover This book covers topics ranging from the general principles of .NET through the C# language and how its used in ASP.NET and Windows Forms. Written by programmers for programmers, the content of the book is intended to get readers over the hump of the .NET learning curve and provide solid practical knowledge that will make developers productive from day one.
Book Description This book covers topics ranging from the general principles of .NET through the C# language and how its used in ASP.NET and Windows Forms. Written by programmers for programmers, the content of the book is intended to get readers over the hump of the .NET learning curve and provide solid practical knowledge that will make developers productive from day one.
Posted by Xander Zelders

ASP.NET 1.0 Namespace Reference with C#
ASP.NET 1.0 Namespace Reference with C# by Amit Kalani, Dave Gerding, Matt Milner, Bruce Lee, Matt Gibbs, Jason Bell, John Schenken, Andy Elmhorst, Mike Clark, Alex Homer, Alex Lehmberg
Paperback: 880 pages ; Dimensions (in inches): 2.04 x 9.02 x 7.36 Publisher: Wrox Press; 1st edition (July 2002) ASIN: 1861007442
Book Info This reference is tailored for the C# programmer. A pure ASP.NET reference for experienced ASP.NET. Softcover.
From the Publisher This book is not meant as a tutorial to ASP.NET, and is not recommended for people who are fresh to .NET. We are assuming you are already aware of how to program with ASP.NET, but need a more complete reference to the relevant namespaces than is provided in the documentation. This book is a major reworking of the original title ASP.NET Programmer's Reference. It is not recommended that you buy this title if you have the original.
The code and syntax examples in the book are all in C#.
Book Description This book is a complete reference to the ASP.NET namespaces for developers who are already familiar with using ASP.NET. There is no trivial introductory material or useless .NET hype - we get stuck into the .NET Framework and don't look back. We provide in-depth coverage of all the major ASP.NET classes in a pure reference format, giving you those real-world tips that the documentation doesn't offer, and demonstrating complex techniques with simple examples.
Each chapter covers another of the ASP.NET namespaces, from System.Web right through to System.Web.Services.Protocols, with coverage of individual classes, methods, and properties presented in easy-to-use alphabetical order. For anyone who is serious about getting the most out of the ASP.NET classes, this book is a must.
Posted by Xander Zelders

C# Developer's Headstart
C# Developer's Headstart by Mark Michaelis, Philip Spokas
Paperback: 226 pages ; Dimensions (in inches): 0.69 x 9.10 x 7.40 Publisher: McGraw-Hill Companies; (June 2001) ISBN: 0072191163
Posted by Xander Zelders

| |