how to connection sql server table with aspx like pulling data from table to
grid view.... simple example to start ....
thanks 10 2040
On "Microsoft Visual Studio 2005 Documentation" look for:
Visual Web Developer
Walkthrough: Basic Data Access in Web Pages
<Harvey Triana />
"amjad" <am***@discussions.microsoft.com> escribió en el mensaje
news:CF**********************************@microsof t.com... how to connection sql server table with aspx like pulling data from table to grid view.... simple example to start .... thanks
See if this helps and gets you started.. http://www.netomatix.com/DataGridSeries.aspx
"amjad" <am***@discussions.microsoft.com> wrote in message
news:CF**********************************@microsof t.com... how to connection sql server table with aspx like pulling data from table to grid view.... simple example to start .... thanks
I have used the link below and try to run the example
"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3"
but it giving me the error i dont have any idea whats wrong seem to be olrite
but still got error my sqlserver is on ip 10.0.0.2
here is the connection string
SqlConnection myConnection = new
SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");
SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",
myConnection);
DataSet ds = new DataSet();
myCommand.Fill(ds, "Authors");
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;
MyDataGrid.DataBind();
any one has any idea whats wrong thanks
"Juan T. Llibre" wrote: For SQL Server 2000 / ASP.NET 1.1 :
http://samples.gotdotnet.com/quickstart/aspplus/
For SQL Server 2005 / ASP.NET 2.0 :
http://asp.net/QuickStart/aspnet/doc/data/default.aspx
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "amjad" <am***@discussions.microsoft.com> wrote in message news:CF**********************************@microsof t.com... how to connection sql server table with aspx like pulling data from table to grid view.... simple example to start .... thanks
You haven't opened the connection anywhere.
amjad wrote: I have used the link below and try to run the example "http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3" but it giving me the error i dont have any idea whats wrong seem to be olrite but still got error my sqlserver is on ip 10.0.0.2 here is the connection string SqlConnection myConnection = new SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes"); SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors", myConnection);
DataSet ds = new DataSet(); myCommand.Fill(ds, "Authors");
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView; MyDataGrid.DataBind(); any one has any idea whats wrong thanks "Juan T. Llibre" wrote:
For SQL Server 2000 / ASP.NET 1.1 :
http://samples.gotdotnet.com/quickstart/aspplus/
For SQL Server 2005 / ASP.NET 2.0 :
http://asp.net/QuickStart/aspnet/doc/data/default.aspx
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "amjad" <am***@discussions.microsoft.com> wrote in message news:CF**********************************@microsof t.com... how to connection sql server table with aspx like pulling data from table to grid view.... simple example to start .... thanks
re: but still got error my sqlserver is on ip 10.0.0.2 ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");
Is the SQL Server (2000 or MSDE?) on the same computer as your web server ?
If so, use the SQL Server's instance name, not the IP, in the connection.
SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");
or
SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");
( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )
or
SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");
If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.
Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:80**********************************@microsof t.com...I have used the link below and try to run the example "http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3" but it giving me the error i dont have any idea whats wrong seem to be olrite but still got error my sqlserver is on ip 10.0.0.2 here is the connection string SqlConnection myConnection = new SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes"); SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors", myConnection);
DataSet ds = new DataSet(); myCommand.Fill(ds, "Authors");
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView; MyDataGrid.DataBind(); any one has any idea whats wrong thanks "Juan T. Llibre" wrote:
For SQL Server 2000 / ASP.NET 1.1 :
http://samples.gotdotnet.com/quickstart/aspplus/
For SQL Server 2005 / ASP.NET 2.0 :
http://asp.net/QuickStart/aspnet/doc/data/default.aspx
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "amjad" <am***@discussions.microsoft.com> wrote in message news:CF**********************************@microsof t.com... > how to connection sql server table with aspx like pulling data from table to > grid view.... simple example to start .... > thanks
forget to mention tat i am using sql server 2005
"Juan T. Llibre" wrote: re: but still got error my sqlserver is on ip 10.0.0.2 ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");
Is the SQL Server (2000 or MSDE?) on the same computer as your web server ? If so, use the SQL Server's instance name, not the IP, in the connection.
SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password"); or SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes"); ( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )
or SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");
If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "amjad" <am***@discussions.microsoft.com> wrote in message news:80**********************************@microsof t.com...I have used the link below and try to run the example "http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3" but it giving me the error i dont have any idea whats wrong seem to be olrite but still got error my sqlserver is on ip 10.0.0.2 here is the connection string SqlConnection myConnection = new SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes"); SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors", myConnection);
DataSet ds = new DataSet(); myCommand.Fill(ds, "Authors");
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView; MyDataGrid.DataBind(); any one has any idea whats wrong thanks "Juan T. Llibre" wrote:
For SQL Server 2000 / ASP.NET 1.1 :
http://samples.gotdotnet.com/quickstart/aspplus/
For SQL Server 2005 / ASP.NET 2.0 :
http://asp.net/QuickStart/aspnet/doc/data/default.aspx
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "amjad" <am***@discussions.microsoft.com> wrote in message news:CF**********************************@microsof t.com... > how to connection sql server table with aspx like pulling data from table to > grid view.... simple example to start .... > thanks
You also forgot to say whether the SQL Server 2005
is on the same computer as your web server.
Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"amjad" <am***@discussions.microsoft.com> wrote in message
news:FB**********************************@microsof t.com... forget to mention tat i am using sql server 2005
"Juan T. Llibre" wrote:
re: > but still got error my sqlserver is on ip 10.0.0.2 > ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");
Is the SQL Server (2000 or MSDE?) on the same computer as your web server ? If so, use the SQL Server's instance name, not the IP, in the connection.
SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password"); or SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes"); ( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )
or SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");
If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "amjad" <am***@discussions.microsoft.com> wrote in message news:80**********************************@microsof t.com... >I have used the link below and try to run the example > "http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3" > but it giving me the error i dont have any idea whats wrong seem to be olrite > but still got error my sqlserver is on ip 10.0.0.2 > here is the connection string > SqlConnection myConnection = new > SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes"); > SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors", > myConnection); > > DataSet ds = new DataSet(); > myCommand.Fill(ds, "Authors"); > > MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView; > MyDataGrid.DataBind(); > any one has any idea whats wrong thanks > "Juan T. Llibre" wrote: > >> For SQL Server 2000 / ASP.NET 1.1 : >> >> http://samples.gotdotnet.com/quickstart/aspplus/ >> >> For SQL Server 2005 / ASP.NET 2.0 : >> >> http://asp.net/QuickStart/aspnet/doc/data/default.aspx >> >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "amjad" <am***@discussions.microsoft.com> wrote in message >> news:CF**********************************@microsof t.com... >> > how to connection sql server table with aspx like pulling data from table to >> > grid view.... simple example to start .... >> > thanks >> >> >>
You're going to run into problems if you want to use SQL Server 2005
to run the .Net Framework SDK 1.1 data access examples.
1. You need the Pubs database. Is it installed ?
After you've downloaded and installed SQL Server 2005 Express,
if you want to install the sample Pubs and Northwind databases,
double-click the .msi version of the file from the following link: http://www.microsoft.com/downloads/d...displaylang=en
This installs two T-SQL scripts that you must run to build the databases.
You can use either the built-in SQLCMD command line tool or you can use
Query Editor from SQL Server Management Studio.
The following two command examples let you use SQLCMD
to install the sample databases to the local system:
SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instpubs.sq l"
SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instnwnd.sq l"
SQL Server Management Studio is available at : http://www.microsoft.com/downloads/d...displaylang=en
Microsoft also provides a free SQL Server Express Utility-SSEUtil.
This downloadable tool lets you list all installed instances of SQL Server Express;
connect to an instance; and create, attach, and detach databases as well as execute
SQL statements. Check out SSEUtil at: http://www.microsoft.com/downloads/d...laylang=enMake sure you bookmark this page : http://www.connectionstrings.com/Click on the SQL Server 2005 icon and then on the Sql Connection (.Net ) iconfor a bunch of connection strings for SQL Server Express 2005.Which one is the right one depends on your setup and what you want to do.Good luck!Juan T. Llibre, asp.net MVPaspnetfaq.com : http://www.aspnetfaq.com/asp.net faq : http://asp.net.do/faq/foros de asp.net, en español : http://asp.net.do/foros/==================================="amjad" <am***@discussions.microsoft.com> wrote in messagenews:FB**********************************@m icrosoft.com...> forget to mention tat i am using sql server 2005>> "Juan T. Llibre" wrote:>>> re:>> > but still got error my sqlserver is on ip 10.0.0.2>> > ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");>>>> Is the SQL Server (2000 or MSDE?) on the same computer as your web server ?>> If so, use the SQL Server's instance name, not the IP, in the connection.>>>> SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");>> or>> SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");>> ( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )>>>> or>> SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");>>>> If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.>>>>>>>>>> Juan T. Llibre, asp.net MVP>> aspnetfaq.com : http://www.aspnetfaq.com/>> asp.net faq : http://asp.net.do/faq/>> foros de asp.net, en español : http://asp.net.do/foros/>> ===================================>> "amjad" <am***@discussions.microsoft.com> wrote in message>> news:80**********************************@microsof t.com...>> >I have used the link below and try to run the example>> >"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3">> > but it giving me the error i dont have any idea whats wrong seem to be olrite>> > but still got error my sqlserver is on ip 10.0.0.2>> > here is the connection string>> > SqlConnection myConnection = new>> > SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");>> > SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",>> > myConnection);>> >>> > DataSet ds = new DataSet();>> > myCommand.Fill(ds, "Authors");>> >>> > MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;>> > MyDataGrid.DataBind();>> > any one has any idea whats wrong thanks>> > "Juan T. Llibre" wrote:>> >>> >> For SQL Server 2000 / ASP.NET 1.1 :>> >>>> >> http://samples.gotdotnet.com/quickstart/aspplus/>> >>>> >> For SQL Server 2005 / ASP.NET 2.0 :>> >>>> >> http://asp.net/QuickStart/aspnet/doc/data/default.aspx>> >>>> >>>> >>>> >>>> >> Juan T. Llibre, asp.net MVP>> >> aspnetfaq.com : http://www.aspnetfaq.com/>> >> asp.net faq : http://asp.net.do/faq/>> >> foros de asp.net, en español : http://asp.net.do/foros/>> >> ===================================>> >> "amjad" <am***@discussions.microsoft.com> wrote in message>> >> news:CF**********************************@microsof t.com...>> >> > how to connection sql server table with aspx like pulling data from table to>> >> > grid view.... simple example to start ....>> >> > thanks>> >>>> >>>> >>>>>>>>
My webserver is on different server and sql server 2005 is on different
server ..i am not using sql express 2005 instead full sql server 2005..
thanks
"Juan T. Llibre" wrote: You're going to run into problems if you want to use SQL Server 2005 to run the .Net Framework SDK 1.1 data access examples.
1. You need the Pubs database. Is it installed ?
After you've downloaded and installed SQL Server 2005 Express, if you want to install the sample Pubs and Northwind databases, double-click the .msi version of the file from the following link:
http://www.microsoft.com/downloads/d...displaylang=en
This installs two T-SQL scripts that you must run to build the databases.
You can use either the built-in SQLCMD command line tool or you can use Query Editor from SQL Server Management Studio.
The following two command examples let you use SQLCMD to install the sample databases to the local system:
SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instpubs.sq l" SQLCMD -E -i "C:\PathToTheDownloadedSampleDatabases\instnwnd.sq l"
SQL Server Management Studio is available at : http://www.microsoft.com/downloads/d...displaylang=en
Microsoft also provides a free SQL Server Express Utility-SSEUtil.
This downloadable tool lets you list all installed instances of SQL Server Express; connect to an instance; and create, attach, and detach databases as well as execute SQL statements. Check out SSEUtil at:
http://www.microsoft.com/downloads/d...laylang=enMake sure you bookmark this page :http://www.connectionstrings.com/Click on the SQL Server 2005 icon and then on the Sql Connection (.Net ) iconfor a bunch of connection strings for SQL Server Express 2005.Which one is the right one depends on your setup and what you want to do.Good luck!Juan T. Llibre, asp.net MVPaspnetfaq.com : http://www.aspnetfaq.com/asp.net faq : http://asp.net.do/faq/foros de asp.net, en español : http://asp.net.do/foros/==================================="amjad" <am***@discussions.microsoft.com> wrote in messagenews:FB**********************************@m icrosoft.com...> forget to mention tat i am using sql server 2005>> "Juan T. Llibre" wrote:>>> re:>> > but still got error my sqlserver is on ip 10.0.0.2>> > ("server=10.0.0.2;database=MyDatabase;Trusted_Conn ection=yes");>>>> Is the SQL Server (2000 or MSDE?) on the same computer as your web server
?>> If so, use the SQL Server's instance name, not the IP, in the connection.>>>> SqlConnection("server=MachineName\NetSDK;UID=usern ame;database=DBName;PWD=password");>> or>> SqlConnection("server=MachineName\NetSDK;database= MyDatabase;Trusted_Connection=yes");>> ( MachineName\NetSDK is the default instance name for MSDE/SQL Server 2000 )>>>> or>> SqlConnection("server=SqlServerInstanceName;databa se=MyDatabase;Trusted_Connection=yes");>>>> If you're using Sql Server 2005, or Sql Server Express 2005, it's a bit different than this.>>>>>>>>>> Juan T. Llibre, asp.net MVP>> aspnetfaq.com : http://www.aspnetfaq.com/>> asp.net faq : http://asp.net.do/faq/>> foros de asp.net, en español : http://asp.net.do/foros/>> ===================================>> "amjad" <am***@discussions.microsoft.com> wrote in message>> news:80**********************************@microsof t.com...>> >I have used the link below and try to run the example>>"http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=CS\datagrid1.aspx&font=3">> > but it giving me the error i dont have any idea whats wrong seem to be olrite>> > but still got error my sqlserver is on ip 10.0.0.2>> > here is the connection string>> > SqlConnection myConnection = new>> > SqlConnection("server=10.0.0.2;database=MyDatabase ;Trusted_Connection=yes");>> > SqlDataAdapter myCommand = new SqlDataAdapter("select * from Authors",>> > myConnection);>> >>> > DataSet ds = new DataSet();>> > myCommand.Fill(ds, "Authors");>> >>> > MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;>> > MyDataGrid.DataBind();>> > any one has any idea whats wrong thanks>> > "Juan T. Llibre" wrote:>> >>> >> For SQL Server 2000 / ASP.NET 1.1 :>> >>>> >> http://samples.gotdotnet.com/quickstart/aspplus/>> >>>> >> For SQL Server 2005 / ASP.NET 2.0 :>> >>>> >>
http://asp.net/QuickStart/aspnet/doc/data/default.aspx>> >>>> >>>> >>>> >>>> >> Juan T. Llibre, asp.net MVP>> >> aspnetfaq.com : http://www.aspnetfaq.com/>> >> asp.net faq : http://asp.net.do/faq/>> >> foros de asp.net, en español : http://asp.net.do/foros/>> >> ===================================>> >> "amjad" <am***@discussions.microsoft.com> wrote in message>> >> news:CF**********************************@microsof t.com...>> >> > how to connection sql server table with aspx like pulling data from table to>> >> > grid view.... simple example to start ....>> >> > thanks>> >>>> >>>> >>>>>>>> This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Phil |
last post by:
I am using a Pascal like language (Wealth-Lab) on W2K and call this server:
class HelloWorld:
_reg_clsid_ = "{4E797C6A-5969-402F-8101-9C95453CF8F6}"
_reg_desc_ = "Python Test COM Server"...
|
by: Nathan Sokalski |
last post by:
I want to set up SQL Server on Windows XP Pro so that I can use the database
capabilities of ASP and IIS. I am probably using some incorrect settings,
but I am not sure what they are. Here is what...
|
by: Grim Reaper |
last post by:
My work let me put SQL Server 7.0 Enterprise Edition on my laptop. I have
never setup a server from the beginning, so I am a little new at creating
server groups.
Alright, I am trying to create...
|
by: Chris Halcrow |
last post by:
Hi
I've spent ALL DAY trying to re-install SQL Server 2000 on Windows XP.
I continually get the error 'cannot configure server' just at the end
of the installation. I've tried the following:
...
|
by: Zorba.GR |
last post by:
IBM DB2 Connect Enterprise Edition v8.2, other IBM DB2 (32 bit, 64
bit) (MULTiOS, Windows, Linux, Solaris), IBM iSoft Commerce Suite
Server Enterprise v3.2.01, IBM Tivoli Storage Resource Manager...
|
by: Hazzard |
last post by:
I just realized that the code I inherited is using all asp.net server
controls (ie. webform controls) and when I try to update textboxes on the
client side, I lose the new value of the textbox when...
|
by: Mike |
last post by:
Hi,
I am strugling with a simple problem which I can't seem to resolve.
I have an asp.net page which contains a server-control (flytreeview,
which is a kind
of a tree to be exact).
The tree is...
|
by: Jobs |
last post by:
Download the JAVA , .NET and SQL Server interview with answers
Download the JAVA , .NET and SQL Server interview sheet and rate
yourself. This will help you judge yourself are you really worth of...
|
by: Developer |
last post by:
Hello All,
i have recently installed VS2005 and was trying to install SQL sever
2000.
I have Win XP' SP2. But when I tried installing, it only installed
client tools and not the database.
Can...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |