473,659 Members | 2,662 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

GUI in Python using wxGlade

I recently tried a hand at wxGlade and was happy to see it designs a
GUI for you in minutes. I am a newbie Python coder. I am not completely
aware of GUI programming.

I can easily make menubars etc but I am not too sure sure how to get
more windows poppping to get more information. I mean when you click
something, a new windows would open and ask for input like that. Since
I am using wxGlade and wxPython....can you suggest me a quick tutorial
for GUI programming.

Every help is appreciate,

Thanks

Jun 15 '06 #1
7 8972
di********@gmai l.com wrote:
I recently tried a hand at wxGlade and was happy to see it designs a
GUI for you in minutes. I am a newbie Python coder. I am not completely
aware of GUI programming.

I can easily make menubars etc but I am not too sure sure how to get
more windows poppping to get more information. I mean when you click
something, a new windows would open and ask for input like that. Since
I am using wxGlade and wxPython....can you suggest me a quick tutorial
for GUI programming.

Every help is appreciate,

Without having time to go into a full, the way to proceed with Glade
(unless I am mistaken) is to design each window independently of the
others, and to use a button press in one window to create an instance of
another type of window.

Good luck!

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Love me, love my blog http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden

Jun 15 '06 #2
I am pasting my code. I created a small little GUI without any
functionality as of yet. I wanted to ask few questions on that.

Expand|Select|Wrap|Line Numbers
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. # generated by wxGlade 0.4cvs on Thu Jun 15 10:51:12 2006
  4.  
  5. import wx
  6.  
  7. class MyFrame(wx.Frame):
  8. def __init__(self, *args, **kwds):
  9. # begin wxGlade: MyFrame.__init__
  10. kwds["style"] = wx.DEFAULT_FRAME_STYLE
  11. wx.Frame.__init__(self, *args, **kwds)
  12. self.panel_1 = wx.Panel(self, -1)
  13.  
  14. # Menu Bar
  15. self.frame_1_menubar = wx.MenuBar()
  16. self.SetMenuBar(self.frame_1_menubar)
  17. self.File = wx.Menu()
  18. self.CreateNewConfigFile = wx.MenuItem(self.File, wx.NewId(),
  19. _("Create New Config File"), "", wx.ITEM_NORMAL)
  20. self.File.AppendItem(self.CreateNewConfigFile)
  21. self.OpenConfigFile = wx.MenuItem(self.File, wx.NewId(),
  22. _("Open Config File"), "", wx.ITEM_NORMAL)
  23. self.File.AppendItem(self.OpenConfigFile)
  24. self.EditConfigFile = wx.MenuItem(self.File, wx.NewId(),
  25. _("Edit Config File"), "", wx.ITEM_NORMAL)
  26. self.File.AppendItem(self.EditConfigFile)
  27. self.Close = wx.MenuItem(self.File, wx.NewId(), _("Close"), "",
  28. wx.ITEM_NORMAL)
  29. self.File.AppendItem(self.Close)
  30. self.Exit = wx.MenuItem(self.File, wx.NewId(), _("Exit"), "",
  31. wx.ITEM_NORMAL)
  32. self.File.AppendItem(self.Exit)
  33. self.frame_1_menubar.Append(self.File, _("File"))
  34. self.Action = wx.Menu()
  35. self.AddComputer = wx.MenuItem(self.Action, wx.NewId(), _("Add
  36. Computer"), "", wx.ITEM_NORMAL)
  37. self.Action.AppendItem(self.AddComputer)
  38. self.Shutdown = wx.MenuItem(self.Action, wx.NewId(),
  39. _("Shutdown..."), "", wx.ITEM_NORMAL)
  40. self.Action.AppendItem(self.Shutdown)
  41. self.ShutdownAll = wx.MenuItem(self.Action, wx.NewId(),
  42. _("Shutdown All"), "", wx.ITEM_NORMAL)
  43. self.Action.AppendItem(self.ShutdownAll)
  44. self.frame_1_menubar.Append(self.Action, _("Action"))
  45. self.Help = wx.Menu()
  46. self.Tutorial = wx.MenuItem(self.Help, wx.NewId(),
  47. _("Tutorial"), "", wx.ITEM_NORMAL)
  48. self.Help.AppendItem(self.Tutorial)
  49. self.AboutUs = wx.MenuItem(self.Help, wx.NewId(), _("About
  50. us"), "", wx.ITEM_NORMAL)
  51. self.Help.AppendItem(self.AboutUs)
  52. self.frame_1_menubar.Append(self.Help, _("Help"))
  53. # Menu Bar end
  54. self.frame_1_statusbar = self.CreateStatusBar(1, 0)
  55.  
  56. self.__set_properties()
  57. self.__do_layout()
  58. # end wxGlade
  59.  
  60. def __set_properties(self):
  61. # begin wxGlade: MyFrame.__set_properties
  62. self.SetTitle(_("Test"))
  63. self.SetSize((600, 450))
  64. self.frame_1_statusbar.SetStatusWidths([-1])
  65. # statusbar fields
  66. frame_1_statusbar_fields = [_("Test Application")]
  67. for i in range(len(frame_1_statusbar_fields)):
  68.  
  69. self.frame_1_statusbar.SetStatusText(frame_1_statusbar_fields[i], i)
  70. # end wxGlade
  71.  
  72. def __do_layout(self):
  73. # begin wxGlade: MyFrame.__do_layout
  74. sizer_1 = wx.BoxSizer(wx.VERTICAL)
  75. sizer_1.Add(self.panel_1, 1, wx.EXPAND, 0)
  76. self.SetAutoLayout(True)
  77. self.SetSizer(sizer_1)
  78. self.Layout()
  79. # end wxGlade
  80.  
  81. # end of class MyFrame
  82.  
  83.  
  84. class MyApp(wx.App):
  85. def OnInit(self):
  86. wx.InitAllImageHandlers()
  87. frame_1 = MyFrame(None, -1, "")
  88. self.SetTopWindow(frame_1)
  89. frame_1.Show()
  90. return 1
  91.  
  92. # end of class MyApp
  93.  
  94. if __name__ == "__main__":
  95. import gettext
  96. gettext.install("app") # replace with the appropriate catalog name
  97.  
  98. app = MyApp(0)
  99. app.MainLoop()
  100.  
If I click on any of the items of the File Menu, say I click on "Open
config File", I want a new windows to come up.

My questions is when I create a new Frame/Windows in wxGlade, will it
be wxFrame or wxMDI Frame......whic h one should I choose and why ?

I am not completely aware of all the small tools that wxGlade gives and
how to place them.
Any kind of help is greatly appreciated.

Thanks
Without having time to go into a full, the way to proceed with Glade
(unless I am mistaken) is to design each window independently of the
others, and to use a button press in one window to create an instance of
another type of window.


Jun 15 '06 #3
di********@gmai l.com wrote:
I am pasting my code. I created a small little GUI without any
functionality as of yet. I wanted to ask few questions on that.
[lots of code ...]
If I click on any of the items of the File Menu, say I click on "Open
config File", I want a new windows to come up.

My questions is when I create a new Frame/Windows in wxGlade, will it
be wxFrame or wxMDI Frame......whic h one should I choose and why ?

I am not completely aware of all the small tools that wxGlade gives and
how to place them.
Any kind of help is greatly appreciated.

As I already said I'm a bit to busy to help with specifics right now.
Two places you might go for help:

1: http://www.holdenweb.com/PyConTX2006/wxPythonIntro.pdf

The introductory tutorial I gave at PyCon TX 2006

2: Email to wx************* ****@lists.wxwi dgets.org

There's a fairly friendly community who will take your code as
evidence you are trying to help yourself and explain the basics
as necessary.

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Love me, love my blog http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden

Jun 15 '06 #4
I am a newbie. I was looking for some code where I could a list of
different items from a file and display it in a list box. Then give a
user the capability to select some.

Basically, reading and writing to a file and displaying them in
different widgets...thats something I am looking for. If anybody can
point me to some good example tutorials...I will be greatly helped.

Thanks,

Every help is appreciated

Jun 15 '06 #5
di********@gmai l.com wrote:
I am a newbie. I was looking for some code where I could a list of
different items from a file and display it in a list box. Then give a
user the capability to select some.

Basically, reading and writing to a file and displaying them in
different widgets...thats something I am looking for. If anybody can
point me to some good example tutorials...I will be greatly helped.

Thanks,

Every help is appreciated

Have you tried looking at the code in the wxPython demo? In the ListBox
control demo, it populates a ListBox with items from a list, but you
could easily translate that into reading from a file, I think. Here's
the full code in case you don't have the demo:


import wx

#---------------------------------------------------------------------------

# This listbox subclass lets you type the starting letters of what you want to
# select, and scrolls the list to the match if it is found.
class FindPrefixListB ox(wx.ListBox):
def __init__(self, parent, id, pos=wx.DefaultP osition, size=wx.Default Size,
choices=[], style=0, validator=wx.De faultValidator) :
wx.ListBox.__in it__(self, parent, id, pos, size, choices, style, validator)
self.typedText = ''
self.log = parent.log
self.Bind(wx.EV T_KEY_DOWN, self.OnKey)
def FindPrefix(self , prefix):
self.log.WriteT ext('Looking for prefix: %s\n' % prefix)

if prefix:
prefix = prefix.lower()
length = len(prefix)

# Changed in 2.5 because ListBox.Number( ) is no longer supported.
# ListBox.GetCoun t() is now the appropriate way to go.
for x in range(self.GetC ount()):
text = self.GetString( x)
text = text.lower()

if text[:length] == prefix:
self.log.WriteT ext('Prefix %s is found.\n' % prefix)
return x

self.log.WriteT ext('Prefix %s is not found.\n' % prefix)
return -1
def OnKey(self, evt):
key = evt.GetKeyCode( )

if key >= 32 and key <= 127:
self.typedText = self.typedText + chr(key)
item = self.FindPrefix (self.typedText )

if item != -1:
self.SetSelecti on(item)

elif key == wx.WXK_BACK: # backspace removes one character and backs up
self.typedText = self.typedText[:-1]

if not self.typedText:
self.SetSelecti on(0)
else:
item = self.FindPrefix (self.typedText )

if item != -1:
self.SetSelecti on(item)
else:
self.typedText = ''
evt.Skip()

def OnKeyDown(self, evt):
pass
#---------------------------------------------------------------------------

class TestListBox(wx. Panel):
def __init__(self, parent, log):
self.log = log
wx.Panel.__init __(self, parent, -1)

sampleList = ['zero', 'one', 'two', 'three', 'four', 'five',
'six', 'seven', 'eight', 'nine', 'ten', 'eleven',
'twelve', 'thirteen', 'fourteen']

wx.StaticText(s elf, -1, "This example uses the wx.ListBox control.", (45, 10))
wx.StaticText(s elf, -1, "Select one:", (15, 50))
self.lb1 = wx.ListBox(self , 60, (100, 50), (90, 120), sampleList, wx.LB_SINGLE)
self.Bind(wx.EV T_LISTBOX, self.EvtListBox , self.lb1)
self.Bind(wx.EV T_LISTBOX_DCLIC K, self.EvtListBox DClick, self.lb1)
self.lb1.Bind(w x.EVT_RIGHT_UP, self.EvtRightBu tton)
self.lb1.SetSel ection(3)
self.lb1.Append ("with data", "This one has data");
self.lb1.SetCli entData(2, "This one has data");
wx.StaticText(s elf, -1, "Select many:", (220, 50))
self.lb2 = wx.ListBox(self , 70, (320, 50), (90, 120), sampleList, wx.LB_EXTENDED)
self.Bind(wx.EV T_LISTBOX, self.EvtMultiLi stBox, self.lb2)
self.lb2.Bind(w x.EVT_RIGHT_UP, self.EvtRightBu tton)
self.lb2.SetSel ection(0)

sampleList = sampleList + ['test a', 'test aa', 'test aab',
'test ab', 'test abc', 'test abcc',
'test abcd' ]
sampleList.sort ()
wx.StaticText(s elf, -1, "Find Prefix:", (15, 250))
fp = FindPrefixListB ox(self, -1, (100, 250), (90, 120), sampleList, wx.LB_SINGLE)
fp.SetSelection (0)
def EvtListBox(self , event):
self.log.WriteT ext('EvtListBox : %s, %s, %s, %s\n' %
(event.GetStrin g(),
event.IsSelecti on(),
event.GetSelect ion(),
event.GetClient Data()))

lb = event.GetEventO bject()
data = lb.GetClientDat a(lb.GetSelecti on())

if data is not None:
self.log.WriteT ext('\tdata: %s\n' % data)
def EvtListBoxDClic k(self, event):
self.log.WriteT ext('EvtListBox DClick: %s\n' % self.lb1.GetSel ection())
self.lb1.Delete (self.lb1.GetSe lection())

def EvtMultiListBox (self, event):
self.log.WriteT ext('EvtMultiLi stBox: %s\n' % str(self.lb2.Ge tSelections()))

def EvtRightButton( self, event):
self.log.WriteT ext('EvtRightBu tton: %s\n' % event.GetPositi on())

if event.GetEventO bject().GetId() == 70:
selections = list(self.lb2.G etSelections())
selections.reve rse()

for index in selections:
self.lb2.Delete (index)
#---------------------------------------------------------------------------

def runTest(frame, nb, log):
win = TestListBox(nb, log)
return win

#---------------------------------------------------------------------------


overview = """<html><b ody>
A listbox is used to select one or more of a list of
strings. The strings are displayed in a scrolling box, with the
selected string(s) marked in reverse video. A listbox can be single
selection (if an item is selected, the previous selection is removed)
or multiple selection (clicking an item toggles the item on or off
independently of other selections).
</body></html>
"""
if __name__ == '__main__':
import sys,os
import run
run.main(['', os.path.basenam e(sys.argv[0])] + sys.argv[1:])

Jun 15 '06 #6
Ther is a short online tutorial on using wxGlade here <a
href="http://www.serpia.org/wxgladeJohn">wx Glade Tutorial</a>

Jun 15 '06 #7
Did you paste any code ?

Also the link for the next message is not working .....
John Salerno wrote:
di********@gmai l.com wrote:
I am a newbie. I was looking for some code where I could a list of
different items from a file and display it in a list box. Then give a
user the capability to select some.

Basically, reading and writing to a file and displaying them in
different widgets...thats something I am looking for. If anybody can
point me to some good example tutorials...I will be greatly helped.

Thanks,

Every help is appreciated


Have you tried looking at the code in the wxPython demo? In the ListBox
control demo, it populates a ListBox with items from a list, but you
could easily translate that into reading from a file, I think. Here's
the full code in case you don't have the demo:


import wx

#---------------------------------------------------------------------------

# This listbox subclass lets you type the starting letters of what you want to
# select, and scrolls the list to the match if it is found.
class FindPrefixListB ox(wx.ListBox):
def __init__(self, parent, id, pos=wx.DefaultP osition, size=wx.Default Size,
choices=[], style=0, validator=wx.De faultValidator) :
wx.ListBox.__in it__(self, parent, id, pos, size, choices, style, validator)
self.typedText = ''
self.log = parent.log
self.Bind(wx.EV T_KEY_DOWN, self.OnKey)
def FindPrefix(self , prefix):
self.log.WriteT ext('Looking for prefix: %s\n' % prefix)

if prefix:
prefix = prefix.lower()
length = len(prefix)

# Changed in 2.5 because ListBox.Number( ) is no longer supported.
# ListBox.GetCoun t() is now the appropriate way to go.
for x in range(self.GetC ount()):
text = self.GetString( x)
text = text.lower()

if text[:length] == prefix:
self.log.WriteT ext('Prefix %s is found.\n' % prefix)
return x

self.log.WriteT ext('Prefix %s is not found.\n' % prefix)
return -1
def OnKey(self, evt):
key = evt.GetKeyCode( )

if key >= 32 and key <= 127:
self.typedText = self.typedText + chr(key)
item = self.FindPrefix (self.typedText )

if item != -1:
self.SetSelecti on(item)

elif key == wx.WXK_BACK: # backspace removes one character and backs up
self.typedText = self.typedText[:-1]

if not self.typedText:
self.SetSelecti on(0)
else:
item = self.FindPrefix (self.typedText )

if item != -1:
self.SetSelecti on(item)
else:
self.typedText = ''
evt.Skip()

def OnKeyDown(self, evt):
pass
#---------------------------------------------------------------------------

class TestListBox(wx. Panel):
def __init__(self, parent, log):
self.log = log
wx.Panel.__init __(self, parent, -1)

sampleList = ['zero', 'one', 'two', 'three', 'four', 'five',
'six', 'seven', 'eight', 'nine', 'ten', 'eleven',
'twelve', 'thirteen', 'fourteen']

wx.StaticText(s elf, -1, "This example uses the wx.ListBox control.", (45, 10))
wx.StaticText(s elf, -1, "Select one:", (15, 50))
self.lb1 = wx.ListBox(self , 60, (100, 50), (90, 120), sampleList, wx.LB_SINGLE)
self.Bind(wx.EV T_LISTBOX, self.EvtListBox , self.lb1)
self.Bind(wx.EV T_LISTBOX_DCLIC K, self.EvtListBox DClick, self.lb1)
self.lb1.Bind(w x.EVT_RIGHT_UP, self.EvtRightBu tton)
self.lb1.SetSel ection(3)
self.lb1.Append ("with data", "This one has data");
self.lb1.SetCli entData(2, "This one has data");
wx.StaticText(s elf, -1, "Select many:", (220, 50))
self.lb2 = wx.ListBox(self , 70, (320, 50), (90, 120), sampleList, wx.LB_EXTENDED)
self.Bind(wx.EV T_LISTBOX, self.EvtMultiLi stBox, self.lb2)
self.lb2.Bind(w x.EVT_RIGHT_UP, self.EvtRightBu tton)
self.lb2.SetSel ection(0)

sampleList = sampleList + ['test a', 'test aa', 'test aab',
'test ab', 'test abc', 'test abcc',
'test abcd' ]
sampleList.sort ()
wx.StaticText(s elf, -1, "Find Prefix:", (15, 250))
fp = FindPrefixListB ox(self, -1, (100, 250), (90, 120), sampleList, wx.LB_SINGLE)
fp.SetSelection (0)
def EvtListBox(self , event):
self.log.WriteT ext('EvtListBox : %s, %s, %s, %s\n' %
(event.GetStrin g(),
event.IsSelecti on(),
event.GetSelect ion(),
event.GetClient Data()))

lb = event.GetEventO bject()
data = lb.GetClientDat a(lb.GetSelecti on())

if data is not None:
self.log.WriteT ext('\tdata: %s\n' % data)
def EvtListBoxDClic k(self, event):
self.log.WriteT ext('EvtListBox DClick: %s\n' % self.lb1.GetSel ection())
self.lb1.Delete (self.lb1.GetSe lection())

def EvtMultiListBox (self, event):
self.log.WriteT ext('EvtMultiLi stBox: %s\n' % str(self.lb2.Ge tSelections()))

def EvtRightButton( self, event):
self.log.WriteT ext('EvtRightBu tton: %s\n' % event.GetPositi on())

if event.GetEventO bject().GetId() == 70:
selections = list(self.lb2.G etSelections())
selections.reve rse()

for index in selections:
self.lb2.Delete (index)
#---------------------------------------------------------------------------

def runTest(frame, nb, log):
win = TestListBox(nb, log)
return win

#---------------------------------------------------------------------------


overview = """<html><b ody>
A listbox is used to select one or more of a list of
strings. The strings are displayed in a scrolling box, with the
selected string(s) marked in reverse video. A listbox can be single
selection (if an item is selected, the previous selection is removed)
or multiple selection (clicking an item toggles the item on or off
independently of other selections).
</body></html>
"""
if __name__ == '__main__':
import sys,os
import run
run.main(['', os.path.basenam e(sys.argv[0])] + sys.argv[1:])


Jun 16 '06 #8

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

Similar topics

9
13676
by: Edilmar | last post by:
Hi, First of all, I'm new in Python... I have worked with manu langs and IDEs, like Delphi, VB, JBuilder, Eclipse, Borland C++, Perl, etc... Then, today I think IDEs like Delphi have a excelent environment to develop apps with little time. I saw many people talking about Python like a easy lang to learn and to develop. But I have look at IDEs for Python, or ways
3
12318
by: Anand K Rayudu | last post by:
Hi All, I am new to python & want to build some GUI dialogs. Can some one please suggest some document reference. I am hoping that standard python install will have some GUI development modules & GUI builder in built. I have python 2.3.3. Can some one please suggest
2
1863
by: Al Dykes | last post by:
I'm looking for info on programming with glade on python, and maybe some sample code to hack. I've got python installed, but need a howto for glade and google doesn't help me. Any suggestions ?
14
4516
by: BOOGIEMAN | last post by:
Well that's it, how do I make Windows Application with Python ??? Is there simple way that works 100% ? How can I rework visual design done in VS 2003 to use it for my python program ?
7
3212
by: Madhusudan Singh | last post by:
Is there such a thing for python ? Like Qt Designer for instance ?
6
1559
by: alfaeco | last post by:
Hello I am looking for a good IDE for Python. Commercial or Open Software. If possible with visual GUI designer. For the moment I am considering Komodo. Any suggestions?
44
3688
by: jiang.haiyun | last post by:
Now i began to learn GUI programming. There are so many choices of GUI in the python world, wxPython, pyGTK, PyQT, Tkinter, .etc, it's difficult for a novice to decide, however. Can you draw a comparison among them on easy coding, pythonish design, beautiful and generous looking, powerful development toolkit, and sufficient documentation, .etc. It's helpful for a GUI beginner. Thank you.
5
2929
by: kromakey | last post by:
Hi, Are there any free visual GUI IDE's available for python/jython, which have a drag and drop form designer similar to Visual Studio or Delphi ? Cheers kromakey
0
1125
by: dominiquevalentine | last post by:
anyone have any advice as to where to start if i say..wanted to program the ipods UI? I have one python project under my belt so far, and i'm going for my second. I want to try to mimic the ipod using python -- that is, basically, i want a virtual ipod in a window, using either pygtk or wxglade if possible (learning both). not sure if html works.. <img src="http://media.arstechnica.com/journals/apple.media/thumb/...
0
8427
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
8330
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8850
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
8626
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...
1
6178
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
5649
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
4334
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2749
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
2
1737
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.