473,809 Members | 2,849 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is .NET to replace Win32?

I'm still new to .NET and come from a win32 background.

I'm happy w/ what I see in .NET although it is a little slower than
I'd like. It also has a nice oo design and C# is a wonderful language
to write in.

But is this designed to be like a newer/better MFC that will always
rest on top of win32 or something like it? Or will .NET take over as
THE WAY to write Windows software?

Thanks.
Nov 16 '05
16 1673
Chips that are loaded with micro code have existed for over 30 years now.
Given micro code X the chip behaves like processor X, given micro code Y it
behaves like processor Y. Micro code can be hard or soft.

Desktop processors have micro code burned into them. On top of that we have
the bios in ROM. Sofar the hard part. What's loaded into RAM is the soft
part.

Given the increase in capacity I see the layers descend into the processor
step by step. Not a problem, it just takes time.
Nov 16 '05 #11

"Joep" <St***@DeStoep. nl> wrote in message
news:41******** *************** @news.xs4all.nl ...
....
Given the increase in capacity I see the layers descend into the processor
step by step. Not a problem, it just takes time.


Processors that have IL as their native instruction set aren't gonna happen.
Processors are all about executing instructions as fast as possible, which
means keeping them simple. Compiler technology takes care of briding the
gap. There is no trend of processors working up the layers - if there was
then processors that run JVM or LISP would be common by now.
--Gareth
Nov 16 '05 #12
It's not all about imagination, have a look at the good old IBM mainframe
and its IPL and think about emulation. Moore's law has not yet come to an
end, mechanic memory clocks at 23,5 Mhz in test which is a little bit faster
than what we have commercially available today with magnetic disks (look for
Mohanty/Boston if you would like to know more about it), can you imagine?
What about graphics cards? They have been absorbing what used to be done in
software, right? So there is a trend of moving what was done in software
down to the hardware level. The debate between RISC and CISC has not yet
come to an end. What about a compiler that programs a PLA? I see no
technical reason that would prevent this - it is technically possible today,
only commercial reasons migth interfere.

Let's see what the future brings in this field, ok?


Nov 16 '05 #13
Micro-code is not the same as IL by the way, just in case.
Nov 16 '05 #14
I understand that something like WIN32/WIN64 must exist. I wasn't very
clear. What I meant was, is .NET programming going to replace Win32
programming as the dominant or preferred way to write Windows
Programs. And will Win32 programming go away?
Nov 16 '05 #15
Technically, Win32 was replaced by MFC as the way to make Windows
programmes, but too many Win32 programmers complained and MFC was dumbed
down. Personally, I have written programmes by all three methods and I
much prefer .Net, albeit that VS.Net is a highly dumbed down tool and
needs vast improvement.

Phill wrote:
I understand that something like WIN32/WIN64 must exist. I wasn't very
clear. What I meant was, is .NET programming going to replace Win32
programming as the dominant or preferred way to write Windows
Programs. And will Win32 programming go away?


Nov 16 '05 #16
> Technically, Win32 was replaced by MFC as the way to make Windows
programmes, but too many Win32 programmers complained and MFC was dumbed
down. Personally, I have written programmes by all three methods and I
much prefer .Net, albeit that VS.Net is a highly dumbed down tool and
needs vast improvement.


I'm sure Microsoft are continously working on VS .NET. Personally I haven't
used the new whidbey release yet, but my impression is that it's a "vast
improvement" compared to the current 2003 version (according to feedback
from our developers).

--
venlig hilsen / with regards
anders borum
--
Nov 16 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
6928
by: kkroculick | last post by:
Hi, I have a minor issue with DB2 UDB on Win32. I have a field containing text data (raw XML). I am trying to replace a string with another string (via "update table set field0 = replace(field0, 'sometext', 'newtext') to fix some minor application issues. DB2 returns the following error: 17:13:41 Routine "SYSFUN.REPLACE" (specific name "REPLACE2C") has returned an error SQLSTATE with diagnostic text "SYSFUN:10".
5
2361
by: Dan | last post by:
Okay...one last question. I've pretty much spent the weekend reading up on .Net, Soap, web services and enough three letter acronyms to feed the world alphabet soup. Is it a fair and mostly true statement to say that when programming Visual C++ using .Net, the .Net stuff basically replaces the Win32 API? I know you can still make a call back to win32 if need be, but the general idea I gather is that .Net is the new "platform" to sit...
7
1825
by: Ken Varn | last post by:
I am working in managed C++. I have a Mutex object in which I need to replace the Handle property with a new handle. The new handle is being constructed using Win32 CreateMutex call. I need to call the Win32 version in order to set the security descriptor for the mutex, which is not natively supported in .NET Framework 1.1. I always get a little nervous about resource leaks when trying to bridge Win32 with .NET, so I want to make sure...
8
4773
by: Tony Johansson | last post by:
Hello! I just wonder what the difference is between a native win32-app and MFC. What I know is that you can use Win32 API in both cases. I think an MFC application is connected with a GUI which a win32 is not. You may correct me if I'm wrong on this point. //Tony
2
3331
by: John Nagle | last post by:
I'm trying to clean up a bad ASCII string, one read from a web page that is supposedly in the ASCII character set but has some characters above 127. And I get this: File "D:\projects\sitetruth\InfoSitePage.py", line 285, in httpfetch sitetext = sitetext.encode('ascii','replace') # force to clean ASCII UnicodeDecodeError: 'ascii' codec can't decode byte 0x92 in position 29151: ordinal not in range(128)
0
2443
by: jbenezech | last post by:
Hi all , I have a perl/java app running under Win32. The application consists of a perl service (Win32::Daemon) and of java classes. The perl service calls every xx hours java classes to perform some action. The java call looks like this: Win32::SetChildShowWindow(0); Win32::Process::Create(
3
4106
by: somuchh8 | last post by:
Hi, I'm having a lot of trouble with the Win32::Spawn module in perl. Here is my situation, I have a Win32::Spawn call which looks like this: my $success = undef; my $cmdline = EBDTools::os_path("${nh_home}/web/aview/modules/svcrsp-ng/saSync.pl"); $success = Win32::Spawn($^X, "${^X} $cmdline ${optfile}", $pid); if (! $success) { my $lasterr = Win32::GetLastError(); return_configerror("Failed to create commit / sync process...
16
5312
by: spl | last post by:
To increase the performance, how to change the / operator with bitwise operators? for ex: 25/5, 225/25 or 25/3 or any division, but I am not bothered of any remainder.
7
4432
by: Captain Paralytic | last post by:
To replace just the last full stop in some text with ".@" I can use preg_replace('/\.$/','.@',$s); But how so I reverse that to replace all full stops except for the last one. E.G. "Hello I must be going. And so it goes. On and on."
0
9722
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10378
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10391
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10121
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9200
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7664
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6881
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5690
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.