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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mohanq

  1. mohanq

    I am unable to access the dlls from ASP page when i logged off

    Hi, I am getting following error when logged out from the windows nt server:- server.createobject failed. I installed dll components in MTS(microsoft Transaction server)and accessing dll from asp page when i login to server with any user, the asp page works. pls help me out from it...
  2. mohanq

    How can i refresh ADO data control?

    hi, I am using ADO Data Control to display the records in MSHFlexGrid control. I set the recordsource property to adodc control with the query in the form of string variable. dim str if cmbMembers.text = "" then str = "select * from temp where id like "M*&quot...
  3. mohanq

    Store & retrieve images(*) in database(visual data manager/Access)

    Hi, I am able to store image in visual data manager(database table) with the fields id text, img binary when i try to load the picture from recordset with the following statement:- Picture1.picture = loadpicutre(rs(1)) it shows an error file name/path not exists etc. pls let me know...
  4. mohanq

    Multi tray within VB

    I am creating an application for printing out Data Reports in vb. My problem is to control the printer paper bins programmatically during printing so that first page goes on paper from bin #1 and middle pages goes on paper from #2 and so on. I tried with Paperbin property with HP Deskjet 670C...
  5. mohanq

    current window

    Hi, Try it with the following snippet, it might be useful for u:- <script> function opwin(file,name) { w1 = window.open(file,name,&quot;fullscreen=1&quot;); } </script> best wishes, mohan.
  6. mohanq

    Opening a new full window from a pop up

    Hi, I hope the following snippet will be useful for you:- <HTML> <HEAD> <SCRIPT> function fullScreen(url) { win=window.open(url, &quot;w&quot;, &quot;fullscreen=1&quot;); } </SCRIPT> </HEAD> <BODY> <A HREF=javascript:void(0); onClick=fullScreen('http://www.yoursiteaddress.com')>Full...
  7. mohanq

    How can I retrieve top 10 salaries using SQL query

    Hi, How can i get top 10 salaries from employee table, where employee table has the following columns:- empno int, empname varchar(35), age int, salary double, location varchar(50) If any one knows the solution for my question, pls let me know. Thanks in advance, mohan.
  8. mohanq

    How can i print web page with Print Dialog box in new window.

    Hi, I would like print web page with out print dialog box in a new window. I got a problem when i click on print link, it raises an error &quot;access denied: WB.ExecWB&quot;. I tried with following snippet:- <HTML> <HEAD> <script language=&quot;VBScript&quot;> Sub myPrint()...

Part and Inventory Search

Back
Top