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

  • Users: maboo
  • Content: Threads
  • Order by date
  1. maboo

    could not load file or assembly in 3.5

    I was recently working on a solution with mulitple projects that are using .Net Framework 2.0 only. I had to remove .Net version 3.5 from my machine. NOw when I load the solution I get the following error message on all the projects: could not load file or assembly 'microsoft.build.engine...
  2. maboo

    ASP.NET2.0 cookieless vs cookie sessions

    when using ASP.NET 2.0, if you set 'cookieless session = fales' (meaning you want to use cookies), is the session information stored in a cookie on the client machine or in the browsers memory? Thanks Maboo
  3. maboo

    passing DB connection object to functions

    I have more of a design question not syntax. I have a large function that will call several other small functions and most of them will hit my DB. Would it hurt my performance if i created aconnection object in my large function and the passed it to each small function instead of opening a new...
  4. maboo

    Inheritance issue

    Is is possible to force a extended window to use the properties of the ancestor window that it has inherited from?
  5. maboo

    Using vb dll in PB 6.5

    I wrote a dll in visual basic 6.0. I want to call those functions in the dll from pb6.5 I tried putting the declarations as global and local(not at the same time) FUNCTION LONG ValidateUserName(STRING strUserName,REF STRING strErrorMsg) LIBRARY "c:\foldername\mydll.dll" When I try and call...
  6. maboo

    Does GetObject actually try to log you in to server?

    Does the below code actually try to log you into the domain or only verify that it exists? Set dso = GetObject("LDAP:") set ob1 = dso.OpenDSObject("LDAP://domain", strUserName,strPassword, ADS_SECURE_AUTHENTICATION + ADS_SERVER_BIND) I was testing this...
  7. maboo

    Creating my own Email Application

    I am looking to create my own Email Application. My email server uses sendmail. I want to create a web based email program to integrate into a website. I'm looking for suggestion on how to get started. I would like to use ASP for it since that is what I am most familiar with.Any IDEA's? THanks
  8. maboo

    Creating my own Email Application

    Hello, I am looking to create my own Email Application, similar to hotmail, webmail,etc. I have the email server, and want to be able to customize the email app so I can place it within a current website. Can anyone tell me how these sites do it? Can it get the emails off of my current...
  9. maboo

    appending to a textfile

    i want to append to a text file. so far it only overwrites it. i think it has something to do with the second paramater in the createtextfile line. can someone help me? set outFile = Server.CreateObject"Scripting.FileSystemObject") Set outFileText =...
  10. maboo

    Uppercase while appending

    I'm looking for a way to make certain fields all uppercase while appending them to another table. I tried the input mask property but it doesn't convert when appending. any ideas? thanks maboo
  11. maboo

    Calling a Oracle Stored Procedure

    does anyone know the syntax for calling a stored procedure. the one i need to call will be taking one paramter and returning one value to signify success or failure. any help would be appreciated. thanks
  12. maboo

    Crystal Report Printing

    When you open crystal view in a web page via asp, can you automatically send the report to the default printer without having to manually print the report.
  13. maboo

    printing CR report from asp

    i've been using the examples provided by Crystal Reports to do some exporting. I can export a report with no problem But i would like to send my report DIRECTLY TO THE PRINTER. Is this a exportformat type, or destination option? I was able to print from VB, but not asp. Can someone help me...

Part and Inventory Search

Back
Top