Search results

  1. Kodo

    Am I missing Something??

    it's pretty well propagated already. It's part of the window updates. If you create an msi installer for your app, this dependency is noted on installation and the option to download is displayed to the user, OR, you can distribute this with your exe (not recommended usually for size reasons).
  2. Kodo

    Find Next Record

    look up making custom events
  3. Kodo

    Am I missing Something??

    exe's don't need to be installed. It is more likely that the .NET version you built your app with is not installed on the target machine.
  4. Kodo

    Am I missing Something??

    n-tier http://www.15seconds.com/issue/011023.htm
  5. Kodo

    Am I missing Something??

    aye aye. that there is your firehose :)
  6. Kodo

    Am I missing Something??

    If you guys want to learn more about table adapters and typed datasets like the way you're doing it, then read the tut: http://www.asp.net/Learn/DataAccess/default.aspx?tabid=63 However, following proper techniques, you should be making an attempt to decouple your layers from eachother. That...
  7. Kodo

    Resources / Useful / Tips

    The Enterprise Library (or EntLib) is a superb library indeed! I use it at work relegiously and it saves me loads of time from having to code all my own CRUD. I highly suggest it!
  8. Kodo

    Resources / Useful / Tips

    The DataReader is the closest thing you're going to get to the recordset object. No offense, but what you have created is missing HUGE amounts of functionality that already exists in ADO.NET. I recommend AGAINST using things like the SqlCommandBuilder/ table adapters and any drag n'drop...
  9. Kodo

    VB.Net / MS Access Analogy.

    You have to organize your code files into sections. In the IDE (and more specificially in the solution) you can place folders to organize types of code bases you're working with like Interfaces, Enums, Utility classes and other business objects. The IDE will help you track objects as it fully...
  10. Kodo

    first shot at web.config

    make sure you didn't inadvertantly remove the ending system.web tag
  11. Kodo

    first shot at web.config

    I hear ya man. I had a similar experience like that today..only the error being thrown was in a class that was below a class that the error was being thrown in.. took me some time to figure that one out.. lol
  12. Kodo

    first shot at web.config

    ready to kick yourself? <authentication mode="Forms" /> <forms name=".ASPXFORMSDEMO" loginUrl="logon.aspx" protection="All" path="/" timeout="30" /> </authentication> your first authentication element is closed... :) remove the /> so it looks...
  13. Kodo

    Implementing Custom Controls

    you need to compile the datetimepicker project to a dll. then on your toolbar add a new item and point to the compiled dll.
  14. Kodo

    Adding record in 2005 Express

    take a look here. There are TONS of webcasts to keep you busy :) https://www.msteched.com/content/webcasts.aspx
  15. Kodo

    Unspecified Error

    could be your connections are not being closed. Make sure you are doing Conn.close set Conn=nothing when you're done with the connection
  16. Kodo

    Unspecified Error

    response.write out your dbPath to make sure it's pointing to the write place. then make sure IUSR_[machine_name] has modify rights to the db folder.
  17. Kodo

    Access DB (reports/Table only) on our web page

    You could just export that table as an HTML file.. and then post it.
  18. Kodo

    Resources / Useful / Tips

    heh.. I did the aample code for 6 of those lessons for the winforms :D does that make me famous lol :D
  19. Kodo

    Help !

    type the value of aOption to an integer aOption=request.form("aOption") select case Cint(aOption) case 1 case 2 .....etc etc... end select
  20. Kodo

    Pls Help ! "Unspecified error"

    don't use a DSN.. use a file path connection string. now make sure that the folder that the db is in has IUSR_[machinename] modify rights (machine name is the name of your computer) so something like IUSR_KELVINSQL make sure those rights propagate to all subfolders and files.
Back
Top Bottom