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: maboo
  • 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

    they do have identical conn strings ThatRickGuy. Do you think opening and closing the connection 4-6 times in a function will hurt it at all? Thanks maboo
  4. maboo

    passing DB connection object to functions

    jebenson, Using transactions is a good idea, thanks. I could use the global conn object for some of the function calls but not all since I call a seperate dll. Thanks for the info jeb. maboo
  5. maboo

    passing DB connection object to functions

    Thanks for the reply macleod1021 Most of the hits to the Db are updates and inserts. I can't lump them all together cause they depend on alot of if-else's. I'm really only worried about the opening of connection objects. IS opening a new one a better way to go? Or should I create and open 1...
  6. 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...
  7. maboo

    Inheritance issue

    Is is possible to force a extended window to use the properties of the ancestor window that it has inherited from?
  8. 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...
  9. 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...
  10. 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
  11. maboo

    Creating my own Email Application

    Yes, I am using ASP. Can I use those MAPI functions in my ASP code, or will I need to make some dll's?
  12. 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...
  13. maboo

    appending to a textfile

    thanks fester. i went in a different direction. in changed the createtextfile to opentextfile and it worked.
  14. 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 =...
  15. maboo

    Calling a Oracle Stored Procedure

    sandy, haven 't tried it yet. waiting for coworker to finish the procedure. maboo
  16. maboo

    input mask regarding capital letters

    What do you do if you don't know the exact length of the value coming in? can you still use the input mask?
  17. 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
  18. maboo

    Calling a Oracle Stored Procedure

    thankx sandy. i'll give it a try
  19. 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
  20. 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.

Part and Inventory Search

Back
Top