472,334 Members | 2,238 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,334 software developers and data experts.

Need Urgent Replacement for the IDE

Hallo,

I am in need of a replacement for the Microsoft Visual Studio .NET.

The reason is quiet simple. I develop forms which are used on
different
microsoft windows platform, and one microsoft windows platform spoils
the other microsoft windows platform. For example: I have two
projects, one for pc
and one for pocket pc. I would like (or better I have to) share the
forms.

With the !@# Microsoft IDE this is not possible because the IDE
generated
codes conflict with each other. For example: A pocket pc control does
not have
a tabstop property, but when I edit the form in the pc version, this
stupid
IDE adds this property all the time, overwriting my code which looks
like
this, but does not help.

#if COMPACT_FRAMEWORK = false then
me.combobox.tabstop = false
#end if

What is this IDE doing. It constantly removes the IF statement!!!

It wasn't a problem with vb.6 and embedded visual basic, but on .NET
it's a nightmare. I do not want to have multiple versions of multiple
forms, just because a no brainer wrote some code into the IDE which
spoils programs.
Same with resource files. The platforms use different resource file
syntax.

Please can somebody tell me if were is an alternative to the Microsoft
..NET
IDE.

Thanks

Chris

P.S. If somebody of this Microsoft IDE development team reads this,
maybe this is a valid complain. It also shows clearly how Microsoft
works. One department has no clue what the other department is doing.
Writing stubs (empty properties)
into the Compact Framework would have solved the problem.
Many controls on the pocket pc even do not have a name property, but
the IDE
adds this property happily to the control, and spoils my programs.
Nov 20 '05 #1
3 1315
Try webmatrix
vicky

"chris" <dl****@hotmail.com> wrote in message
news:dd**************************@posting.google.c om...
Hallo,

I am in need of a replacement for the Microsoft Visual Studio .NET.

The reason is quiet simple. I develop forms which are used on
different
microsoft windows platform, and one microsoft windows platform spoils
the other microsoft windows platform. For example: I have two
projects, one for pc
and one for pocket pc. I would like (or better I have to) share the
forms.

With the !@# Microsoft IDE this is not possible because the IDE
generated
codes conflict with each other. For example: A pocket pc control does
not have
a tabstop property, but when I edit the form in the pc version, this
stupid
IDE adds this property all the time, overwriting my code which looks
like
this, but does not help.

#if COMPACT_FRAMEWORK = false then
me.combobox.tabstop = false
#end if

What is this IDE doing. It constantly removes the IF statement!!!

It wasn't a problem with vb.6 and embedded visual basic, but on .NET
it's a nightmare. I do not want to have multiple versions of multiple
forms, just because a no brainer wrote some code into the IDE which
spoils programs.
Same with resource files. The platforms use different resource file
syntax.

Please can somebody tell me if were is an alternative to the Microsoft
.NET
IDE.

Thanks

Chris

P.S. If somebody of this Microsoft IDE development team reads this,
maybe this is a valid complain. It also shows clearly how Microsoft
works. One department has no clue what the other department is doing.
Writing stubs (empty properties)
into the Compact Framework would have solved the problem.
Many controls on the pocket pc even do not have a name property, but
the IDE
adds this property happily to the control, and spoils my programs.

Nov 20 '05 #2
Isn't web matrix for...

the web?

I believe we are talking about pocketpc forms.

"Vicky" <vi*********@rediffmail.com> wrote in message
news:uE**************@TK2MSFTNGP12.phx.gbl...
Try webmatrix
vicky

"chris" <dl****@hotmail.com> wrote in message
news:dd**************************@posting.google.c om...
Hallo,

I am in need of a replacement for the Microsoft Visual Studio .NET.

The reason is quiet simple. I develop forms which are used on
different
microsoft windows platform, and one microsoft windows platform spoils
the other microsoft windows platform. For example: I have two
projects, one for pc
and one for pocket pc. I would like (or better I have to) share the
forms.

With the !@# Microsoft IDE this is not possible because the IDE
generated
codes conflict with each other. For example: A pocket pc control does
not have
a tabstop property, but when I edit the form in the pc version, this
stupid
IDE adds this property all the time, overwriting my code which looks
like
this, but does not help.

#if COMPACT_FRAMEWORK = false then
me.combobox.tabstop = false
#end if

What is this IDE doing. It constantly removes the IF statement!!!

It wasn't a problem with vb.6 and embedded visual basic, but on .NET
it's a nightmare. I do not want to have multiple versions of multiple
forms, just because a no brainer wrote some code into the IDE which
spoils programs.
Same with resource files. The platforms use different resource file
syntax.

Please can somebody tell me if were is an alternative to the Microsoft
.NET
IDE.

Thanks

Chris

P.S. If somebody of this Microsoft IDE development team reads this,
maybe this is a valid complain. It also shows clearly how Microsoft
works. One department has no clue what the other department is doing.
Writing stubs (empty properties)
into the Compact Framework would have solved the problem.
Many controls on the pocket pc even do not have a name property, but
the IDE
adds this property happily to the control, and spoils my programs.


Nov 20 '05 #3
Chris,
You could try submitting something to MS Wish to have Forms Designer support
designing forms for multiple platforms.

http://register.microsoft.com/mswish/suggestion.asp

Sharp Develop is a free IDE that allows you to design Windows Forms, it
includes source, you may be able to modify it to support what you need if it
does not already.

http://www.icsharpcode.net/OpenSource/SD/

The following article explains how to create a Windows Forms designer:

http://www.divil.co.uk/net/articles/...rs/hosting.asp

However I have a couple of suggestions!
I am in need of a replacement for the Microsoft Visual Studio .NET. Rather looking for a replacement for the Forms designer, don't use a Forms
designer! create all the code from scratch, then you can tweak & massage it
all you want! And the designers will not "mess it up". Or once you have the
form designed with the designer, and you modified the "do not modify this
section", do not use a designer on it any more! This second method will be
harder to implement!

Rather then including a LOT of conditional compilation in my code, I would
look at implementing an Abstract Factory pattern and class hierarchy.
#if COMPACT_FRAMEWORK = false then
me.combobox.tabstop = false
#end if
For each form in my app, I would have a base form will the common logic
between platforms, then I would have two derived forms, one for each
platform. The Abstract Factory would return the correct derived form based
on the platform I am running. Then each project would include the base forms
& their respective derived forms & Abstract Factory. Of course if the
respective derived forms are named the same in each project you could get by
without the Abstract Factory, however I would not go that route I would have
distinct names for the derived forms also...

Hope this helps
Jay

"chris" <dl****@hotmail.com> wrote in message
news:dd**************************@posting.google.c om... Hallo,

I am in need of a replacement for the Microsoft Visual Studio .NET.

The reason is quiet simple. I develop forms which are used on
different
microsoft windows platform, and one microsoft windows platform spoils
the other microsoft windows platform. For example: I have two
projects, one for pc
and one for pocket pc. I would like (or better I have to) share the
forms.

With the !@# Microsoft IDE this is not possible because the IDE
generated
codes conflict with each other. For example: A pocket pc control does
not have
a tabstop property, but when I edit the form in the pc version, this
stupid
IDE adds this property all the time, overwriting my code which looks
like
this, but does not help.

#if COMPACT_FRAMEWORK = false then
me.combobox.tabstop = false
#end if

What is this IDE doing. It constantly removes the IF statement!!!

It wasn't a problem with vb.6 and embedded visual basic, but on .NET
it's a nightmare. I do not want to have multiple versions of multiple
forms, just because a no brainer wrote some code into the IDE which
spoils programs.
Same with resource files. The platforms use different resource file
syntax.

Please can somebody tell me if were is an alternative to the Microsoft
.NET
IDE.

Thanks

Chris

P.S. If somebody of this Microsoft IDE development team reads this,
maybe this is a valid complain. It also shows clearly how Microsoft
works. One department has no clue what the other department is doing.
Writing stubs (empty properties)
into the Compact Framework would have solved the problem.
Many controls on the pocket pc even do not have a name property, but
the IDE
adds this property happily to the control, and spoils my programs.

Nov 20 '05 #4

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

Similar topics

10
by: riki | last post by:
Hi, i have a big problem...i'm using one jscript for resizing of all of my pics in popUp...in main html i'm having many little pics and clicking on...
4
by: Martin Widmer | last post by:
Hi folks. I am using this collection class: Public Class ContentBlocksCollection Inherits DictionaryBase 'Object variables for attributes...
1
by: lawrence k | last post by:
Want to replace the limit clause in a query, but can't get it right. What's wrong with this: $pattern = "(.*)limit (.*)"; $replacement = '$1';...
3
by: N. Spiker | last post by:
I am attempting to receive a single TCP packet with some text ending with carriage return and line feed characters. When the text is send and the...
1
by: rajbala.3399 | last post by:
Hai all, I need to get multiple image buttonsand wheni click on the image button it should display corresponding image on window and if i click...
77
by: Hans Schneider | last post by:
1. in the prg bellow what vars are stored on stack, heap, data segment? int i; void main() { int j; int *k = (void *)malloc(1); }
5
by: LadyIlsebet | last post by:
I'm not a fantastic Access developer, but I'm trying to help get Inventory and whatnot organized at work. They are used to 5 year budget plans that...
3
by: Eric_Dexter | last post by:
I am trying to take some data in file that looks like this command colnum_1 columnum_2 and look for the command and then cange the value in...
0
by: delhi institute of management & services | last post by:
Delhi Institute of Management & Services Dear friends, We are extremely happy to welcome you to the world of Management... We are in the process...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...

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.