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 strongm 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: fid
  • Order by date
  1. fid

    SubReport not displaying when over # records

    Hi, I have a Report with 1 SubReport The Report has a Client Header and Client Footer The detail is a SubReport which contains a Reports Header/Footer and the detail is groupings of Items from the recordset. The footer of the SubReport displays Sums and totals of the particular Item. Works...
  2. fid

    Cron job not running

    Hi, I have a script that i want to run daily i placed the script in /etc/cron.daily/ (as root) the script launches an expect script which connects to a remote server via sftp2 the secure shell requires a user interactive password to be entered, so expect script is the only way i could think of...
  3. fid

    SourceSafe for Macintosh

    Are there any client applications for a Macintosh to use the visual sourcesafe database we have installed on our servers? we have development environment where some Mac users share the same Flash source files with programmers, want them to use the same version control system, but metrowerks...
  4. fid

    VSS and .NET Version

    Hi I am ordering Visual Studio.NET and wondering which version i need to get for integrating with VSS. Professional Version or Enterprise Edition. Our team is small, only a few developers. How much advantage can we get for steeping up and getting enterprise solution? thanks
  5. fid

    Adding new items/pages to application

    I am using Visual Interdev integrated with Visual Source Safe for developing web applications. Since its all website development, we also have other developers that work on the site but utilize other software for front-end developement, such as DreamWeaver and Flash. DreamWeaver has...
  6. fid

    InterDev v6.0 slow and sluggish

    Thanks for the reply. I added the server to my hosts file. Not sure if it will help much. The server is Windows 2000 Server /IIS 5, and Frontpage Server Extentions is 2000 (Version 4.0.2.5526). Maybe i shoudl try fpse 2002 and/or upgrade to VS.NET (?) Is there any other way to set up the...
  7. fid

    InterDev v6.0 slow and sluggish

    Hi I am using InterDev to develop web applications using InterDev connecting to a web server using server extensions and integrated with VSS. And it is sloooowwww. There are huge 5-10 completely locked up pauses every minute or 2, and when i refocus to InterDev from another window. I can see...
  8. fid

    Index Server Programming

    is there a way to have index server not return duplicate pages in the results? right now i am using the ixsso.query object to grab the results Set oQuery = Server.CreateObject("IXSSO.Query") oQuery.Catalog = "mycatalog" sQuery = "@Contents '" & CiRestriction &...
  9. fid

    HTTP 405 with Ms Index Server

    I am running Windows 2000 Server with IIS 5 I have Index Server installed and running, but am unable to access it via the idq resource. I am able to query the catalogs no problem using the IXSSO.Query object, but when i try using an idq file and template it gives me: HTTP 405 - Resource not...
  10. fid

    CDONTS custom headers

    anyone know how to create custom headers using CDONTS or even CDO? i need to send out emails from ASP in multipart/alternative format, so i need content type headers Content-Type: multipart/alternative; boundary="----$STRING" etc. i cant find any way to do this any help...
  11. fid

    Optioan Arguments in C#

    How do i write a function that will accept optional arguments? ie: so the function can be called _obj.DoSomething(arg1, arg2, arg3); or _obj.DoSomething(arg1); or simply as _obj.DoSomething(); how do i set up public string DoSomething(int arg1, int arg2, int arg3) etc... without getting the...
  12. fid

    Request from a cs class

    is there a way to access the request.form values from a class? for example: <%@ Page language=&quot;C#&quot; debug=&quot;true&quot; src=&quot;../bin/MyCode.cs&quot; %> <%@ Import namespace=&quot;MyNamespace&quot; %> <script language=&quot;C#&quot; runat=&quot;server&quot;> void Page_Load() {...
  13. fid

    C# Byte Array

    I have a snip of code in VB.NET that i want to convert to C# there is one snag i am coming across which is a Byte array declared as such: Private MyByteArray() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF} anyone know the proper syntax for the c# equiv?? thanks
  14. fid

    MapPath inside c# class

    Hi, Thanks for responding. the class is located in a .cs file MyClass.cs namespace xyz { public class a { public void LoadConfig() { FileStream _fs = new FileStream(@&quot;c:\config.cfg&quot;, FileMode.Open, FileAccess.Read); StreamReader _r = new StreamReader(_fs); etc... i call it from an...
  15. fid

    MapPath inside c# class

    Hi, I have a class in which i'm trying to load a config text file that resides in the current directory. in the aspx file i can do a simple Server.MapPath(&quot;config.txt&quot;) to get the full path of the file (c:\inetpub\wwwroot\myfolder) etc.. inside the class however, i can't get...
  16. fid

    installing .net on NT4 server

    Anyone get a successfull install of .NET framework on NT4 Server? MS says it's compatible with NT4 sp6a, but the installation of the redistributable or the SDK does nothing. It doesn't report any warnings or errors, but does't map .net files like .aspx to any sort of library in IIS. I looked...
  17. fid

    ASP VBScript class

    I am writing a Class in ASP I am trying to pass a database connection object into the class to use within the class EX: The page: ------------- set MyConn = Server.CreateObject(&quot;ADODB.Connection&quot;) MyConn.Open {My Connection String} set MyObj = New MyObject MyObj.Connection = MyConn...
  18. fid

    MAPI Profile AT scheduling

    I have an application that connects to a mailbox with visual basic using MAPI session. It runs fine executed with a user account since thats where the MAPI profile exists.. even runs fine scheduled with the task scheduler. the problem is, the user must be logged in for the task scheduler to...
  19. fid

    Need help with Swing Applets

    ah thanks for help guys. i used the html converter and got it working ;)
  20. fid

    Need help with Swing Applets

    I'm a web programmer, but new to Java. I'm trying to write some Java Applets to learn, but getting hung at this error. when i try using Swing Applets, they run fine with NetBeans and run fine compiled and run with AppletViewer. but when I try loading it into Internet Explorer, I get errors...

Part and Inventory Search

Back
Top