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 Wanet Telecoms Ltd 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. Romanichine

    ActiveX MS FlexGrid issues with masks

    Hello, We are using the Microsoft Flex Grid as an ActiveX control on a website. Some columns on the grid have an Edit Mask defined (such as "999999.99"). When a user enter some value in a cell using this mask, for example 21.25, the value at the end should appear as "21.25&quot...
  2. Romanichine

    Generic stored proc

    Hi, I have a table containing 60+ fields and different parts of our application are updating this table. There's a part modifying all the fields, and the others only modify some fields. We have many stored procs to handle this, one that has receives all the field values, another that has...
  3. Romanichine

    VB/COM+ Permission denied with Excel object

    Hi, I have a COM+ object created in VB that returns an error when using an Excel object. The error I get is the standard "70 - Permission Denied ". The exact line where this is happening is: Set xlApp = New Excel.Application The COM+ object's Identity is member of the...
  4. Romanichine

    Connect to a FTP server

    Hi, I need to create a page that connects to a FTP server, look if a file exists in a specific directory. If yes, download it and move it to a "moved" directory on the ftp server. It has to be done using ASP or VB, but I haven't found a builtin function to do this. Any ideas...
  5. Romanichine

    Populate a select box with VBScript

    Hi, I got a function that receives a string with delimiters and populates a select box (see code below). It works fine on one computer using IE 6.0 but doesn't work on two computers using IE 5.0. I was wondering if this was a browser issue and, if yes, how to make it work on any browser. The...
  6. Romanichine

    How to find how many radio buttons the page has...

    Hi, I got a page that has a lot of radio buttons and can be changed by the web developper without us knowing... ex: ========= <input type=&quot;radio&quot; name=&quot;rdoField&quot; value=&quot;234&quot;> <input type=&quot;radio&quot; name=&quot;rdoField&quot; value=&quot;615&quot;> <input...
  7. Romanichine

    Submitting a form with focus in combo box

    Hi, We have a form using a Combo Box component, which works fine except for one problem: When the focus is in the combo box and the user hit the submit button, it does not submit the form. The user has to hit submit a second time to really submit it. The first hit on sbumit only removes the...
  8. Romanichine

    Unknown grid component

    Hi, I am working on someone else's code and it's using a grid component that I don't know anything about. I tried to get documentation on the net but can't find anything. Here's some part of the code (see below). Let me know if you know anything about this. Thanks! ASP code ==============...
  9. Romanichine

    Hello, I have a query that norma

    Hello, I have a query that normally takes 1 second to run but when I add an &quot;ORDER BY&quot; clause, it raises to 15 MINUTES! Here is the query: SELECT ss.srv_id, ss.service_no, Orig_pop.pop_name, sstc.srv_type_code, ssc.Component_no, sssc.Status_Descr ,ss.Cust_Name...
  10. Romanichine

    Database bigger after a shrink

    We made a shrink on the data file and it is now a lot bigger than it previously was. It went from 1,6Gb to 7,7Gb but it still seem to hold the correct data, and works well with our applications. Any idea why it happened? Thanks, -- Roman
  11. Romanichine

    Run code on every hit

    What is the best way to run a piece of code at the beginning of every hit? Let's say I want to run the following, no matter what asp page has been called: <% intHitCount = intHitCount + 1 %> Obviously I don't want to include it at the beginning of every page if I got hundreds. Thanks, -- Roman
  12. Romanichine

    LDAP authentication

    Hi, Has anyone made a website secured with a LDAP authentication? How can we do this in ASP? Is there a component to help me? Thanks, -- Roman
  13. Romanichine

    LDAP example?

    Does someone have an example of using LDAP for authentication on a website? Thanks, -- Roman.
  14. Romanichine

    Query conversion from MSSQL to MySQL

    I am having problems converting the query below, which runs on Microsoft SQL Server, to MySQL. I already converted ISNULL to IFNULL but still am getting the following ODBC/MySQL error: ========== [MERANT][ODBC MySql driver][MySql]You have an error in your SQL syntax near 'INNER JOIN currencies...
  15. Romanichine

    JOINs with parenthesis

    Can someone tell me where the parenthesis, to separate the joins, should be in the following query? ============== SELECT * FROM valid_sales_ids s RIGHT OUTER JOIN direct_services ON s.sales_id = direct_services.sales_id RIGHT OUTER JOIN client INNER JOIN currencies cur ON...
  16. Romanichine

    Different select box size depending on focus

    Hi, It is possible to have the select boxes a certain size, but its 'scrolling list bigger'? e.g. xxxxxxxxxx <-- select box with the down arrows xxxxxxxxxxxxxxxx <-- first line of scrolling xxxxxxxxxxxxxxxx <-- 2nd line of scrolling xxxxxxxxxxxxxxxx <-- 3rd etc... This would be to prevent...
  17. Romanichine

    workdays in SQL 7.0

    Hi, I need to convert an Access application to a web application with SQL 7.0 running behind. Now there is this workdays() function that I am stuck with. The function receives two dates in arguments, and returns an integer corresponding to the number of working days within the two dates (i.e...

Part and Inventory Search

Back
Top