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 SkipVought 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. perichazhi

    Help !!! ASP with MQSeries

    For My implimentation, I want to have Multiple Channels. Because of that I have send Enviromentvariables at runtime so as to make a successfull connection using MQCONN API Call. But It seems, it is having some Issues when we do the same in Windows 2000 server. Is there any other way of making a...
  2. perichazhi

    Help !!! ASP with MQSeries

    Thank U MiddlewareOnlince.COM , The MQSeries Client uses something called the "Workstation ID" to identify a Unique channel of communication between one Desktop application and the server over the internet. This is the case when a Desktop VB application is used to comunicate with...
  3. perichazhi

    Help !!! ASP with MQSeries

    Hi, I am a newbie in using using MQSeries. I need to develop an ASP application that uses MQSeries to communicate to an AS400 Server. I have an apprehension that if i use MQSeries, will there be a problem for MQSeries to uniquely identify the sessions of each user accessing the same...
  4. perichazhi

    Unable to connect from ASP using MQ-Sereis client

    Hi, I am a newbie in using using MQSeries. I need to develop an ASP application that uses MQSeries to communicate to an AS400 Server. I have an apprehension that if i use MQSeries, will there be a problem for MQSeries to uniquely identify the sessions of each user accessing the same...
  5. perichazhi

    Can I Call WiniNet.dll in Access Forms

    Hi, I need to make the access application POST some data to a Webserver and get the Results. Can i use the WinInet.dll for the same. I have a code ready made for this in VB 5.0. Can this be used in the access form ? If so please guide me how to g about using the WiniNet.Dll in Access. I am a...
  6. perichazhi

    Can I call Crystal report from Cold Fusion ?

    Hi, I need to display a Crystal report onto my web page, using ColdFusion. Is this possible at all ? If possible, can somebody help me with this. Regards PeriChazhi
  7. perichazhi

    Can I get a list of CGI Variables

    Thank u kevin & iza, I got it. :-) Perichazhi
  8. perichazhi

    Can I get a list of CGI Variables

    Hi, Where can i find the complete list of CGI variables that can be used in CFML. My immediate requirement is to get a CGI variable that can give me the Client Machine's IP address, when a user accesses my CF page. Thanx in advance, Perichazhi
  9. perichazhi

    Help With Date Trouble!!!

    please check the Datye format in the Regional Settings of the Server. If it is dd/mm/yyyy, then this might be the reason for wrong dates being entered. All the best Perichazh
  10. perichazhi

    How can i do a session clearing when the browser is closed ?

    Hi all, I am facing a peculiar problem.. I need to clear off my session variables when the user closes the browser window without doing a proper logout operation. Please, can anyone help me. ASP uses a function called session_onend. How can i do it in Coldfusion.. Thanx in advance.. Perichazhi
  11. perichazhi

    excluding query results?

    I hope u can modify the query as SELECT PersonID, FirstName, NickName, MiddleName, LastName FROM Person WHERE 0=0 AND Upper(LastName) NOT LIKE 'MODEM' AND FirstName LIKE '%#Form.Name#%' OR LastName LIKE '%#Form.Name#%' OR NickName LIKE '%#Form.Name#%' ORDER BY LastName I'm sure this would...
  12. perichazhi

    Multiple select box

    It can be done through coldfusion as well as javascript Javascript : to be written in the onclick event of the select box cbomultiselect. var myselections = form.cbomultiselect.value; if (myselections.indexof(",") > 2) alert("Only 3 selections allowed")...
  13. perichazhi

    IIF expression help!

    The problem your code faces is that it tries to deley the evaluation of attributes.width in the second parameter of the Iif function. This does not work out, since the second expression is evaluated due to the presence of # sign , and the original expression (IsDefined(Attributes.width)) does...
  14. perichazhi

    How to put CR in text field

    You can try this <CFSET details = &quot;line 1&quot;> <CFSET details = details & &quot;<BR>&quot; & &quot;line 2&quot;> <CFSET details = details & &quot;<BR>&quot; & &quot;line 3&quot;> This will be stored in the database column as : line 1<BR>line 2<BR>line 3 and when you try to display it...
  15. perichazhi

    Need a Program to invoke the Download File dialog

    Hi, I'm developing and application which allows the user to download certain text files from the Server to his PC. On the Click of a button, i would like to invoke the standard File download dialog box. How can I do this using Cold Fusion. This is urgent... Thanx, Perichazhi
  16. perichazhi

    single quotes in a query

    Try this, SELECT * FROM people WHERE name like '%#Replacelist(#form.name#,&quot;'&quot;,&quot;''&quot;)#%' This should work, :-) Perichazhi
  17. perichazhi

    output question

    <table> <tr> <td>First Col</td><td>Second Col</td><td>Third Col</td> </tr> <cfoutput query=&quot;qGetResults&quot;> <tr> <td>#databasevalues#</td> <cfif qGetResults.currentrow MOD 3 Is 0> </tr> </cfif> </cfoutput> </table> </html> Hope this works for u, :-)) Perichazhi
  18. perichazhi

    Urgent !! Date/Time Insert

    Dear friend, You need not explicitly store the date-time in oracle. Oracle automatically stores the time of insertion or update. If you want to retrieve the time, user the combimnation of to_char - to_date function. Insert Command: <cfset today=#Dateformat(Now(),&quot;dd-mmm-yyyy&quot;)#>...
  19. perichazhi

    Problems Using CFHTTP

    Hi, I'm using CFHTTP to pass some parameters to the Internic.net's whois database. My development environment is under a proxy server. Using this tag makes the server very slow. My code is: <cfhttp url=&quot;http://internic.net/cgi-bin/whois&quot; method=&quot;POST&quot...
  20. perichazhi

    DateAdd with strange result !

    Try using the date format as dd/mmm/yyyy This might be due to the regional setting(date format) of your system hope this works :-) Perichazhi

Part and Inventory Search

Back
Top