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!

Recent content by NickBulka

  1. NickBulka

    Web discussion permissions

    Can somebody tell me where I can set web discussion permissions for Sharepoint Portal Server? Specifically, I want to give users the ability to close discussions. thanks. nick bulka
  2. NickBulka

    Getting page contents from more than one site

    I'm looking for a way to include content from my site in someone else's page, regardless of whether they're running IIS or some other web server. For example, my customer has a page that generates a header, then my contents, then a footer. My contents are retrieved from a SQL server database...
  3. NickBulka

    Make option disabled

    For some reason, the option to Make an exe on the file menu has become disabled (VB6). Anybody know how to fix this? nick bulka
  4. NickBulka

    batch of queries not executing

    Stuartp, When you run queries in this fashion using VB, MS Access is not running. It's actually the JET engine. You can run queries like this without even having Access installed. These queries are synchronous. That is, the first must finish before the second can start, etc. JET will...
  5. NickBulka

    Use DLL without reference?

    There could be alternate methods, but you haven't supplied enough info yet. Are you using COM DLLs or standard Windows DLLs? Windows DLLs use DECLARE statements, or can be accessed via Typelibs, COM DLLs either require a reference to them, or can be instantiated using late binding...
  6. NickBulka

    a required dll file is missing

    Use Microsoft's dependency walker to find which DLLs your app uses, then check to see which one is missing on the target system. Since it seems to be related to ADO, you can try intstalling the latest MDAC. It may take care of the problem. nick bulka
  7. NickBulka

    Better Performance

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/optimsql/odp_tun_1a_6x45.asp nick bulka
  8. NickBulka

    Out of Stack Space Error

    I hope this code isn't from frmMain. nick bulka
  9. NickBulka

    Need my custom browser to display only text

    In the downloadcomplete event, go through the page source and strip out the <img> tags nick bulka
  10. NickBulka

    vb.net tutorial

    If you don't mind spending 15.00, this is a good site where you can download hours of .NET tutorial videos. There are videos on the IDE, VB.Net, C#, ASP.Net, XML, etc. Well worth the 15 bucks http://www.learnvisualstudio.net nick bulka
  11. NickBulka

    Asynchronous Stored Procedure Call - Issues!

    You'll want to use the recordset object to execute the proc. If you declare your recordset object withevents, you'll be able to get progress events. Here's a code snippet to get you going: cmd.CommandType = adCmdStoredProc cmd.CommandText = &quot;gd.GET_DEPLETIONS&quot; With...
  12. NickBulka

    Tricky one? MSSQL 'image' data into CDO.Message attachment

    You'll need to first get the file out of the database and write it to the disk. There are two methods in ADO to do this: GetChunk and the Stream Object. Using the stream object is, IMO, the best approach. http://support.microsoft.com/default.aspx?scid=kb;EN-US;q258038 nick bulka
  13. NickBulka

    MultiThreading in Vb uing ActiveX EXE

    So what's the question? nick bulka
  14. NickBulka

    FileCopy won't work!

    You need to specify filenames, not foldernames to filecopy. In order to include all files and all subfolders, you will need to recursively drill down into your folder hierarchy, copying a single file at a time. nick bulka
  15. NickBulka

    Visual BASIC Programmers Journal?

    Snaggs, The VBPJ archives are available at: http://www.fawcette.com/archives/magazines/vsm/ As far as I know, VBPJ is now called Visual Studio magazine. I think .Net magazine is a separate publication nick bulka

Part and Inventory Search

Back
Top