473,623 Members | 2,439 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

(OT) wxPython & resizers, html text (code included)

Hi,

i'm trying to convert my java console app to a python gui.
Now, the only problem i seem to have at the moment are the resizers
for the layout. It seems that for the purpose of what i'm trying to do,
specifying the coordinates is easier that fighting with the layout resizers.

1) I have a screen split in 2. Left side is a textcontrol where logging will
end up. All text will be appended to the textcontrol. Ideally this should
allow html tags but the wxHtmlWindow doesn't seem to support just adding
text. Only workaround that i can think off is to maintain a list of message
myself
and then i could set those every time something changes but i don't really
like this as on every change, the whole textcontrol will be refilled.
The reason for html is to easily adjust text from one colour to another and
for
instance some basic formatting like bold, italic etc.
Any ideas?

2) (view with for instance with courier)
-----------------------------------------------
| TextControl | ________ |
| ||________| Combobox |
| | |
| | ________ |
| ||________| |
| | |
| | ________ |
| ||________| Textcontrol |
| | |
-----------------------------------------------

Basically i have a number of button left-aligned in the right part of the
split window and
they are placed vertically with a small gap in between (border). This is
working but then
i would want to add a combobox next to button 1 and saya textcontrol to
button 2.
A gridresizer would work if i would be able to specify what row and column
the component
would have to be in but there doesn't seem to be such a method.
Only sollution i can think of is adding the coordinates of where i want to
component to come.
Is there another sollution as i read that it's best not to add components by
specifying an x
and y value.

Thanks

============== Working snippet below =============== ========
from wxPython.wx import *
import sys, os

ID_ABOUT=100
ID_EXIT=101

ID_BUTTON_CONNE CT=200
ID_BUTTON_CHECK =201
ID_BUTTON_CONNE CTIONS=202
ID_BUTTON_SEND= 203
ID_BUTTON_HELP= 204
ID_BUTTON_EXIT= 205

class MainWindow(wxFr ame):
def __init__(self, parent, id, title):
wxFrame.__init_ _(self,parent,i d,title, style=wxDEFAULT _FRAME_STYLE|
wxNO_FULL_REPAI NT_ON_RESIZE)

self.split_wind ow = wxSplitterWindo w(self, -1)
self.button_pan e = wxPanel(self.sp lit_window, -1,
style=wxTAB_TRA VERSAL|wxNO_FUL L_REPAINT_ON_RE SIZE)

self.logging_sc reen = wxTextCtrl(self .split_window, -1, "",
style=wxTE_MULT ILINE|wxHSCROLL )
#self.html_wind ow = new wxHtmlWindow( self )

self.connect = wxButton(self.b utton_pane, ID_BUTTON_CONNE CT,
"connect")
self.check = wxButton(self.b utton_pane, ID_BUTTON_CHECK , "check")
self.connection s = wxButton(self.b utton_pane, ID_BUTTON_CONNE CTIONS,
"connection s")
self.send = wxButton(self.b utton_pane, ID_BUTTON_SEND, "send")
self.help = wxButton(self.b utton_pane, ID_BUTTON_HELP, "help")
self.exit = wxButton(self.b utton_pane, ID_BUTTON_EXIT, "exit")

#make the combobox for the connections
sampleList = ['zero', 'one', 'two', 'three', 'four', 'five',
#'this is a long item that needs a scrollbar...',
'six', 'seven', 'eight']

self.cb = wxComboBox(
self.button_pan e, 500, "default value", (90, 50),
(95, -1), sampleList, wxCB_DROPDOWN #|wxTE_PROCESS_ ENTER
)

# Menu Bar
self.frame_1_me nubar = wxMenuBar()
self.SetMenuBar (self.frame_1_m enubar)
self.File = wxMenu()
self.File.Appen d( ID_ABOUT, "&About", "About CheckServer Client" )
self.File.Appen dSeparator()
self.File.Appen d( ID_EXIT, "E&xit", "Leave the application" )
self.frame_1_me nubar.Append(se lf.File, "F&ile")
EVT_MENU(self, ID_ABOUT, self.OnAbout)
EVT_MENU(self, ID_EXIT, self.OnExit)

# Menu Bar end

self.statusbar = self.CreateStat usBar(1, wxST_SIZEGRIP)

self.__set_prop erties()
self.__do_layou t()
self.Show(true)

# end wxGlade

def __set_propertie s(self):
# begin wxGlade: MyFrame.__set_p roperties
self.SetTitle(" CheckServer Client")

_icon = wxEmptyIcon()
_icon.CopyFromB itmap(wxBitmap( "D:\\temp\\1ani pt1c.gif",
wxBITMAP_TYPE_A NY))
self.SetIcon(_i con)
self.SetSize((7 23, 533))
self.SetFocus()

self.logging_sc reen.SetBackgro undColour(wxCol our(247, 255, 159))
self.logging_sc reen.SetFont(wx Font(10, wxMODERN, wxNORMAL, wxNORMAL,
0, "Century Gothic"))
self.logging_sc reen.SetToolTip String("Here you'll see the result of
the commands you issue to the server")
self.logging_sc reen.SetDefault Style(wxTextAtt r(wxColour(255, 0,0)))
self.logging_sc reen.AppendText ("Red text\n");
self.logging_sc reen.AppendText ("<span>Test </span>\n");
self.logging_sc reen.Enable(0)

self.connect.Se tSize((110, 28))
self.connect.Se tBackgroundColo ur(wxColour(143 , 188, 143))
self.connect.Se tFont(wxFont(10 , wxMODERN, wxNORMAL, wxNORMAL, 0,
"Arial Black"))
self.connect.Se tToolTipString( "Connect to a server")
self.connect.Se tFocus()

self.check.SetS ize((110, 28))
self.check.SetB ackgroundColour (wxColour(143, 188, 143))
self.check.SetF ont(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0,
"Arial Black"))
self.check.SetT oolTipString("C heck server directories")
self.check.Enab le(0)

self.connection s.SetSize((110, 28))
self.connection s.SetBackground Colour(wxColour (143, 188, 143))
self.connection s.SetFont(wxFon t(10, wxMODERN, wxNORMAL, wxNORMAL, 0,
"Arial Black"))
self.connection s.SetToolTipStr ing("What connections are active")
self.connection s.Enable(0)

self.send.SetSi ze((110, 28))
self.send.SetBa ckgroundColour( wxColour(143, 188, 143))
self.send.SetFo nt(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Arial
Black"))
self.send.SetTo olTipString("Se nd a file from the server to local
pc")
self.send.Enabl e(0)

self.help.SetSi ze((110, 28))
self.help.SetBa ckgroundColour( wxColour(143, 188, 143))
self.help.SetFo nt(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Arial
Black"))
self.help.SetTo olTipString("Di splay help options (command line)")

self.exit.SetSi ze((110, 28))
self.exit.SetBa ckgroundColour( wxColour(143, 188, 143))
self.exit.SetFo nt(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Arial
Black"))
self.exit.SetTo olTipString("Ex it the application")

self.button_pan e.SetFocus()
self.button_pan e.SetBackground Colour(wxBLUE)
self.statusbar. SetStatusWidths ([-1])
self.split_wind ow.SetMinimumPa neSize(20)

# statusbar fields
statusbar_field s = ["CheckServe r"]
for i in range(len(statu sbar_fields)):
self.statusbar. SetStatusText(s tatusbar_fields[i], i)

# end wxGlade

def __do_layout(sel f):
# begin wxGlade: MyFrame.__do_la yout
split_window_si zer = wxBoxSizer(wxVE RTICAL)

button_pane_siz er = wxBoxSizer(wxVE RTICAL)
button_pane_siz er.Add(self.con nect, 0, wxALL, 2)
button_pane_siz er.Add(self.che ck, 0, wxALL, 2)
button_pane_siz er.Add(self.con nections, 0, wxALL, 2)
button_pane_siz er.Add(self.sen d, 0, wxALL, 2)
button_pane_siz er.Add(self.hel p, 0, wxALL, 2)
button_pane_siz er.Add(self.exi t, 0, wxALL, 2)
button_pane_siz er.Add(self.cb, 0, wxALL, 2)
self.button_pan e.SetAutoLayout (1)
self.button_pan e.SetSizer(butt on_pane_sizer)
button_pane_siz er.Fit(self.but ton_pane)
button_pane_siz er.SetSizeHints (self.button_pa ne)
self.split_wind ow.SplitVertica lly(self.loggin g_screen,
self.button_pan e)
split_window_si zer.Add(self.sp lit_window, 1, wxEXPAND, 0)
self.SetAutoLay out(1)
self.SetSizer(s plit_window_siz er)
self.Layout()
self.Centre()
# end wxGlade

def OnAbout(self,e) :
d= wxMessageDialog ( self, " A sample editor \n"
" in wxPython","Abou t Sample Editor", wxOK)
# Create a message dialog box
d.ShowModal() # Shows it
d.Destroy() # finally destroy it when finished.

def OnExit(self,e):
self.Close(true ) # Close the frame.

# end of class MyFrame
class App(wxApp):
def OnInit(self):
wxInitAllImageH andlers()
main_window = MainWindow(None , -1, "CheckServe r Client")
self.SetTopWind ow(main_window)
return true

# end of class App

app = App(0)
app.MainLoop()
Jul 18 '05 #1
1 2061
Check out Dabo (www.dabodev.com); they are creating an IDE for wxPython that
uses direct placement. It's still young, but does work.

--

"flupke" <fl****@nonexis tingdomain.com> wrote in message
news:lp******** *************@h estia.telenet-ops.be...
Hi,

i'm trying to convert my java console app to a python gui.
Now, the only problem i seem to have at the moment are the resizers
for the layout. It seems that for the purpose of what i'm trying to do,
specifying the coordinates is easier that fighting with the layout resizers.
1) I have a screen split in 2. Left side is a textcontrol where logging will end up. All text will be appended to the textcontrol. Ideally this should
allow html tags but the wxHtmlWindow doesn't seem to support just adding
text. Only workaround that i can think off is to maintain a list of message myself
and then i could set those every time something changes but i don't really
like this as on every change, the whole textcontrol will be refilled.
The reason for html is to easily adjust text from one colour to another and for
instance some basic formatting like bold, italic etc.
Any ideas?

2) (view with for instance with courier)
-----------------------------------------------
| TextControl | ________ |
| ||________| Combobox |
| | |
| | ________ |
| ||________| |
| | |
| | ________ |
| ||________| Textcontrol |
| | |
-----------------------------------------------

Basically i have a number of button left-aligned in the right part of the
split window and
they are placed vertically with a small gap in between (border). This is
working but then
i would want to add a combobox next to button 1 and saya textcontrol to
button 2.
A gridresizer would work if i would be able to specify what row and column
the component
would have to be in but there doesn't seem to be such a method.
Only sollution i can think of is adding the coordinates of where i want to component to come.
Is there another sollution as i read that it's best not to add components by specifying an x
and y value.

Thanks

============== Working snippet below =============== ========
from wxPython.wx import *
import sys, os

ID_ABOUT=100
ID_EXIT=101

ID_BUTTON_CONNE CT=200
ID_BUTTON_CHECK =201
ID_BUTTON_CONNE CTIONS=202
ID_BUTTON_SEND= 203
ID_BUTTON_HELP= 204
ID_BUTTON_EXIT= 205

class MainWindow(wxFr ame):
def __init__(self, parent, id, title):
wxFrame.__init_ _(self,parent,i d,title, style=wxDEFAULT _FRAME_STYLE| wxNO_FULL_REPAI NT_ON_RESIZE)

self.split_wind ow = wxSplitterWindo w(self, -1)
self.button_pan e = wxPanel(self.sp lit_window, -1,
style=wxTAB_TRA VERSAL|wxNO_FUL L_REPAINT_ON_RE SIZE)

self.logging_sc reen = wxTextCtrl(self .split_window, -1, "",
style=wxTE_MULT ILINE|wxHSCROLL )
#self.html_wind ow = new wxHtmlWindow( self )

self.connect = wxButton(self.b utton_pane, ID_BUTTON_CONNE CT,
"connect")
self.check = wxButton(self.b utton_pane, ID_BUTTON_CHECK , "check")
self.connection s = wxButton(self.b utton_pane, ID_BUTTON_CONNE CTIONS, "connection s")
self.send = wxButton(self.b utton_pane, ID_BUTTON_SEND, "send")
self.help = wxButton(self.b utton_pane, ID_BUTTON_HELP, "help")
self.exit = wxButton(self.b utton_pane, ID_BUTTON_EXIT, "exit")

#make the combobox for the connections
sampleList = ['zero', 'one', 'two', 'three', 'four', 'five',
#'this is a long item that needs a scrollbar...',
'six', 'seven', 'eight']

self.cb = wxComboBox(
self.button_pan e, 500, "default value", (90, 50),
(95, -1), sampleList, wxCB_DROPDOWN #|wxTE_PROCESS_ ENTER
)

# Menu Bar
self.frame_1_me nubar = wxMenuBar()
self.SetMenuBar (self.frame_1_m enubar)
self.File = wxMenu()
self.File.Appen d( ID_ABOUT, "&About", "About CheckServer Client" )
self.File.Appen dSeparator()
self.File.Appen d( ID_EXIT, "E&xit", "Leave the application" )
self.frame_1_me nubar.Append(se lf.File, "F&ile")
EVT_MENU(self, ID_ABOUT, self.OnAbout)
EVT_MENU(self, ID_EXIT, self.OnExit)

# Menu Bar end

self.statusbar = self.CreateStat usBar(1, wxST_SIZEGRIP)

self.__set_prop erties()
self.__do_layou t()
self.Show(true)

# end wxGlade

def __set_propertie s(self):
# begin wxGlade: MyFrame.__set_p roperties
self.SetTitle(" CheckServer Client")

_icon = wxEmptyIcon()
_icon.CopyFromB itmap(wxBitmap( "D:\\temp\\1ani pt1c.gif",
wxBITMAP_TYPE_A NY))
self.SetIcon(_i con)
self.SetSize((7 23, 533))
self.SetFocus()

self.logging_sc reen.SetBackgro undColour(wxCol our(247, 255, 159))
self.logging_sc reen.SetFont(wx Font(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Century Gothic"))
self.logging_sc reen.SetToolTip String("Here you'll see the result of the commands you issue to the server")
self.logging_sc reen.SetDefault Style(wxTextAtt r(wxColour(255, 0,0)))
self.logging_sc reen.AppendText ("Red text\n");
self.logging_sc reen.AppendText ("<span>Test </span>\n");
self.logging_sc reen.Enable(0)

self.connect.Se tSize((110, 28))
self.connect.Se tBackgroundColo ur(wxColour(143 , 188, 143))
self.connect.Se tFont(wxFont(10 , wxMODERN, wxNORMAL, wxNORMAL, 0,
"Arial Black"))
self.connect.Se tToolTipString( "Connect to a server")
self.connect.Se tFocus()

self.check.SetS ize((110, 28))
self.check.SetB ackgroundColour (wxColour(143, 188, 143))
self.check.SetF ont(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0,
"Arial Black"))
self.check.SetT oolTipString("C heck server directories")
self.check.Enab le(0)

self.connection s.SetSize((110, 28))
self.connection s.SetBackground Colour(wxColour (143, 188, 143))
self.connection s.SetFont(wxFon t(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Arial Black"))
self.connection s.SetToolTipStr ing("What connections are active")
self.connection s.Enable(0)

self.send.SetSi ze((110, 28))
self.send.SetBa ckgroundColour( wxColour(143, 188, 143))
self.send.SetFo nt(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Arial Black"))
self.send.SetTo olTipString("Se nd a file from the server to local
pc")
self.send.Enabl e(0)

self.help.SetSi ze((110, 28))
self.help.SetBa ckgroundColour( wxColour(143, 188, 143))
self.help.SetFo nt(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Arial Black"))
self.help.SetTo olTipString("Di splay help options (command line)")

self.exit.SetSi ze((110, 28))
self.exit.SetBa ckgroundColour( wxColour(143, 188, 143))
self.exit.SetFo nt(wxFont(10, wxMODERN, wxNORMAL, wxNORMAL, 0, "Arial Black"))
self.exit.SetTo olTipString("Ex it the application")

self.button_pan e.SetFocus()
self.button_pan e.SetBackground Colour(wxBLUE)
self.statusbar. SetStatusWidths ([-1])
self.split_wind ow.SetMinimumPa neSize(20)

# statusbar fields
statusbar_field s = ["CheckServe r"]
for i in range(len(statu sbar_fields)):
self.statusbar. SetStatusText(s tatusbar_fields[i], i)

# end wxGlade

def __do_layout(sel f):
# begin wxGlade: MyFrame.__do_la yout
split_window_si zer = wxBoxSizer(wxVE RTICAL)

button_pane_siz er = wxBoxSizer(wxVE RTICAL)
button_pane_siz er.Add(self.con nect, 0, wxALL, 2)
button_pane_siz er.Add(self.che ck, 0, wxALL, 2)
button_pane_siz er.Add(self.con nections, 0, wxALL, 2)
button_pane_siz er.Add(self.sen d, 0, wxALL, 2)
button_pane_siz er.Add(self.hel p, 0, wxALL, 2)
button_pane_siz er.Add(self.exi t, 0, wxALL, 2)
button_pane_siz er.Add(self.cb, 0, wxALL, 2)
self.button_pan e.SetAutoLayout (1)
self.button_pan e.SetSizer(butt on_pane_sizer)
button_pane_siz er.Fit(self.but ton_pane)
button_pane_siz er.SetSizeHints (self.button_pa ne)
self.split_wind ow.SplitVertica lly(self.loggin g_screen,
self.button_pan e)
split_window_si zer.Add(self.sp lit_window, 1, wxEXPAND, 0)
self.SetAutoLay out(1)
self.SetSizer(s plit_window_siz er)
self.Layout()
self.Centre()
# end wxGlade

def OnAbout(self,e) :
d= wxMessageDialog ( self, " A sample editor \n"
" in wxPython","Abou t Sample Editor", wxOK)
# Create a message dialog box
d.ShowModal() # Shows it
d.Destroy() # finally destroy it when finished.

def OnExit(self,e):
self.Close(true ) # Close the frame.

# end of class MyFrame
class App(wxApp):
def OnInit(self):
wxInitAllImageH andlers()
main_window = MainWindow(None , -1, "CheckServe r Client")
self.SetTopWind ow(main_window)
return true

# end of class App

app = App(0)
app.MainLoop()

Jul 18 '05 #2

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

Similar topics

8
2267
by: flupke | last post by:
Hi, i'm trying to get boa constructor working with Python 2.3.4 At first i tried with boa 0.2.3 but that gave me an error. After searching the web, it appeared that it's best to work with the CVS version. Well, i checked that version out and moved it to C:\Python23\Lib\site-packages\wxPython\tools\boa When i then try to run it "python boa.py" it gives me this output (windows 2000):
25
3342
by: BJörn Lindqvist | last post by:
See: http://www.wxpython.org/quotes.php. especially: "wxPython is the best and most mature cross-platform GUI toolkit, given a number of constraints. The only reason wxPython isn't the standard Python GUI toolkit is that Tkinter was there first." - Guido van Rossum Guess, that answers my question, but isn't "Tkinter was there first" a very bad answer? :) It is kinda ugly too, so I wonder why it can't be replaced? Or maybe another GUI...
2
10555
by: Donald Firesmith | last post by:
I am having trouble having Google Adsense code stored in XSL converted properly into HTML. The <> unfortunately become &lt; and &gt; and then no longer work. XSL code is: <script type="text/javascript"> <!]> </script> <script type="text/javascript"
72
5388
by: Mel | last post by:
Are we going backwards ? (please excuse my spelling...) In my opinion an absolute YES ! Take a look at what we are doing ! we create TAGS, things like <H1> etc. and although there are tools (dreamweaver and the like), they are all at the lowest level of programming (something like assembly as oposed to C++ etc.). These tools create "brain-dead" developers that constantly have to plough through tons of tags to do the simplest thing. ...
7
2519
by: Rich Grise | last post by:
OK, I don't know if this is Off-Topic for the group(s), because "QT" isn't "Pure C++", and Slackware is a distro, but those guys are sharp. :-) And I've crossposted to sci.electroncs.design because I can. ;-P Anyways, I want to crow about what I've done. I've been dabbling, kind of poking away at the QT tutorials, but when I get to the "Now, write some C++ to make it all go", I kinda hit a railroad crossing. ;-) So, I downloaded...
14
5919
by: Arne | last post by:
A lot of Firefox users I know, says they have problems with validation where the ampersand sign has to be written as &amp; to be valid. I don't have Firefox my self and don't wont to install it only because of this, so I hope some of you gurus can enlighten me with this :) In what circumstances can the "&amp;" in the source code be involuntary changed to "&" by a browser when or other software, when editing and uploading the file to the web...
0
5557
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted ******************************************************** For this teeny job, please refer to: http://feeds.reddit.com/feed/8fu/?o=25
7
5345
by: bhavin30 | last post by:
Is there a way to obtain user information (using LOGON_USER server variables) when you have set up the security to Anonymous Access? I have tried setting the security to both Anonymous + Window Integrated, without any luck. I'm using IIS 6.0 on Windows Server 2003 Thanks in advance!
1
2032
by: Sarvesh1989 | last post by:
I have one main div & in that main div i have included 2 differrent div it show good result in firefox but in ie it doesn't show that same result div just get one above the other.plz do help me. my ccs is: /* General elements */ body {
0
8670
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
8613
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...
0
8469
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
7150
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
6106
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
4074
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
2602
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
1778
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1473
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.