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: *

  • Users: wASP
  • Order by date
  1. wASP

    server side value from client side script

    Hi I was wondering if it is possible to call an external asp / html/ php page and renders its values / response into a client side variable ie: <script language="Javascript"> // get serverside value x = _____FUNCTIONNAMEHERE_____('http://www.web.com/test.asp'); alert(x); </script>...
  2. wASP

    MAPI, CDO or Winsock

    Hi Casper Just found the problem with using vb6 to connect to outlook 2003 using MAPI. It seems Outlook 2003 has built in security which sees any external application trying to connect to it as malicious code, and usually brings up a warning to allow or deny this access. When running the app...
  3. wASP

    MAPI, CDO or Winsock

    getting a "function not supported" error when running the below code on a machine with outlook 2003 installed. ===================================================== Option Explicit Public m_bSignedOn As Boolean Private Sub Form_Load() Call SignOn If m_bSignedOn Then CheckForMail...
  4. wASP

    MAPI, CDO or Winsock

    Hi Casper Tnx for the reply. MAPI works perfect, except when trying to connect to a local Outlook 2003 client. The problem with CDO however would be limitation on operating systems. Our solution would need to extend to any Outlook version as well as any windows operating system version. Mapi...
  5. wASP

    MAPI, CDO or Winsock

    Hi Have to write an exe that will be deployed to a large userbase. The exe must check the local machines email inbox for a specific attachment on a daily basis and save this file to a spesified location. The probelm is not with writing the app, but rather using the right technology ie. MAPI...
  6. wASP

    Active session count

    Hi I am looking for a way to display / reference the active session count of the localhost (default website) in IIS and / or PWS using vb6. Any help in getting me started would be highly appreciated. >(::O> wASP >(::O>
  7. wASP

    delete directory contents

    any way i could modify this code to check if ANY files exist before killing all files, as a file not found error occurs if directory is already empty ? >(::O> wASP >(::O>
  8. wASP

    delete directory contents

    HI how can i programatically delete all files within a specified directory using vb6? Regards w@sp >(::O> wASP >(::O>
  9. wASP

    IIS Redirect

    much appreciated. this is exactly what i was looking for. as reference to any1 else looking into this, i found a brilliant and free URL Rewrite component @ http://www.helicontech.com/ Thnx again Chris for the usefull help.. >(::O> wASP >(::O>
  10. wASP

    IIS Redirect

    I would like to set up a redirect within IIS that redirects anything other than the domain name to a page as a variable, without having to set up virtual directories for each aletrnative after the domain name ie... www.mytestdomain.com/12345 should redirect to...
  11. wASP

    IIS 5 Redirect Variables

    Hi How would I go about setting up IIS 5 to redirect any URL parameters after the server name ie. www.url.com/1655 to www.url.com/index.asp?keyword=1655 or www.site.com/mynamehere to www.site.com/index.asp?keyword=mynamehere. I do not want to create virtual directories for each possible...
  12. wASP

    MDI app, forms, xml

    Brillaint, this really helps alot. Thanks for your help, your knowledge is surely appreciated. >(::O> wASP >(::O>
  13. wASP

    MDI app, forms, xml

    i have an MDI application, which reads child forms from seperated form classes, each built into their own dll which i just reference. I now want to make this more dynamic by having an XML file which will determine the sequence / flow of the forms to be opened, and thus a SUB which will take the...
  14. wASP

    Full Componentisation

    Hi I only recently started looking at VB.NET and need some help as we will be starting this project soon. We are re-writing an application used by our customers, but need to componentetise every single form / class into its own dll. referencing these is fine, but how does one go about...
  15. wASP

    Output Data from SQL Tables

    apologies, mistake at line &quot;IF not objRS.EOF then &quot;, should be &quot;IF not RS.EOF then&quot; >(::O> wASP >(::O>
  16. wASP

    Output Data from SQL Tables

    try replacing with below : <% mysql = &quot;SELECT * FROM WO_Info where wo_number=&quot; & Request.QueryString(&quot;RecordID&quot;) Set RS = DataConn.Execute(mysql) IF not objRS.EOF then 'My Output %> <tr> <td class=&quot;small&quot; colspan=&quot;2&quot;><li...
  17. wASP

    Output Data from SQL Tables

    IF not objRS.EOF then 'Output here End IF >(::O> wASP >(::O>
  18. wASP

    deny uncheck of chkbox

    have a checkbox, need client side js that will allow selection / checking of chkbox, but will deny deselection / unticking once ticked. is this even possible ?? have tried everything from alerts and blurs to returning flase onclick. PLZ help !! >(::O> wASP >(::O>
  19. wASP

    ORACLE Reports via ASP

    I was given the daunting task of running / initialising an Oracle Report dynamically from an ASP page, which would in turn generate the PDF and stream the PDF to the browser. Any ideas ??? >(::O> wASP >(::O>
  20. wASP

    Criteria Based IP Redirection

    I need to create a page that redirects according to IP address following certain criteria. Internet users use : 193.5.???.??? Intranet Users use : 196.202.???.??? for instance. Script required to calculate first characters of IP and then redirect to different pages. Not a full IP redirect ...

Part and Inventory Search

Back
Top