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!

Search results for query: *

  1. iqof188

    Post data to a web page from Visual Basic

    You could use the XMLHTTP object (from msxml3) to post data to the webpage. With this component, you can do a HTTP POST request to your webpage, and send data with the request. It's something like Dim objXmlHttp As MSXML2.XMLHTTP Set objXmlHttp = New MSXML2.XMLHTTP objXmlHttp.Open...
  2. iqof188

    DataBase Integration with biztalk

    JOLESEN: BTS has no built-in functionality to extract data from SQL Server, so please explain to me how to do this with no coding at all... Like ryebread says, get the SQL Server Adapter, or use a preprocessor or a custom functoid in the BTS mapper. Good luck! <webguru>iqof188</webguru>
  3. iqof188

    Import XSD

    There is of course the utility called convert.js, which converts xsd schemas to xdr schemas. It should be somewhere in teh BTS installation dir (can't remember where exactly) <webguru>iqof188</webguru>
  4. iqof188

    DataBase Integration with biztalk

    Why do you want BizTalk to do this? Do you know when to use BizTalk? You can use any app to extract the records you want, and then send it (through HTTP, SMTP, FTP of any other protocol) to BizTalk. What exactly do you want? <webguru>iqof188</webguru>
  5. iqof188

    TextArea Formatting

    There is the DHTML edit control for Microsoft, check it out on MSDN. Downside is it only works in IE. <webguru>iqof188</webguru>
  6. iqof188

    Problems with system.data.sqloledb

    Hi. I have some troubles getting the example from an O'Reilly book to work. The first part of the code is like this: <%@ WebService Language=&quot;C#&quot; Class=&quot;PubsWS.PubsWS&quot; %> namespace PubsWS { using System; using System.Data; using System.Data.OleDB...
  7. iqof188

    Can ASP call .dll written by Delphi?

    Yes. You can create COM objects with Delphi, so they should behave exactly the same as VB dll's. <webguru>iqof188</webguru>
  8. iqof188

    Help needed to view example apps.

    Microsoft servers right? They still don't get it ;-) Be smart and switch to Apache. It rocks. <webguru>iqof188</webguru>
  9. iqof188

    Problem filtering list against another DB

    Try this: <cfquery name=&quot;one&quot; datasource=&quot;YourSecondDb&quot;> SELECT Email FROM MyTable </cfquery> <cfset exclude_emails = QuotedValueList(one.Email)> <cfquery name=&quot;two&quot; datasource=&quot;YourFirstDb&quot;> SELECT Email FROM MyOtherTable WHERE Email NOT...
  10. iqof188

    Help needed to view example apps.

    localhost is the same as 127.0.0.1. It is the machine CF is installed on. Up until version 4.5 (I'm not sure about version 5.0) example apps can only be viewed when you work locally on the machine CF is installed on. Try this, it should work. <webguru>iqof188</webguru>
  11. iqof188

    help with cfobjects / excel pl .... ;-(

    Make sure the xls-file is NOT read-only, and also make sure that the sheet is not protected. Hope this helps... <webguru>iqof188</webguru>
  12. iqof188

    Framed Page to non framed Page

    Put target=&quot;_top&quot; inside your link (<a href=&quot;somepage.asp&quot; target=&quot;_top&quot;> or <form target=&quot;_top&quot;>). That should do the trick for you. <webguru>iqof188</webguru>
  13. iqof188

    temp DB tables

    I'm not sure what you want to do, but you can always use the CREATE TABLE statement in SQL (also in a CFQUERY). But I'm not sure that's a good idea. Maybe you can use structures (they look a lot like db tables...) to hold the data, or maybe even WDDX packets. Anyway, please be more specific on...
  14. iqof188

    importing text files

    One thing you can do is use the textfile as a datasource. With CFHTTP you can use a textfile as datasource. Just provide a name (this will be the query name), a delimiter for the columns, a textqualifier which indicated where one row starts and ends, and the names of the columns in a...
  15. iqof188

    variable in variable

    <cfmail> works just like <cfoutput>, so in the mail your code generates, the value of i.longtext will be displayed, not #i.longtext#. Looks to me like your code will work, test it. Good luck. <webguru>iqof188</webguru>
  16. iqof188

    cannot get coldfusion E 5.0 to work with MySQL/MyODBC

    Try installing the myodbc API again. To me it sounds like the installation of CF5.0 has overwritten your old odbc.dll file. By reinstalling the myodbc API you install the MySQL ODBC-driver again. Hope this helps. <webguru>iqof188</webguru>
  17. iqof188

    Output all FORM fields

    Nice one CFHUB! <webguru>iqof188</webguru>
  18. iqof188

    Output all FORM fields

    Yeah, I know, debug output will do the same, but this piece of code is for those who just want to see the form variables that have been passed. Paste the following code in your action page and there you go: <cfoutput> <table> <tr> <th>Name</th> <th>Value</th> </tr> <cfloop...
  19. iqof188

    Get the size of a directory

    In Allaire's custom tag gallery there's several tags that can read the total size of a given directory on your server. Problem is that all of those tags are SLOOOOOOWWWW (they all start looping and stuff, almost bringing down your server :-) ). For all you IIS users, here's the quick solution...
  20. iqof188

    a Big Problem

    cfm, this ain't a big problem, you have a function called Evaluate to do this trick for you: <cfloop from=&quot;1&quot; to=&quot;#number_of_vars#&quot; index=&quot;teller&quot;> <cfoutput> #Evaluate(&quot;FORM.mail#teller#&quot;)#<br> </cfoutput> </cfloop> This should help you out, good...

Part and Inventory Search

Back
Top