473,625 Members | 2,615 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Developing a WYSIWYG - IDE type application. How would you do it?



Hi all

I have been asked to develop a solution that is customisable by our clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical code
in a Database and then almost compile it at runtime to display the screens
and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that can
then almost be data bound.

What I am looking for is something like how an MS Access Database does where
you can do simple data bound screens or you can get into the thick of it and
write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink
Feb 21 '07 #1
22 2194
This is how sharpdevelop was done. Perhaps it is even too much for what you
need, but probably you'll find something useful.

http://www.apress.com/free/download.html

hth
Fabrizio

"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB******** ******@TK2MSFTN GP02.phx.gbl...
>

Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical code
in a Database and then almost compile it at runtime to display the screens
and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that can
then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the thick
of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink


Feb 21 '07 #2
This is something that's not really feasible with the .NET Compact and there
are a number of reasons why. The first being that the .NET Compact Framework
does not support CodeDOM or Reflection.Emit , so there is no way to
dynamically parse or generate IL instructions on the fly. Another being that
the .NET CF does not support drag & drop, so even if you did have a UI
designer running on the device, it would be cumbersome to work as there
would be no easy way to lay out the controls.

As a suggestion, you may want to propose to your client that they should use
templated forms. By that I mean construct a set of fairly generic UIs that
the user can choose from at runtime. These could include a single data row
UI, a tabular UI using the datagrid, or a master/detail view using a
combination of the previous two UIs.

--
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC.

http://www.opennetcf.com/
"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB******** ******@TK2MSFTN GP02.phx.gbl...
>

Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical code
in a Database and then almost compile it at runtime to display the screens
and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that can
then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the thick
of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink

Feb 21 '07 #3
The problem with SharpDevelop is that it doesn't run on Windows Mobile
devices, which the OP requires.

--
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC.

http://www.opennetcf.com/
"Fabrizio" <no****@nospam. comwrote in message
news:45******** *************@r eader5.news.tin .it...
This is how sharpdevelop was done. Perhaps it is even too much for what
you need, but probably you'll find something useful.

http://www.apress.com/free/download.html

hth
Fabrizio

"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB******** ******@TK2MSFTN GP02.phx.gbl...
>>

Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical
code in a Database and then almost compile it at runtime to display the
screens and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that can
then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the thick
of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink


Feb 21 '07 #4
Check this out:
http://blogs.msdn.com/sriram/archive...12/492070.aspx

Hope it helps.
--
Thanks and Regards
Amit Ranjan
blog:http://amitranjan.wordpress.com

--
Thanks and Regards
Amit Ranjan
blog:http://amitranjan.wordpress.com
"iKiLL" wrote:
>

Hi all

I have been asked to develop a solution that is customisable by our clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical code
in a Database and then almost compile it at runtime to display the screens
and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that can
then almost be data bound.

What I am looking for is something like how an MS Access Database does where
you can do simple data bound screens or you can get into the thick of it and
write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink
Feb 21 '07 #5
Thank you all for your comments.

Fabrizio: This is a very interesting site. and i have downloaded the PDF. i
have read the intro and you are wright. This is alot more complicated than i
need, but this would be like the whole grail of what i need. but again. I am
looking to develop something that a User can be trained in one day to change
screen lay out but a developer can sink his teeth into if needs be, but
prioraty number one is simple user customisations.

Neil: It is verry interesting to know the limitations of .Net CF. But I am
sorry i did not explain my self clearly. but the Development environment
would be on a Desk to PC and Saved to the Publiser database and then synced
to the PDA via Merge replication. Then when the user logs into the app in
the PDA the app will read the screen layout from a Meta data table and draw
it.
Amit: I am still reading the link you sent me.

Thank you all for your comments.

ink




"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB******** ******@TK2MSFTN GP02.phx.gbl...
>

Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical code
in a Database and then almost compile it at runtime to display the screens
and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that can
then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the thick
of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink


Feb 21 '07 #6
I knew that. But it's useful to look at how someone did something like what
you have to do if you don't have any idea on how to do it.
I'm not particularly expert in this case, so I just suggested SharpDevelop
because is quite nice and most of all it is free and documented and you can
also download the source files, with the hope that the op would have found
something useful for him.
cheers

"Neil Cowburn" <neilc@[nospamthanks].opennetcf.comw rote in message
news:9E******** *************** ***********@mic rosoft.com...
The problem with SharpDevelop is that it doesn't run on Windows Mobile
devices, which the OP requires.

--
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC.

http://www.opennetcf.com/
"Fabrizio" <no****@nospam. comwrote in message
news:45******** *************@r eader5.news.tin .it...
>This is how sharpdevelop was done. Perhaps it is even too much for what
you need, but probably you'll find something useful.

http://www.apress.com/free/download.html

hth
Fabrizio

"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB******* *******@TK2MSFT NGP02.phx.gbl.. .
>>>

Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical
code in a Database and then almost compile it at runtime to display the
screens and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that
can then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the thick
of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink



Feb 21 '07 #7
OK, fair enough. You didn't mention that requirement, but you did state it
is "supposed to run on the Windows Mobile 5.0 CF2.0 environment using Merge
Replication".

It is possible to use a runtime interpreter to take some layout definition
and then construct a UI from that, but it would pretty much be a
display-only interface. How are you going to handle events? There is no
support for dynamic methods in the .NET CF so you cannot hook up a custom
event handler without pre-compiling the code.

--Neil

--
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC.

http://www.opennetcf.com/
"iKiLL" <iK***@NotMyEma il.comwrote in message
news:e3******** ******@TK2MSFTN GP05.phx.gbl...
Thank you all for your comments.

Fabrizio: This is a very interesting site. and i have downloaded the PDF.
i have read the intro and you are wright. This is alot more complicated
than i need, but this would be like the whole grail of what i need. but
again. I am looking to develop something that a User can be trained in one
day to change screen lay out but a developer can sink his teeth into if
needs be, but prioraty number one is simple user customisations.

Neil: It is verry interesting to know the limitations of .Net CF. But I am
sorry i did not explain my self clearly. but the Development environment
would be on a Desk to PC and Saved to the Publiser database and then
synced to the PDA via Merge replication. Then when the user logs into the
app in the PDA the app will read the screen layout from a Meta data table
and draw it.
Amit: I am still reading the link you sent me.

Thank you all for your comments.

ink




"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB******** ******@TK2MSFTN GP02.phx.gbl...
>>

Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical
code in a Database and then almost compile it at runtime to display the
screens and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that can
then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the thick
of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink


Feb 21 '07 #8
Thanks Neil,

What do you mean by "runtime interpreter" is this something i would purchase
or i would write.

i want to use C# to build this application but i dont mind if the users of
it use somethin like VB. infact this would probably be prefered for ease of
learning for the user.
Thanks
ink


"Neil Cowburn" <neilc@[nospamthanks].opennetcf.comw rote in message
news:eC******** ******@TK2MSFTN GP03.phx.gbl...
OK, fair enough. You didn't mention that requirement, but you did state it
is "supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication".

It is possible to use a runtime interpreter to take some layout definition
and then construct a UI from that, but it would pretty much be a
display-only interface. How are you going to handle events? There is no
support for dynamic methods in the .NET CF so you cannot hook up a custom
event handler without pre-compiling the code.

--Neil

--
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC.

http://www.opennetcf.com/
"iKiLL" <iK***@NotMyEma il.comwrote in message
news:e3******** ******@TK2MSFTN GP05.phx.gbl...
>Thank you all for your comments.

Fabrizio: This is a very interesting site. and i have downloaded the PDF.
i have read the intro and you are wright. This is alot more complicated
than i need, but this would be like the whole grail of what i need. but
again. I am looking to develop something that a User can be trained in
one day to change screen lay out but a developer can sink his teeth into
if needs be, but prioraty number one is simple user customisations.

Neil: It is verry interesting to know the limitations of .Net CF. But I
am sorry i did not explain my self clearly. but the Development
environment would be on a Desk to PC and Saved to the Publiser database
and then synced to the PDA via Merge replication. Then when the user logs
into the app in the PDA the app will read the screen layout from a Meta
data table and draw it.
Amit: I am still reading the link you sent me.

Thank you all for your comments.

ink




"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB******* *******@TK2MSFT NGP02.phx.gbl.. .
>>>

Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical
code in a Database and then almost compile it at runtime to display the
screens and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that
can then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the thick
of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code editing
window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink



Feb 21 '07 #9
This really is not something that's going to be easy. One of the problems,
as Neils has alluded to, is events. Let's say you spend a few months
getting a WYSIWYG editor (and I think that's generous). Now let's say a
user drops a button on a form. They'll want to handle a "cick" event
somehow. Well in order for that to happen, a handler would have to exist,
so you must already have a handler written and compiled into your code. You
don't have codedom to create one dynamically and you don't have a compiler
to make a new one.

To be honest, a full UI editor with teh code facilities would likely take
over a year to build. I'd also recommend you go with templates that can be
modified.
--
Chris Tacke - Embedded MVP
OpenNETCF Consulting
Managed Code in the Embedded World
www.opennetcf.com
--
"iKiLL" <iK***@NotMyEma il.comwrote in message
news:us******** ******@TK2MSFTN GP05.phx.gbl...
Thanks Neil,

What do you mean by "runtime interpreter" is this something i would
purchase or i would write.

i want to use C# to build this application but i dont mind if the users of
it use somethin like VB. infact this would probably be prefered for ease
of learning for the user.
Thanks
ink


"Neil Cowburn" <neilc@[nospamthanks].opennetcf.comw rote in message
news:eC******** ******@TK2MSFTN GP03.phx.gbl...
>OK, fair enough. You didn't mention that requirement, but you did state
it is "supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication".

It is possible to use a runtime interpreter to take some layout
definition and then construct a UI from that, but it would pretty much be
a display-only interface. How are you going to handle events? There is no
support for dynamic methods in the .NET CF so you cannot hook up a custom
event handler without pre-compiling the code.

--Neil

--
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC.

http://www.opennetcf.com/
"iKiLL" <iK***@NotMyEma il.comwrote in message
news:e3******* *******@TK2MSFT NGP05.phx.gbl.. .
>>Thank you all for your comments.

Fabrizio: This is a very interesting site. and i have downloaded the
PDF. i have read the intro and you are wright. This is alot more
complicated than i need, but this would be like the whole grail of what
i need. but again. I am looking to develop something that a User can be
trained in one day to change screen lay out but a developer can sink his
teeth into if needs be, but prioraty number one is simple user
customisation s.

Neil: It is verry interesting to know the limitations of .Net CF. But I
am sorry i did not explain my self clearly. but the Development
environment would be on a Desk to PC and Saved to the Publiser database
and then synced to the PDA via Merge replication. Then when the user
logs into the app in the PDA the app will read the screen layout from a
Meta data table and draw it.
Amit: I am still reading the link you sent me.

Thank you all for your comments.

ink




"iKiLL" <iK***@NotMyEma il.comwrote in message
news:uB****** ********@TK2MSF TNGP02.phx.gbl. ..
Hi all

I have been asked to develop a solution that is customisable by our
clients.

It is supposed to run on the Windows Mobile 5.0 CF2.0 environment using
Merge Replication.

I have looked into allowing the creation of Addin's but that has been
rejected as it would require to much programming knowledge of a Dot.Net
Language.

Ideally what I would like is to store the user interfaces and logical
code in a Database and then almost compile it at runtime to display the
screens and perform logical tasks.

Then build a WYSIWYG designer for creating the PDA entry screens that
can then almost be data bound.

What I am looking for is something like how an MS Access Database does
where you can do simple data bound screens or you can get into the
thick of it and write VB code.

My questions are:

1.. How do I store logical code in the database and then us it at
runtime?
2.. Any ideas about how to build a WYSIWYG designer with a code
editing window?
If you know of any examples that would lead me in the right direction I
would be most great full.

The primary language I want to use for development is C#.

Thanks for any help.

ink



Feb 21 '07 #10

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

Similar topics

3
3264
by: Martin | last post by:
Thanks to all those who assisted me with my last question re: What is the best way to produce WYSIWYG pages for viewing and printing. I think that I have mastered the form with scrolling picture box method, it looks fine but still lacks that windows application feel. I was advised not to go the MDI form root at the time but no reason was given. Could someone explain why not MDI form for the same purpose, I understand that most MS...
6
1996
by: lb | last post by:
Hi I'm looking for a wysiwyg XSTL editor, that actually is wysiwyg. So far every product I have tried out seems to have the idea that wysiwyg is just showing the result of an XML - XSL trans-formation. What I'm looking for is an editor that lets me design how I want the result to look, based on a XML file, and automatically generates the XSL needed to obtain the result. Does such a product exist?
2
3577
by: paul | last post by:
I have developed an application for pocket pc that requires multiple forms to be open at any one time. The user is able to flick from one to the other, making changes to each as and when necessary The application uses a stacking system to hold instances of the forms, and an array to hold "previous navigation" information (information on this method was found on "http://smartdevices.microsoftdev.com/Learn/Articles/505.aspx") The problem I have...
1
9933
by: Derek | last post by:
Hi All, I am developing a Windows based application that consists of several different modules. These modules are effectively separate from each other yet share information in a common database. I would like to be able deliver specific modules depending on what the needs of the client are. Some clients may only need Module A and B, while others may need the functionality in Module D. What I am trying to figure out is the best way to go...
12
2360
by: Michael Peters | last post by:
für einen Enduser, der kein HTML kann und nur die Contents auf statischen Seiten ändern will, brauche ich einen einfach zu bedienenden WYSIWYG-Editor. Wäre dankbar für Empfehlungen! -m
4
3023
by: David Lozzi | last post by:
Howdy, I'm using a WYSIWYG editor called TinyMCE. When I edit some text and then save it back to my SQL server using a SQLCommand, all HTML characters are changed to HTML code, i.e. &gt;strong&lt; instead of <strong> and so on. Is this a problem with the editor or something else? Does .Net convert it? I had to disable page validate request because of the tags, is there more? Thanks,
27
3816
by: prt7u | last post by:
Howdy, I've started back afte a very long time of working with web pages for an organization that I am affiliated with (personally not professionally). Seeing that technology has advanced a lot since the last time I authored web pages (using vi), I am looking for a good, "free" WYSIWYG HTML Editor. Now, before ya go and hit the reply key, I've already tinkered with "amaya" which was pretty cool and then I moved to "Nvu", which I like
1
2005
by: Aggelos | last post by:
Dear developers, I am trying to find an answer to that rpoblem of mine for a very long time now... and still I had no luck. I have my tinyMCE WYSIWYG and I want to let people create an e-mail template. So i want the to type in the WYSIWYG : Dear <?= $subscriber->name ?>, You have a message from <?= $anotherSubscriber->name ?> Total messages: <?= $message->countMessages($subscriber->name); ?>
4
2433
by: Jason Huang | last post by:
Hi, I am thinking in comparing developing speed between C# Windows Form and C# Web Form applications. Assuming the scenario is that we have 2 C# coding engineers, engineer A has 2 years experience on developing C# windows form, engineer B has 2 experience on developing C# web form, B also knows Javascript as well. They both has the same apprehesnion for the Database things, they all devote themselves completely to their developing...
0
8688
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8635
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
8352
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
8494
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
7178
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...
0
5570
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
4085
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...
1
2614
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1800
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.