Search results

  1. Kodo

    Anybody have luck with Network.Doanload() ?

    make sure you pass user and password along with it.
  2. Kodo

    purpose of dataform wizard

    grab a drink and some cookies http://msdn.microsoft.com/asp.net/learning/learn/newtodevelopment/default.aspx
  3. Kodo

    Frames

    Frames..blah.. Use virtual frames. You build a header file an "index (the changing portion)" and a footer file. You include the header and footer in the index.
  4. Kodo

    How to store check box values in php sessions?

    Tony, the questions you are asking are questions on common tasks in web development; however, if you are asking questions at these points, then I highly recommend purchasing a book on your topics (PHP appears to be what you're using judging from your other posts). You really need to have a...
  5. Kodo

    Enter Into Sub-Datasheet

    did you enforce referential integrity?
  6. Kodo

    Access Interface to SQL

    We're using MSSQL, not MySQL.. If you want to work with MySQL, then you'll need the MySQL drivers (MyODBC) http://www.mysql.com/products/connector/odbc/ http://dev.mysql.com/doc/refman/5.0/en/odbc-connector.html Im not guaranteeing that it will work with access, but if you set it up as an ODBC...
  7. Kodo

    Enter Into Sub-Datasheet

    I didn't follow WindSailor's link. .given that , I would say (off the top of my head) to try using the binding source object and bind your text fields to the the values of your returned data for the "parent" form (i have a demo of that piece in the vb.net forum here). The next part would be use...
  8. Kodo

    my submit button stoped working after chaigng id to id[]

    you don't need to name it with []. That is an array syntax that is native to the language.. If I had 3 check boxes with the same ID then I would access the index of the array of check box values by doing something like this somecontrolname[index].value what you're doing is not necessary.
  9. Kodo

    problem reciving check box values using post method

    ok.. I had the syntax really close.. try this $query = "SELECT * fROM files WHERE id IN(".$_POST['id'].")";
  10. Kodo

    problem reciving check box values using post method

    PHP isn't my language so I'm taking a pot shot at the syntax... $query = "select * from files where id IN(" + $_POST['Id']+ ")";
  11. Kodo

    How to trap "Index or primary key canot contain a null value"

    How about a field valdation before the record gets saved? If FIELD ="" then 'show message 'set focus back to field End IF ? Your user should never be able to get to save the record if required items are not filled in.
  12. Kodo

    SJ McAbney Birthday Boy

    Happy birthday! Enjoy :D
  13. Kodo

    problem reciving check box values using post method

    if the checkboxes have the same name ("POSTID") then they are posted as a concatenated string with comma's as the delimeter, like so. 1,3,6,29,93 and so on and so on. If MySQL supports the "IN" keyword (and I'm sure it does), you won't need to do that, just do: $query = "select...
  14. Kodo

    Why do women hate the 'C' word?

    leave her a decent tip and apologize for the lads grossly inappropriate behavior.
  15. Kodo

    how to pass user info to diffrent pages using sessions?

    here, this should explain it all. http://www.devshed.com/c/a/PHP/Creating-a-Secure-PHP-Login-Script/
  16. Kodo

    CASE statement in HAVING clause

    why don't you set a default value of 0 for ColumnC so when any new record is created ColumnC will have 0. Now ColumnC will never be NULL and you don't have to bother with the case statement.
  17. Kodo

    Help! Respons.Redirect Kicks in Before Button is Clicked

    you can't do that. Either put a javascript function for the onClick event or use a .net control button and apply the redirect to it's event handler.
  18. Kodo

    Automatic Email

    well, theory behind it is. When someone submits a booking, some code fires off to send an email. What you need to tell is what language your website was built in and what type of server it's running on.
  19. Kodo

    Access Interface to SQL

    Skip ODBC. Open access and create an Access Project. If the database is already created, then create an Access Project Using Existing Data other wise, just make a new Access Project Using New Data. Follow the onscreen prompts for the SQL server infomation and bam..you're done.
  20. Kodo

    Catch empty item template?

    That acutally does sound like the more logical way to approach this. Sorry I didn't have a chance to look at your code.. tonights lab was actually quite interactive. Scripting an entire db structure with sprocs and triggers to-boot. Joy.. needless to say it took quite a while and I didn't get a...
Back
Top Bottom