Rowset is not Bookmarkable Programming Software Development by guru_iyer …, but its giving me an error "Rowset is not bookmarkable.". I've searched a lot, many suggestions include changing… Re: Rowset is not Bookmarkable Programming Software Development by AndreRet I prefer to do it the following way because of a shared recordset... Private Sub Command5_Click() Dim cnGrid As ADODB.Connection Set cnGrid = New ADODB.Connection cnGrid.Open "provider = microsoft.jet.oledb.4.0;persist security info=false;data source = " & "G:\ShopManProject\" & "… Re: Rowset is not Bookmarkable Programming Software Development by guru_iyer Thank you.. Thanks a lot.. The difference was to to provide CursorLocation of ADODB Connection.. Re: Rowset is not Bookmarkable Programming Software Development by AndreRet Only a pleasure. Happy coding. :) need code to display a database in access using Datagrid Programming Software Development by rahmathmail … like this: [B]RunTime Error '7004' The rowset in not bookmarkable[/B] wats' the reason... pls post simlified answers. coz i… Re: need code to display a database in access using Datagrid Programming Software Development by rahmathmail … no[/COLOR] [B]RunTime Error '7004' The rowset in not bookmarkable[/B] please help me. Lucky 13 for Gmail users as new features are revealed Digital Media Digital Marketing Search Engine Strategies by happygeek … to the left column enabling single-click access to any bookmarkable URL directly within Google Mail, which is rather neat. It… Where is the balance between PHP and Jquery/ajax for site dev? Programming Web Development by guyinpv … selection, I can't save that page so it's bookmarkable in the sense that a user can go back to… Re: connect datagrid to access db using ado code in vb6 Programming Software Development by wegdan … did that i had the error: the rowset is not bookmarkable in the line:Set DataGrid2.DataSource = tel_idx the code i… Re: How to update address bar with new URL without reloading the page? Programming Web Development by diafol Give an example of what you want and why you wish to do so. This could be meaningless. Would these changes be bookmarkable, and if so would they provide specific content different to the original, if you entered the new url manually? Re: need code to display a database in access using Datagrid Programming Software Development by ryan311 try to use this rs.open "command to select the table" set datagrid.datasource = rs regards Ryan Riel Re: need code to display a database in access using Datagrid Programming Software Development by rahmathmail hi ryan, the error is still there. just see the error discription i have posted. any idea regards, rahmath. Re: need code to display a database in access using Datagrid Programming Software Development by ryan311 is the con.open is your connection? Re: need code to display a database in access using Datagrid Programming Software Development by ryan311 try this: rs.open "select * from <tablename>", dbConStr, adOpenDynamic, adLockOptimistic set DataGrid.DataSource=rs regards ryan riel Re: need code to display a database in access using Datagrid Programming Software Development by rahmathmail Tried that.... now the error is........ Runtime Error '91': Object variable or with block variable not set [QUOTE]what i'll do....[/QUOTE] pls.......... Re: need code to display a database in access using Datagrid Programming Software Development by ryan311 you should set your rs if your using adodb u can use this set rs = new adodb.recordset rs.open "select * from <tablename>", dbConStr, adOpenDynamic, adLockOptimistic set DataGrid.DataSource=rs Regards Ryan Riel Re: need code to display a database in access using Datagrid Programming Software Development by Joel Salvo 'your code dbConStr = Connection String DataGrid = Name of MS DataGrid Control 6.0 con.open dbConStr rs.open "select * from <tablename>", con, adOpenDynamic, adLockOptimistic set DataGrid.DataSource=rs '======================= 'modified version of your code '======================= 'variable declaration Private … Re: need code to display a database in access using Datagrid Programming Software Development by rahmathmail sorry, the error is still there. is there any property of datagrid that must be set while designing before executing? regards, rahmath. Re: need code to display a database in access using Datagrid Programming Software Development by Jx_Man check the references of your project. Re: need code to display a database in access using Datagrid Programming Software Development by rahmathmail hi, rahmath here, i tried many time. reffered somany books. and sites too. just for this prob. Actually i'm not student. i'a job seeking person. i'm doin this project just to improve my ability. I have tried many ways those i got from site and books. but still i cant solve the problem. [COLOR="Red"]belive me....[/COLOR] regards, … Re: need code to display a database in access using Datagrid Programming Software Development by Joel Salvo ah okay, try using the mshflexgrid control... it works for me. Re: need code to display a database in access using Datagrid Programming Software Development by rahmathmail i got it. thanx..for all. Re: Where is the balance between PHP and Jquery/ajax for site dev? Programming Web Development by LastMitch >Where is the balance between PHP and Jquery/ajax for site dev? I prefer to used **PHP/MYSQLi** on the websites having **Jquery/Ajax** is not bad. It really depends what you are trying to design. Re: Where is the balance between PHP and Jquery/ajax for site dev? Programming Web Development by soapyillusion The company I work for is developing a new application that primarly works on a jquery/ajax front end with php doing the communcation back and forth from the database. So far we have had no problems. Despite what you may have heard, jquery current verrsion are quite solid. I've had few problems interms of stablility. Truth be told if you plan on … Re: Where is the balance between PHP and Jquery/ajax for site dev? Programming Web Development by diafol I recognize the feeling. As a one-man hobbyist, I tend to write a lot of spaghetti as front-end ideas jump to mind as I'm coding back-end - regardless of a pretty good planning routine. I have little discipline, so I start to mess with jQuery, and oh, then of course the html comes in for a slamming with some class hooks, which inevitably makes we … Re: Where is the balance between PHP and Jquery/ajax for site dev? Programming Web Development by jkon There is a clear barrier, don’t server content ONLY with JS. That doesn’t mean actually that you can’t change the content of the page , but if you do be sure that you serve the same content in a page (without JS). The second barrier I always have in mind isn’t as clean as the first one. Don’t annoy users with AJAX, jQuery and JS. There is a … Re: Where is the balance between PHP and Jquery/ajax for site dev? Programming Web Development by guyinpv One of the biggest problems is the fact that we can't count on javascript. In other words, I could potentially do everything in jquery with ajax and use php on the backend to serve up data only, but then all a person has to do is turn off jscript and the site falls apart or at worst opens security holes. So wasting time building everything with …