mywebblog79

Stories submitted by mywebblog79

Windows Installer Useful Advice(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

VBScript Custom Actions are Not Windows Script Host It's a common assumption that VBScript CAs can use WSH constructs based on the WScript object model. But you cannot use script code such as WScript.CreateObject or WScript.Quit or WScript.Echo. The WSH environment provides the WScript object model, just as VBScript in a Web page uses an IE object model. Windows Installer scripting supplies objects such as the Session object for interacting with the install. You don't need WScript.CreateObject anyway—VBScript has a CreateObject method that does the same thing. read more...

add a comment |category: |Views: 1

tags: another

Understanding Windows Server Core(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

Windows server core is a “minimal” installation option for Windows Server 2008. What this means is that when you choose this option during setup (or when using unattended setup), Windows Server 2008 installs a minimum set of components on your machine that will allow you to run certain (but not all) server roles. In other words, selecting the Windows server core installation option installs only a subset of the binaries that are installed when you choose the full installation option for Windows Server 2008. read more...

add a comment |category: |Views: 4

tags: another

Visual Studio 2008 Task List Productivity Aids(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

The Task List is essentially an integrated to-do list; it captures all the items that, for one reason or another, need attention and tracking. The Task List window then surfaces this list and allows you to interact with it. To show the window, select the View menu and choose the Task List entry illustrates the Task List window displaying a series of user tasks. read more...

add a comment |category: |Views: 114

tags: another

Sharing Information Using OLE in Windows Vista(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

Object Linking and Embedding is far more flexible and can be far more complicated than cut-and-paste or drag-and-drop. OLE enables you to use all your software applications to create an integrated document. For instance, you might want to create an annual report that includes these components: read more...

add a comment |category: |Views: 4

tags: another

Windows Vista Web Browser Security(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

The web browser, an attacker can also get into your computer by using an exploit in a web browser by tricking you into installing a web component that has malicious code inside. Internet Explorer has many security settings built in that will help you keep safe. read more...

add a comment |category: |Views: 12

tags: another

Differences Between C# and C++(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

C# is a strongly typed object-oriented language whose code visually resembles C++ (and Java). This decision by the C# language designers allows C++ developers to easily leverage their knowledge to quickly become productive in C#. read more...

add a comment |category: |Views: 18

tags: another

Single-File and Multifile .Net Assemblies(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

In a great number of cases, there is a simple one-to-one correspondence between a .NET assembly and the binary file (*.dll or *.exe). Thus, if you are building a .NET *.dll, it is safe to consider that the binary and the assembly are one and the same. Likewise, if you are building an executable desktop application, the *.exe can simply be referred to as the assembly itself. However, this is not completely accurate. Technically speaking, if an assembly is composed of a single *.dll or *.exe module, you have a single-file assembly. read more...

add a comment |category: |Views: 6

tags: another

Publishing a Windows Vista Calendar on the Network(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

Windows Calendar, a decent little program for managing your schedule. You can create appointments (both one-time and recurring), set up all-day events, schedule tasks, apply reminders to appointments and tasks, and view appointments by day, week, or month. This all works great for individuals, but a busy family needs to coordinate multiple schedules. read more...

add a comment |category: |Views: 8

tags: another

What’s Inside an .Net Assembly?(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

An assembly’s EXE or DLL file is a standard “Portable Execution” (PE) file, the same file format used for non-.NET executables and code libraries (pretty much any Windows EXE or DLL file). read more...

add a comment |category: |Views: 6

tags: another

Visual Basic 2008 Core Elements - Boxing(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

Normally, when a conversion (implicit or explicit) occurs, the original value is read from its current memory location, and then the new value is assigned. For example, to convert a Short to a Long, the system reads the two bytes of Short data and writes them to the appropriate bytes for the Long variable. However, under Visual Basic, if a value type needs to be managed as an object, then the system performs an intermediate step. This intermediate step involves taking the value on the stack and copying it to the heap, a process referred to as boxing. As noted earlier, the Object class is implemented as a reference type, so the system needs to convert value types into reference types for them to be objects. This doesn’t cause any problems or require any special programming, because boxing isn’t something you declare or directly control, but it does affect performance. read more...

add a comment |category: |Views: 11

tags: another

IPv6 Terminology(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

IPv6 common terms and concepts are defined as follows: • Node Any device that runs an implementation of IPv6. This includes routers and hosts. • Router A node that can forward IPv6 packets not explicitly addressed to itself. On an IPv6 network, a router also typically advertises its presence and host configuration information. • Host A node that cannot forward IPv6 packets not explicitly addressed to itself (a nonrouter). A host is typically the source and a destination of IPv6 traffic, and it silently discards traffic received that is not explicitly addressed to itself. ... read more...

add a comment |category: |Views: 15

tags: another

The .NET N-Tier Pattern(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

Microsoft has been committed to n-tier development for a very long time. It was the heart of the now-deprecated Distributed interNet Architecture (DNA) introduced in 1999 read more...

add a comment |category: |Views: 108

tags: another

About Wi-Fi(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

Wireless networking is accomplished by sending a signal from one computer to another over radio waves. The most common form of wireless computing today uses the IEEE 802.11b standard. This popular standard, also called Wi-Fi or Wireless Fidelity, is now supported directly by newer laptops and PDAs, and most computer accessory manufacturers. It’s so popular that “big box” electronics chain stores carry widely used wireless hardware and networking products. read more...

add a comment |category: |Views: 2

tags: another

Introducing the Building Blocks of the .NET Platform (the CLR, CTS, an(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

Three key (and interrelated) entities that make it all possible: the CLR, CTS, and CLS. From a programmer’s point of view, .NET can be understood as a runtime environment and a comprehensive base class library. read more...

add a comment |category: |Views: 105

tags: another

Windows Server 2008 Network Load-Balancing Clusters(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

NLB in Windows Server 2008 is accomplished by a special network driver that works between the drivers for the physical network adapter and the TCP/IP stack. This driver communicates with the NLB program (called wlbs.exe, for the Windows Load Balancing Service) running at the application layer—the same layer in the OSI model as the application you are clustering. read more...

add a comment |category: |Views: 15

tags: another

Architecture of Windows Workflow Foundation(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 4 months ago

WF itself is a programming model, along with an engine and a set of tools for building workflowenabled applications. The programming model is made up of exposed APIs that other programming languages can use to interact with the workflow engine. These APIs are encapsulated within a namespace called System.Workflow. That namespace will be part of the WinFX programming model, but can also be installed as an add-on to the existing .NET Framework 2.0. read more...

add a comment |category: |Views: 10

tags: another