Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. georgizas

    Check a checkbox on an html form?

    I cant understand, are you want to check a checkbox or a textbox
  2. georgizas

    Problem with Greek characters while streaming data from url

    I try to get a file from a url and save it to my pc but I have problem with Greek characters. My code is: Public Function OpenURL(ByVal strURL As String) As String Dim client As New System.Net.WebClient() Dim data As System.IO.Stream = client.OpenRead(strURL) Dim reader...
  3. georgizas

    JET database Engine and Access from ASP

    Ok I used a domain user and it works. Thank you. Do you have an opinion about security problems?
  4. georgizas

    JET database Engine and Access from ASP

    I try to connect from my ASP page to an access database which is on a server on network. My code is hereQ set cn=server.CreateObject("ADODB.connection") set rs=server.CreateObject("ADODB.recordset") cn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=//Info/db_pepdym/pepdym.mdb"...
  5. georgizas

    Create a new instance of Word using ASP.NET

    Ok i solve the problem with the security(i make a restart my server!). I try to open a word: objWordDoc = _ objWordApp.Documents.Open("C:\Inetpub\wwwroot\WebApplication1\Ypagvgh_g.doc") 'Run the macro objWordDoc.filldoc("Hello!") 'Close the document and...
  6. georgizas

    Create a new instance of Word using ASP.NET

    Yes i did but the problem still remain
  7. georgizas

    Create a new instance of Word using ASP.NET

    I want to open a new instance of word in my aspx page. I try to open, execute a macro and download to the client. First I use this code: Dim objWordApp As Word.Application Dim objWordDoc As Word.Document 'Create a new instance of Word objWordApp = New...
  8. georgizas

    passing arguments to a word document

    ok thanks
  9. georgizas

    passing arguments to a word document

    It is not necessary to use set and let in aspx. The right code is without comments: objWordDoc = _ objWordApp.Documents.Open("C:\Inetpub\wwwroot\WebApplication1\Ypagvgh_g.doc") ...
  10. georgizas

    passing arguments to a word document

    This is the method into word: Public Sub filldoc(p_id As String) Dim cn As ADODB.Connection Set cn = New ADODB.Connection Dim constr constr = "Provider=sqloledb;Server=MYSERVER;Database=MYDB;UID=MYUID;PWD=MYPWD;" cn.Open constr ...(get the resultset and put the fields into regions inside the...
  11. georgizas

    passing arguments to a word document

    Yes the primary key is on a HTML page, but I have the other values in my SQL DB. I found a solution. But i stil have problem. I wrote a method in the word with a parameter that i need. I want to open the word doc from aspx, run the method and after that download it from server. I m sorry for my...
  12. georgizas

    passing arguments to a word document

    I want to construct a word document but I need some details into the body. These details are into a database (SQL Server) so i use VBA in the Document_open event. I Use ADODB and after the connection to the SQLServer I could get the data but I need value as the primary key. Here is my code: Dim...
  13. georgizas

    passing arguments to a word document

    I need a parameter to get sum data from a database into word document
  14. georgizas

    passing arguments to a word document

    I want to pass arguments opening a word document for use with VBA
  15. georgizas

    resultset for insert into MSSQLServer database

    Hi friends I try to use a resultset in order to inser a row to a sqlserver database table (my connection based on JDBC ODBC driver) from a JSP page but i take an interval server error: at sun.jdbc.odbc.JdbcOdbcResultSet.bindCol(JdbcOdbcResultSet.java:4506) at...

Part and Inventory Search

Back
Top