473,738 Members | 1,949 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Running Forms

Hi,
Both the methods below open up a windows form called MasterForm. However, one works better than the other. Method 1 opens the form correctly but I don't have any reference to the instance of master form. Method 2 opens the form but when I right click on the Notify Icon I don't get the context menu that I should be seeing. I can interact with the main form window but I cannot interact with the NotifyIcon. Method 2 gives a object reference that I require (masterForm) where as method 1 doesn't.
Any Ideas Anyone?

Method 1:
class FormHandler
{
public void ShowForm()
{
Application.Run (new MasterForm());
}
}

Method 2:
class FormHandler
{
private static MasterForm masterForm = new MasterForm();

public void ShowForm()
{
Application.Run (masterForm);
}
}

Thanx Josh

Nov 15 '05 #1
3 2287
What NotifyIcon? Since we don't know how your form is coded, we'll need more information (like revelant parts of source code).

-mike
MVP
"Joshua Russell" <jo**@ojmyster. uk.eu.org> wrote in message news:Ou******** ******@TK2MSFTN GP11.phx.gbl...
Hi,
Both the methods below open up a windows form called MasterForm. However, one works better than the other. Method 1 opens the form correctly but I don't have any reference to the instance of master form. Method 2 opens the form but when I right click on the Notify Icon I don't get the context menu that I should be seeing. I can interact with the main form window but I cannot interact with the NotifyIcon. Method 2 gives a object reference that I require (masterForm) where as method 1 doesn't.
Any Ideas Anyone?

Method 1:
class FormHandler
{
public void ShowForm()
{
Application.Run (new MasterForm());
}
}

Method 2:
class FormHandler
{
private static MasterForm masterForm = new MasterForm();

public void ShowForm()
{
Application.Run (masterForm);
}
}

Thanx Josh

Nov 15 '05 #2
using System;
using System.Drawing;
using System.Collecti ons;
using System.Componen tModel;
using System.Windows. Forms;

namespace Threading_Serve r_WF
{
/// <summary>
/// Summary description for Master.
/// </summary>
public class MasterForm : System.Windows. Forms.Form
{
private System.Windows. Forms.PictureBo x pictureBox1;
private System.Windows. Forms.Label label1;
private System.Windows. Forms.Label label2;
private System.Windows. Forms.NotifyIco n notifyIcon1;
private System.Windows. Forms.MainMenu mainMenu1;
private System.Windows. Forms.MenuItem menuItem1;
private System.Windows. Forms.MenuItem menuItem2;
private System.Windows. Forms.MenuItem menuItem3;
private System.Windows. Forms.ContextMe nu notifyContext;
private System.Windows. Forms.MenuItem menuItem4;
private System.Windows. Forms.MenuItem menuItem5;
private System.Windows. Forms.Label label3;
private System.Componen tModel.IContain er components;

public MasterForm()
{
//
// Required for Windows Form Designer support
//
InitializeCompo nent();

//
// TODO: Add any constructor code after InitializeCompo nent call
//
}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Disp ose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.components = new System.Componen tModel.Containe r();
System.Resource s.ResourceManag er resources = new System.Resource s.ResourceManag er(typeof(Maste rForm));
this.pictureBox 1 = new System.Windows. Forms.PictureBo x();
this.label1 = new System.Windows. Forms.Label();
this.label2 = new System.Windows. Forms.Label();
this.notifyIcon 1 = new System.Windows. Forms.NotifyIco n(this.componen ts);
this.notifyCont ext = new System.Windows. Forms.ContextMe nu();
this.menuItem4 = new System.Windows. Forms.MenuItem( );
this.menuItem5 = new System.Windows. Forms.MenuItem( );
this.mainMenu1 = new System.Windows. Forms.MainMenu( );
this.menuItem1 = new System.Windows. Forms.MenuItem( );
this.menuItem2 = new System.Windows. Forms.MenuItem( );
this.menuItem3 = new System.Windows. Forms.MenuItem( );
this.label3 = new System.Windows. Forms.Label();
this.SuspendLay out();
//
// pictureBox1
//
this.pictureBox 1.Image = ((System.Drawin g.Bitmap)(resou rces.GetObject( "pictureBox1.Im age")));
this.pictureBox 1.Location = new System.Drawing. Point(8, 8);
this.pictureBox 1.Name = "pictureBox 1";
this.pictureBox 1.Size = new System.Drawing. Size(48, 48);
this.pictureBox 1.TabIndex = 0;
this.pictureBox 1.TabStop = false;
//
// label1
//
this.label1.Fon t = new System.Drawing. Font("Microsoft Sans Serif", 8.25F, System.Drawing. FontStyle.Regul ar, System.Drawing. GraphicsUnit.Po int, ((System.Byte)( 0)));
this.label1.Loc ation = new System.Drawing. Point(80, 16);
this.label1.Nam e = "label1";
this.label1.Siz e = new System.Drawing. Size(80, 16);
this.label1.Tab Index = 1;
this.label1.Tex t = "Mithril Server";
//
// label2
//
this.label2.Loc ation = new System.Drawing. Point(80, 32);
this.label2.Nam e = "label2";
this.label2.Siz e = new System.Drawing. Size(88, 16);
this.label2.Tab Index = 2;
this.label2.Tex t = "Version 1.0 Beta";
//
// notifyIcon1
//
this.notifyIcon 1.ContextMenu = this.notifyCont ext;
this.notifyIcon 1.Icon = ((System.Drawin g.Icon)(resourc es.GetObject("n otifyIcon1.Icon ")));
this.notifyIcon 1.Text = "Mithril Server";
this.notifyIcon 1.Visible = true;
this.notifyIcon 1.DoubleClick += new System.EventHan dler(this.notif yIcon1_DoubleCl ick);
//
// notifyContext
//
this.notifyCont ext.MenuItems.A ddRange(new System.Windows. Forms.MenuItem[] {
this.menuItem4,
this.menuItem5} );
//
// menuItem4
//
this.menuItem4. Index = 0;
this.menuItem4. Text = "Show Info";
this.menuItem4. Click += new System.EventHan dler(this.notif yIcon1_DoubleCl ick);
//
// menuItem5
//
this.menuItem5. Index = 1;
this.menuItem5. Text = "Close Server";
this.menuItem5. Click += new System.EventHan dler(this.menuI tem3_Click);
//
// mainMenu1
//
this.mainMenu1. MenuItems.AddRa nge(new System.Windows. Forms.MenuItem[] {
this.menuItem1} );
//
// menuItem1
//
this.menuItem1. Index = 0;
this.menuItem1. MenuItems.AddRa nge(new System.Windows. Forms.MenuItem[] {
this.menuItem2,
this.menuItem3} );
this.menuItem1. Text = "Main";
//
// menuItem2
//
this.menuItem2. Index = 0;
this.menuItem2. Text = "Hide";
this.menuItem2. Click += new System.EventHan dler(this.menuI tem2_Click);
//
// menuItem3
//
this.menuItem3. Index = 1;
this.menuItem3. Text = "Close Server";
this.menuItem3. Click += new System.EventHan dler(this.menuI tem3_Click);
//
// label3
//
this.label3.Loc ation = new System.Drawing. Point(80, 56);
this.label3.Nam e = "label3";
this.label3.Siz e = new System.Drawing. Size(104, 16);
this.label3.Tab Index = 3;
this.label3.Tex t = "Active Sessions: 0";
//
// MasterForm
//
this.AutoScaleB aseSize = new System.Drawing. Size(5, 13);
this.ClientSize = new System.Drawing. Size(208, 83);
this.Controls.A ddRange(new System.Windows. Forms.Control[] {
this.label3,
this.label2,
this.label1,
this.pictureBox 1});
this.FormBorder Style = System.Windows. Forms.FormBorde rStyle.FixedDia log;
this.Icon = ((System.Drawin g.Icon)(resourc es.GetObject("$ this.Icon")));
this.MaximizeBo x = false;
this.Menu = this.mainMenu1;
this.Name = "MasterForm ";
this.ShowInTask bar = false;
this.Text = "Mithril Server";
this.Activated += new System.EventHan dler(this.Maste rForm_Activated );
this.ResumeLayo ut(false);

}
#endregion

protected override void WndProc(ref System.Windows. Forms.Message m)
{
if(m.Msg != 0x0010)
{
base.WndProc(re f m);
}
else
{
this.WindowStat e = FormWindowState .Minimized;
}
}

private void notifyIcon1_Dou bleClick(object sender, System.EventArg s e)
{
// Show the form when the user double clicks on the notify icon.

// Set the WindowState to normal if the form is minimized.
if (this.WindowSta te == FormWindowState .Minimized)
this.WindowStat e = FormWindowState .Normal;

// Activate the form.
this.Activate() ;
}

private void menuItem2_Click (object sender, System.EventArg s e)
{
this.WindowStat e = FormWindowState .Minimized;
}

private void menuItem3_Click (object sender, System.EventArg s e)
{
// Clearup
this.notifyIcon 1.Visible = false;

// Exit
Environment.Exi t(0);
}

private void MasterForm_Acti vated(object sender, System.EventArg s e)
{
WorkerThreadHan dler threadHandler = new WorkerThreadHan dler();
int count = threadHandler.s essionCount();
this.label3.Tex t = "Active Sessions: " + count.ToString( );
}
}
/// <summary>
/// Summary description for Master.
/// </summary>
public class MasterForm : System.Windows. Forms.Form
{
private System.Windows. Forms.PictureBo x pictureBox1;
private System.Windows. Forms.Label label1;
private System.Windows. Forms.Label label2;
private System.Windows. Forms.NotifyIco n notifyIcon1;
private System.Windows. Forms.MainMenu mainMenu1;
private System.Windows. Forms.MenuItem menuItem1;
private System.Windows. Forms.MenuItem menuItem2;
private System.Windows. Forms.MenuItem menuItem3;
private System.Windows. Forms.ContextMe nu notifyContext;
private System.Windows. Forms.MenuItem menuItem4;
private System.Windows. Forms.MenuItem menuItem5;
private System.Windows. Forms.Label label3;
private System.Componen tModel.IContain er components;

public MasterForm()
{
//
// Required for Windows Form Designer support
//
InitializeCompo nent();

//
// TODO: Add any constructor code after InitializeCompo nent call
//
}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Disp ose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.components = new System.Componen tModel.Containe r();
System.Resource s.ResourceManag er resources = new System.Resource s.ResourceManag er(typeof(Maste rForm));
this.pictureBox 1 = new System.Windows. Forms.PictureBo x();
this.label1 = new System.Windows. Forms.Label();
this.label2 = new System.Windows. Forms.Label();
this.notifyIcon 1 = new System.Windows. Forms.NotifyIco n(this.componen ts);
this.notifyCont ext = new System.Windows. Forms.ContextMe nu();
this.menuItem4 = new System.Windows. Forms.MenuItem( );
this.menuItem5 = new System.Windows. Forms.MenuItem( );
this.mainMenu1 = new System.Windows. Forms.MainMenu( );
this.menuItem1 = new System.Windows. Forms.MenuItem( );
this.menuItem2 = new System.Windows. Forms.MenuItem( );
this.menuItem3 = new System.Windows. Forms.MenuItem( );
this.label3 = new System.Windows. Forms.Label();
this.SuspendLay out();
//
// pictureBox1
//
this.pictureBox 1.Image = ((System.Drawin g.Bitmap)(resou rces.GetObject( "pictureBox1.Im age")));
this.pictureBox 1.Location = new System.Drawing. Point(8, 8);
this.pictureBox 1.Name = "pictureBox 1";
this.pictureBox 1.Size = new System.Drawing. Size(48, 48);
this.pictureBox 1.TabIndex = 0;
this.pictureBox 1.TabStop = false;
//
// label1
//
this.label1.Fon t = new System.Drawing. Font("Microsoft Sans Serif", 8.25F, System.Drawing. FontStyle.Regul ar, System.Drawing. GraphicsUnit.Po int, ((System.Byte)( 0)));
this.label1.Loc ation = new System.Drawing. Point(80, 16);
this.label1.Nam e = "label1";
this.label1.Siz e = new System.Drawing. Size(80, 16);
this.label1.Tab Index = 1;
this.label1.Tex t = "Mithril Server";
//
// label2
//
this.label2.Loc ation = new System.Drawing. Point(80, 32);
this.label2.Nam e = "label2";
this.label2.Siz e = new System.Drawing. Size(88, 16);
this.label2.Tab Index = 2;
this.label2.Tex t = "Version 1.0 Beta";
//
// notifyIcon1
//
this.notifyIcon 1.ContextMenu = this.notifyCont ext;
this.notifyIcon 1.Icon = ((System.Drawin g.Icon)(resourc es.GetObject("n otifyIcon1.Icon ")));
this.notifyIcon 1.Text = "Mithril Server";
this.notifyIcon 1.Visible = true;
this.notifyIcon 1.DoubleClick += new System.EventHan dler(this.notif yIcon1_DoubleCl ick);
//
// notifyContext
//
this.notifyCont ext.MenuItems.A ddRange(new System.Windows. Forms.MenuItem[] {
this.menuItem4,
this.menuItem5} );
//
// menuItem4
//
this.menuItem4. Index = 0;
this.menuItem4. Text = "Show Info";
this.menuItem4. Click += new System.EventHan dler(this.notif yIcon1_DoubleCl ick);
//
// menuItem5
//
this.menuItem5. Index = 1;
this.menuItem5. Text = "Close Server";
this.menuItem5. Click += new System.EventHan dler(this.menuI tem3_Click);
//
// mainMenu1
//
this.mainMenu1. MenuItems.AddRa nge(new System.Windows. Forms.MenuItem[] {
this.menuItem1} );
//
// menuItem1
//
this.menuItem1. Index = 0;
this.menuItem1. MenuItems.AddRa nge(new System.Windows. Forms.MenuItem[] {
this.menuItem2,
this.menuItem3} );
this.menuItem1. Text = "Main";
//
// menuItem2
//
this.menuItem2. Index = 0;
this.menuItem2. Text = "Hide";
this.menuItem2. Click += new System.EventHan dler(this.menuI tem2_Click);
//
// menuItem3
//
this.menuItem3. Index = 1;
this.menuItem3. Text = "Close Server";
this.menuItem3. Click += new System.EventHan dler(this.menuI tem3_Click);
//
// label3
//
this.label3.Loc ation = new System.Drawing. Point(80, 56);
this.label3.Nam e = "label3";
this.label3.Siz e = new System.Drawing. Size(104, 16);
this.label3.Tab Index = 3;
this.label3.Tex t = "Active Sessions: 0";
//
// MasterForm
//
this.AutoScaleB aseSize = new System.Drawing. Size(5, 13);
this.ClientSize = new System.Drawing. Size(208, 83);
this.Controls.A ddRange(new System.Windows. Forms.Control[] {
this.label3,
this.label2,
this.label1,
this.pictureBox 1});
this.FormBorder Style = System.Windows. Forms.FormBorde rStyle.FixedDia log;
this.Icon = ((System.Drawin g.Icon)(resourc es.GetObject("$ this.Icon")));
this.MaximizeBo x = false;
this.Menu = this.mainMenu1;
this.Name = "MasterForm ";
this.ShowInTask bar = false;
this.Text = "Mithril Server";
this.Activated += new System.EventHan dler(this.Maste rForm_Activated );
this.ResumeLayo ut(false);

}
#endregion

protected override void WndProc(ref System.Windows. Forms.Message m)
{
if(m.Msg != 0x0010)
{
base.WndProc(re f m);
}
else
{
this.WindowStat e = FormWindowState .Minimized;
}
}

private void notifyIcon1_Dou bleClick(object sender, System.EventArg s e)
{
// Show the form when the user double clicks on the notify icon.

// Set the WindowState to normal if the form is minimized.
if (this.WindowSta te == FormWindowState .Minimized)
this.WindowStat e = FormWindowState .Normal;

// Activate the form.
this.Activate() ;
}

private void menuItem2_Click (object sender, System.EventArg s e)
{
this.WindowStat e = FormWindowState .Minimized;
}

private void menuItem3_Click (object sender, System.EventArg s e)
{
// Clearup
this.notifyIcon 1.Visible = false;

// Exit
Environment.Exi t(0);
}

private void MasterForm_Acti vated(object sender, System.EventArg s e)
{
WorkerThreadHan dler threadHandler = new WorkerThreadHan dler();
int count = threadHandler.s essionCount();
this.label3.Tex t = "Active Sessions: " + count.ToString( );
}
}
}
"Michael Giagnocavo [MVP]" <mg*******@Atre vido.net> wrote in message news:ue******** ******@TK2MSFTN GP10.phx.gbl...
What NotifyIcon? Since we don't know how your form is coded, we'll need more information (like revelant parts of source code).

-mike
MVP
"Joshua Russell" <jo**@ojmyster. uk.eu.org> wrote in message news:Ou******** ******@TK2MSFTN GP11.phx.gbl...
Hi,
Both the methods below open up a windows form called MasterForm. However, one works better than the other. Method 1 opens the form correctly but I don't have any reference to the instance of master form. Method 2 opens the form but when I right click on the Notify Icon I don't get the context menu that I should be seeing. I can interact with the main form window but I cannot interact with the NotifyIcon. Method 2 gives a object reference that I require (masterForm) where as method 1 doesn't.
Any Ideas Anyone?

Method 1:
class FormHandler
{
public void ShowForm()
{
Application.Run (new MasterForm());
}
}

Method 2:
class FormHandler
{
private static MasterForm masterForm = new MasterForm();

public void ShowForm()
{
Application.Run (masterForm);
}
}

Thanx Josh

Nov 15 '05 #3
Sorry, I meant *relevant* parts of source code. Can you show us your problem without pasting 451 lines of code?

-mike
MVP
"Joshua Russell" <jo**@ojmyster. uk.eu.org> wrote in message news:eF******** ******@TK2MSFTN GP09.phx.gbl...
using System;

<snip>

}
"Michael Giagnocavo [MVP]" <mg*******@Atre vido.net> wrote in message news:ue******** ******@TK2MSFTN GP10.phx.gbl...
What NotifyIcon? Since we don't know how your form is coded, we'll need more information (like revelant parts of source code).

-mike
MVP
"Joshua Russell" <jo**@ojmyster. uk.eu.org> wrote in message news:Ou******** ******@TK2MSFTN GP11.phx.gbl...
Hi,
Both the methods below open up a windows form called MasterForm. However, one works better than the other. Method 1 opens the form correctly but I don't have any reference to the instance of master form. Method 2 opens the form but when I right click on the Notify Icon I don't get the context menu that I should be seeing. I can interact with the main form window but I cannot interact with the NotifyIcon. Method 2 gives a object reference that I require (masterForm) where as method 1 doesn't.
Any Ideas Anyone?

Method 1:
class FormHandler
{
public void ShowForm()
{
Application.Run (new MasterForm());
}
}

Method 2:
class FormHandler
{
private static MasterForm masterForm = new MasterForm();

public void ShowForm()
{
Application.Run (masterForm);
}
}

Thanx Josh

Nov 15 '05 #4

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

Similar topics

1
3981
by: Eric Janzen | last post by:
This is a very frustrating problem. We have installed Developer Suite 10g on 4 machines. The Development suite is in one Oracle home directory. On the same machines we also have a 9i database installed in a different Oracle home directory. These are our development/component testing machines. On 2 of the 4 machines, when we run a form from Forms Builder, in the URL in the browser before the "C:\..." which points to the temporary html...
19
4106
by: James Fortune | last post by:
I have a lot of respect for David Fenton and Allen Browne, but I don't understand why people who know how to write code to completely replace a front end do not write something that will automate the code that implements managing unbound controls on forms given the superior performance of unbound controls in a client/server environment. I can easily understand a newbie using bound controls or someone with a tight deadline. I guess I need...
14
4913
by: Brian Keating EI9FXB | last post by:
I wonder can anyone reccomment a solution to this problem. Let me explain, I've services running on my system, my application receives diagnostic messages from these services, what i want to do is create an MDIChild window for each service that is sending messages. Ok so far so good, but I get problems if one service is constantly sending messages to it's window because, this window is very busy updating it's view, hence because it's...
15
2062
by: Joshua Kendall | last post by:
I have a script in which it keeps opening the same form instead of only one instance. I also need help with a form that has a password. Where do I put the actual password? can I use a database for multiple users? opens multiple instances of password form instead of one: Public Class Splash Inherits System.Windows.Forms.Form
2
2216
by: Jeff | last post by:
I'm getting an Object Reference error before I even run my app, and I'm not sure where to look to find the cause. I'd appreciate your help. When I open my Windows Application project, the following Microsoft Development Environment error message displays: "Object reference not set to an instance of an object." Then when I access the design view of one of my forms, the controls on
0
4753
by: question | last post by:
Hi! I have a requirement where I need to display multiple forms one after the other like a slide show. These are in the same application. Basicall on selection of a menu item it should start then clicking on any of th screens or tray icon it should stop. I tried the following (To start it on pressing escape on form1 and end it when escape is again
4
4180
by: tshad | last post by:
What would be a good way to check programmatically whether a service was running? We have a service that dies periodically and I need to check to see if this service is running. I know how to check to see if the status is in stopped or running mode. But that doesn't tell me if it is actually running. I need to know this so that if it happens I can programmatically start the same service on another machine.
9
3269
by: esakal | last post by:
Hello, I'm programming an application based on CAB infrastructure in the client side (c# .net 2005) Since my application must be sequencally, i wrote all the code in the UI thread. my problem occurs when i try to show a progress bar. The screen freezes. I know i'm not the first one to ask about it. but i'm looking
13
2948
by: Academic | last post by:
I have a MDI form, sometimes child forms and sometimes forms that are neither If I close the app the child forms closing and closed event happens followed by the Mdi form receiving the events.. But the regular forms that are also open do not receive that event. This is true whether there are child forms open or not.
0
9473
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
9334
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
9259
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
6053
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
4569
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4824
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3279
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
2744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2193
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.