answersLogoWhite

0

📱

.NET Programming

.NET Programming involves the use of the .NET Framework, a software framework for Microsoft Windows operating systems. The framework supports several programming languages. The .NET library is available to all the programming languages that .NET supports.

607 Questions

How do you delete Content Protect or Net Nanny on my computer?

Haxe figured this out all by hisself

I don't know how to delete it but, i do know how to stop it until you restart your computer.

you CAN disable net nanny.

You can either press the Window Key on your keyboard (button right between CTRL and ALT)or you can press start (the bottom right button on the screen) then go to Run.

in the text box type CMD

when your command prompt opens up type net stop NNsvc and there you go you are home free

(Note: You may have to do this twice)

A faster way is you go to notepad type this exactly the way it appears

start

net stop nnsvc

start.cmd

Now save it as "name of program".bat preferably save it on your desktop

Now open up the batch file and there you go. (Please Recommend Me)

What is the difference between framework and IDE?

IDE is just the development environment while the Framework is the backbone of compiling the code.

IDE's :

  • Visual Studio
  • Jbuilder
  • jdeveloper
  • eclipse
  • netbeans
  • and so on

But Framework for .Net programmers is different than what Java programmers understand

Framework for java programmers is:

  • Spring Framework
  • Struts Framework
  • Shine Enterprise Java Pattern

Framework for .net programmers is:

  • .net Framework 1.1
  • .net Framework 2
  • .net Framework 3
  • .net Framework 3.5
  • .net Framework 4

Which part of the for loop is resposible for assigning a value to a variable?

Typically, the variable is initialized in the first clause of the for statement, and incremented in the third clause. However, the language does not require any particular type of statement in these places.

The following is a typical example:

for (int i=0; i

In this example, the variable i is initialized in the first clause, and incremented in the third.

The same effect could be realized by putting the initialization and increment in other places:

int i=0; for (/* */; i++ /* */)

but this would be more difficult to read.

What method gets a value from a class s field but does not change it?

An accessor method can be used to get a value from a class without changing the value.

What is the purpose of using dot net?

Programmers produce software by combining their source code with .NET Framework and other libraries. The framework is intended to be used by most new applications created for the Windows platform. Microsoft also produces an integrated development environment largely for .NET software called Visual Studio.

How do you print a form in Visual Studio 2008?

In the Toolbox, click the Visual Basic PowerPacks tab and then drag the PrintForm component onto the form.

The PrintForm component is added to the component tray.

In the Properties window, set the PrintAction property to PrintToPrinter.

Add the following code in the appropriate event handler (for example, in the Click event handler for a PrintButton).

How to execute Visual Studio .NET in fedora 6?

Simple it

do following steps

1. Open terminal

2.run "sudo+yum"" press enter

3.write "vis std" press enter

4.after it do restart

on booting press "f8" in countinuity

then a pic is appear

5.now open mozilla and write "yum+67%+sudo+url id="system bit"

system bit=win32 orwin 64

now u can use it

When a NET program is compiled it is converted to?

1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.

2) Deliverables must be in ready-to-run condition, as follows (depending on the nature of the deliverables):

a) For web sites or other server-side deliverables intended to only ever exist in one place in the Buyer's environment--Deliverables must be installed by the Seller in ready-to-run condition in the Buyer's environment.

b) For all others including desktop software or software the buyer intends to distribute: A software installation package that will install the software in ready-to-run condition on the platform(s) specified in this bid request.

3) All deliverables will be considered "work made for hire" under U.S. Copyright law. Buyer will receive exclusive and complete copyrights to all work purchased. (No GPL, GNU, 3rd party components, etc. unless all copyright ramifications are explained AND AGREED TO by the buyer on the site per the coder's Seller Legal Agreement).

SUNIL PATIDAR

MISCOS

BHOPAL

INDIA

Where can one find detailed information on Net Compact Framework from a reliable online source?

Microsoft is probably the best reliable online source for which to find information on a Net Compact Framework. There are tutorials available on not only downloading and installing, but also upgrading, as well.

What are the advantages and disadvantages for net framework?

most importent .net frame work and 64 language supporting in the frame work

What does .NET stands for?

my name is prabhat sharma"yoprabhat@gmail.com"

i m working with "www.yantratech.co.in"

It is a 'NET' for coding different languages in one platform.hey guy

i m giving correct answer of this question "what does .net stands for?"

. = stands for linkage with any application

N= stands for network

E= stands for Embedded

T= stands for Technology

if anyone have any doubt u can contact me at my email id

prabhat sharma

thanks

When does c plus plus use generic function implicitly?

C++ uses the generic function implicitly whenever the base class implementation (the generic method) is also the most-derived implementation.

What are the advantage of using class libraries?

Easy to organise and maintain your project. Application extensions can be reused for multiple projects. A program with a class library will run much faster than one with all the code in the main executable.

What are high and low level languages?

Low level languages expose the internals of a computer's processor and allow you to take advantage of the power of that processor. Every processor has an assembler which allows you to code directly the machine language processed by the processor. This is the lowest level language available, however, the downside is that you are stuck producing code for only one processor and it will take a long time to write any significant program.

The next higher level language will be things like C, which are compiled fairly efficiently down to the machine level. C being higher level can be written and supported by many processors out there. It takes less C code to write a significant program than assembler.

The higher the level of a language the less code that is necessary to write a significant program, however, these programs are no longer efficient in terms of the amount of machine language generated. These programs often run slower and require large amounts of code to do simple things; this is counterbalanced by the ability to get complex things done with very little code. Many higher level languages are called 4GL for 4th generation languages.

A quantitative definition of 4GL has been set by Capers Jones, as part of his work on function point analysis. Jones defines the various generations of programming languages in terms of developer productivity, measured in function points per staff-month. A 4GL is defined as a language that supports 12-20 function points per staff month. This correlates with about 16-27 lines of code per function point implemented in a 4GL.

Can you have a DFD for a Document Management System?

A Data Flow Diagram is not limited to problem analysis and by definition shows the flow of data through a system (meaning a manula procedure, software system, mechanical system, a hardware system or any combination of these. To create a DFD for any system, the major things that one has to understand are * Identify Inputs to the system * Outputs required/proposed from the system * Processes involved to get the required output with the specified inputs. * Control logic should never be a part of your DFD (no loops/no conditions)

Which property allows ASP.NET controls to maintain their values when a page is posted to itself?

The property that allows ASP.NET controls to maintain their values when a page is posted to itself is the ViewState. ViewState is a mechanism that stores the state of server-side controls between postbacks, enabling the control to preserve its values and settings. This is accomplished by serializing the control's state into a hidden field on the page, which is then sent back to the server during postback. As a result, the control can retrieve its previous values and maintain consistency in user interactions.

What does it mean to net build in manufacturing engineering terms?

In manufacturing engineering, "net build" refers to the final assembly of a product after accounting for all parts and materials that are required for its completion. It emphasizes the actual output of a manufacturing process, focusing on the net quantity of finished goods produced, excluding waste, defects, and rework. This concept is crucial for assessing efficiency, production quality, and resource utilization within manufacturing operations. By analyzing net build, organizations can identify areas for improvement and optimize their production workflows.

How do you delete the duplicate records in sqlserver?

follow these steps if your duplicate records are excatly same: suppose mytable is your table which have duplicates records select distinct * into NewTable from MyTable delete mytable insert into mytable select * from NewTable select * from MyTable drop NewTable