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!

Search results for query: *

  1. shatch

    Using VB.NET DLL with VB6 apps

    Goto to Project Properties->ConfigurationProperties->build, check the Register for Com Interop checkbox. This creates a COM interop you can use, add the refernecy myclasses.tlb into your vb6 project
  2. shatch

    IE programming

    <a href="javascript:window.print()">Print Page</a> will bring up the printer dialogue box
  3. shatch

    Regular Expression Validator

    Heres an article on MSDN about creating a custom regex validated textbox http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwinforms/html/custcntrlsamp1.asp You should find that answers your questions.
  4. shatch

    cropping first paragraph

    If you want the first paragraph you could break at the first vbcrlf (enter key) of the text rather than looking for full stops...
  5. shatch

    cropping first paragraph

    You could get the first 100 characters and append '...' to the end, or to make it neater get the first space after the 100th char and do it then so that you get a whole word. That way you get a decent amount of control over the amount of text which is displayed.
  6. shatch

    MSDE + SQL Scrip + Store Procedure?

    Can you try renaming the file so that there is no dbo. at the beginning, there is a possibility that this is causing problems
  7. shatch

    MSDE + SQL Scrip + Store Procedure?

    It looks like everything worked OK, the test file would contain error messages if it hadnt. The relationships would have been created already if you chose to include them in the SQL sript generated from the exisitng database. If you didnt, recreate the SQL script and check the relationships, and...
  8. shatch

    Provider Not Registered on Local Machine

    Are you running the asp.net app from your local machine or a different one?
  9. shatch

    move through from row to row

    I am sure it (SP2) doesnt block select *, this is a key part of the sql language and does have many uses, especially in rapid application development when data changes can be quite frequent.
  10. shatch

    Class library

    LOL i think you may be right there sweep *file > new project*
  11. shatch

    move through from row to row

    Backwards cannot be done in ADO.net without the creation of an offline dataset - creating a datareader is easy for forward-only reads. You will need to create a dataadapter, and use it to fill a dataset which you can then navigate freely. If you have problems doing this, post back and i will help
  12. shatch

    Getting ACL Error on any PHP page I try to call

    In IIS 6.0 you need to specifically set the applications which are allowed to serve web pages. Try adding the PGP.exe to the Web Service Extensions tree in IIS on the server and set it to 'Allow' If this doesnt solve the problem, post back.
  13. shatch

    Can View log.htm but not log.php

    Hi This could be down to PHP not being correctly installed on the web server. What version of IIS are you running, also what error is being returned (404, 500 etc) Thanks
  14. shatch

    MSDE + SQL Scrip + Store Procedure?

    It will if you choose to script those with the database. Right click on DB in enterprise manager All tasks > Generate SQL Script Click SHow All Check Script all objects That will include views, stored procs, tables, functions, etc, etc
  15. shatch

    MSDE + SQL Scrip + Store Procedure?

    I would generate the SQL script as text and once MSDE has been installed on the other computer, run the script using oSQL For example osql /S (local) /E /i createappdata.sql /o createappdata.txt What this means /S (local) - use the server on the local machine /E - integrated windows...
  16. shatch

    Automatic Screen Capture

    Hi Link to a good article with some c# code for doing this properly http://www.developerfusion.com/show/4630/
  17. shatch

    Webdav created custom properties

    Hi Does anyone know a way to make custom properties created with webdav accessible to outlook without making a request to the exchange server. I thought these were held in the custom properties accessed though MAPI, but they are not. Custom properties set though outlook are fine. Any help...
  18. shatch

    creating rtf - need tables too

    Look at http://www.devx.com/asp/Article/17964/1763 More specifically, Page 3 which contains all of the table stuff. Any more questions, just let me know. Alternatively, you can get components which convert HTML to RTF, so you may want to look into those?
  19. shatch

    check if a variable is null

    You can set an integer to DBNull (SQL null essentially) if you wish - Dim myInt as integer = DBNull.Value which is what a null integer coming from a database would be set to. if you are just coding, and not using a database, you could just manually set the integer to -1 and assume that as...
  20. shatch

    check if a variable is null

    Yeah, and its also worth noting that nothing equates to 0 (zero) when dealing with integers

Part and Inventory Search

Back
Top