Accessing the PC database using a web-page and PowerBuilder 5.0 front-end and MS Access DatabaseI am trying to connect my web page, which is the standard HTML Explorier
applet to my MS Access Database by way of PowerBuilder 5.0. I would like
the steps and PowerBuilder Script to make this work. I was told that this
is possible, but I don't know where to start, where to place the needed
Script, and how to get the link on the web page to call up Powerbuilder to
access the MS Access database. Help!
You create a PB user object that has methods that do the access. You
deploy that as a distributed PB component and then access it using Web.PB.
Read more on distributed PB and...
How to Access/Pass Server Side Array Variable at Another Web Form's Client Side
Hi All,I struck up with some intrested senario at my application development...hope some body will guide me or sends me some code snippets....Thanks in advance.Senario is like this.....in A.aspx (using C# .net 2.0 as code behind) I am going to have a array variable basically it is an TWO Dimensional array after populating the values in array I need to redirect/ reload another web form B.aspx, here i need to access the array in B.aspx client side JavaScript.How can I do this...Thanks AgainRaju
Dont do a redirect but use server.transfer. That way the previous page will still hold its value, ...
Linking Web Form + MS ACCESS Database
I don't know if this is possible, but does anyone know if it's possible to create a web form linked a long with a Microsoft Access database. Say I'm filling out an online application, and if I submit that form, the MS Office database automatically updates itself with my information, so I can just download the database off the server later and read it from MS Acess rather than the web. Is this possible?
Yes, it's certainly possible, and not too difficult. Check out this link:http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnofftalk/html/office12062001.aspHope it helps.My Bl...
accessing MS Access from .net
hi
I am accessing ms access data base which has a table called customers. when i try to insert data into the table i am gettign the error like
"Operation must use an updatable query"
and the line its showing is
myOleDbcommand.ExecuteNonQuery()
here is my code in page lode event
Sub Page_Load(Sender As Object, E As EventArgs)
Dim StrConnectString as String
Dim strStatement as String
strConnectSTring = "Provider=Microsoft.Jet.OLEDB.4.0;Password='';User ID=Admin;Data Source=C:\Inetpub\wwwroot\Srinu\WebApplication2\...
Accessing a MS Access database
Hi, I would like to do a lookup into an Access database, and display the result in a grid.
I'm an embedded programmer being thrown into the world of .net, asp, VB, and databases so I don't know where to start :-) ...... can anyone help me ?
Thanks.
Really jus ta matter of making a connection, doing your query, and displaying results.
Here is a sample from a module I use.
The data is bound to a datagrid. Sub LoadSchedule()
Dim strSrc As String = CType(Settings("src"), String)
If Trim(strSrc) <> "" Then
...
In datawindow.net,access the database from client side event using javascriptIn powerbuilder,for example,a datawindow has two
columns:itemno,description.
input an itemno,validate it.if not found from the
database,return 1 to
trigger itemerror event; if found,get the description of the
item from
the database,and fill it into the column "description". The
question is
how to fulfill the function in web datawindow,through web
service? if
so,I need an example to realize it.
You will need to use AJAX or make a round trip on item change event.
--
Dean Jones
CEO
PowerObjects
http://www.powerobjects.com
(612) 339-3355 Ext. 112
TeamSybase
* *...
Synchronise access to ms access database
Hello guys,
i'm currently working on an asp.net application that connects to an access database. What I am noticing in the developement process is that whenever i'm opening the database using MS access and trying to execute a function in my project that needs to access the database, i get an error "couldn't open file". Well, the solution is to close the database in MS access so to be allow my asp.net application to access the database. What i m wondering now is what will happen if two or more users connect to my asp.net application and try to do some operation on the database. w...
How to Access a MS Access Database in a webserver
i,
I have a database that is located outside of root.
/database
/myzone
/clients
/test
/WebAPPTest4/default.aspx
I was given following code by my host but I couldnt get it work.
******************************************************
Private Sub Connection()
Dim strPath = Server.MapPath("/")
Dim strPathDatabase = Replace(strPath, "\www", "\database")
Dim strConnection = strPathDatabase & "\RecordLabel.mdb"
Dim sConnectionString As New String("Provider=Microsof...
Access web form content from client side HTML file using javascript
I have two browser windows open, one an html file residing on the client and one an aspx page served up by the web server. Neither window is related to the other; neither one opened the other.
Is it possible for javascript on the html file which resides on the user's local computer to "read" any of the information from the other open window? Ideally, I'd like to read a hidden input field from the web page.
The solution only has to work in IE 6 and 7.
Thanks in advance.
Man, this sounds more like a virus, like spyware...
Why do you need to do such thing?
What I want is to open ne...
How to get an access to MS Access database?
Is it possible to get normal access to MS Access database without OLE DB drivers just with methods of ASP.NET. The problem is that the hoster set trust level to medium and does not allow using of OLE DB drivers. Thank you....
.NET CLIENT TO ACCESS a non. NET WEB SERVICE
I develop in .net and need to create a web client to connect to a web service built in Java.
http://xchainj.com:8080/axis/services/ScsEnvirodatWaterQualityIndexServiceSoap
Its pretty easy when the web service was also built in .net. You can just create a web reference with the gui and automatically can see its functions and stuff.
when i put this url in the box and hit go i dont get to see its functions. maybe this shouldnt be the url of the WSDL?? I Have no idea.
Im very new to all of this.
If there are any examples of .net clients connecting to non .net web clients it woul...
How to access the properties and methods of the ActiveX control on the client side in Web Form using javascript or vbscript
Hi All,
I have looked almost every where for this, and I'll be really appreciated if someone can help me with this. I found a article in MS KB article, #317392, but it is not extactly what I wanted.
How do you reference an ActiveX control's methods and properties with javascript in the ASPX?
Following is what I have. Some how the following line in the btnclick() does not seems to be working.
AlarmCtl.StartTimer()
I have done this with just .HTML and it works just fine.
Can any one help. Thanks in advance.
//===========================...
Accessing Sybase Database with MS Access 97I'm trying to use Microsoft Access 97 to access a Sybase SQL Anywhere
database. I can link to 95% of the tables, but I'm not allowed to link or
import any of the tables created by "SYS". I need to access SYSTABLE,
SYSCOLUMN, SYSDOMAIN, etc. As a matter of fact, not only am I not able to
import the tables, I can't even see those tables when I'm presented with a
list of tables to choose from in MS Access.
Please reply to my e-mail address if possible! Thanks.
--
Peter Lucas
Decade Software Company
peterlucas@mediaone.net
Maybe Access is only listing ...
Data Access using MS Access Database
I am writing an application I am writing in VS 2005 Web Developer. I have been able to connect to my Access Database just fine, but I am having trouble pulling rows from the database. I have a drop down list in order to choose an employee. After the employee is picked I need to copy their address, city, state, and zip ifrom my table into text boxes on the form. I have looked for a week now, but nothing goes beyond just the connection itself. I can find plenty using sql, but not access. Can anyone help?
Most of the SQL examples you will find for use ...