Search results for query: *

  1. J

    Non Numeric ID Number problems (MS Access)

    When I try this: Private Function DataWrite() as Boolean AddHandler Adapter1.RowUpdated, AddressOf HandleRowUpdated Try Global.Command1 = New OleDbCommand Global.Command1.CommandText = "SELECT @@IDENTITY" Global.Command1.Connection = Connection1 Global.Command1.Connection.Open()...
  2. J

    "Save As..." dialog box needed

    The truth? Our client is cheap and they don't know how to use FTP. We told them about adding some controls to run their queries and such, but they didn't want to pay for the programming time required to put those features in there. Instead, they just want us to make the database download-able so...
  3. J

    "Save As..." dialog box needed

    They have this now, and they do not like it. They want something more secure for their financial transactions database. Anyone can write down the link (on a piece of paper, in Windows History, or in an email) and access the database.
  4. J

    "Save As..." dialog box needed

    How can I display a "Save As..." dialog box using ASP.NET or VB.NET "code behind"? We want to locate our database in a different directory than the website is located on (same server, though), so that random visitors (hackers?) can not stumble upon it with a direct link. I am going to work...
  5. J

    Web Services Examples?

    Looking to do a simple Web Service. I have been spending loads of time on MSDN lately, but their tutorials are introducing 2, 3... sometimes 4 ways of doing a web service in the same step. I'm getting lost! I have tried inserting some of their code, but I get errors on the first line. Could...
Back
Top