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 strongm 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: *

  • Users: Modica82
  • Order by date
  1. Modica82

    New needs help with dropdown list

    Hi, your insert code maybe need to change. AddSQL &= "'" & Me.ddlLst.UniqueID & "')" should probably be AddSQL &= "'" & Me.ddlLst.selectedItem.Value & "')" this is untested and i havnt done any .Net for a bit so give it a try. Rob ---------------------------------------...
  2. Modica82

    Dynamically Display Various Crystal Reports

    Maybe this could help. i have done it but ages ago. http://aspalliance.com/661 rob --------------------------------------- http://www.thatssolastseason.co.uk
  3. Modica82

    Firefox overlap problem

    ha i wish it had been an hour and 3 minutes!!! --------------------------------------- http://www.thatssolastseason.co.uk
  4. Modica82

    Firefox overlap problem

    Problem is resolved!!! finally. http://www.sitepoint.com/forums/showthread.php?p=3265812&posted=1#post3265812 --------------------------------------- http://www.thatssolastseason.co.uk
  5. Modica82

    Firefox overlap problem

    Hi all, I have a weird problem with text overlapping in firefox on mac and linux. It does seem to happen on windows firefox but once i refresh the page it dissapears. I am on a windows machine and have to use http://www.browsercam.com/ to see test the pages. I have no idea what the problem...
  6. Modica82

    Providing a seach for my site

    THanks for the repsponces, i did think it was out of scope for the section, but gave it a shot. Looks like google is the way, thanks again! Rob --------------------------------------- http://www.thatssolastseason.co.uk
  7. Modica82

    Providing a seach for my site

    Hi All, Not sure this is the right forum, i want to create a simple search for my HTML pages, but not use the google site search facility, i want to create my own. I have written many search routines, but all have been dynamic database driven searches, i am a bit confused on how i can create a...
  8. Modica82

    Dynamically creating ASPX pages

    Hi all, i am in the process of designing a content management system, and i really want to take full advantage of ASP.Net, so i have a question which i am not sure is possible or not, but have seen something similar working. I want to give the users the ability of to creat there own pages, but...
  9. Modica82

    Using session in back button what do you think?

    Hi all, I have to code a bit of a pain of a back button. Its not required on all pages but where it is required there are quite a few different factors that need to be address, like for instance i have a favourites folder page that links to products, once on products you can add the product to...
  10. Modica82

    Cached DataSet not working

    Hi Boulderbum, Still no luck, the second time the page loads and the item is in cache even though it grabs it from the Cache it does not bind it to the DataGrid, which is really strange. This is starting to get very fustrating :-(. Anymore ideas?? Rob ---------------------------------------...
  11. Modica82

    Cached DataSet not working

    I have noticed on thing. I do have a seperate web.config file in this directory, that is not the same as the default one. Is there anything in the web.config that i could be missing, this one is very basic. <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.web>...
  12. Modica82

    hyperlink to refresh formview

    Just use a linkbutton and the page will refresh on itself anyway, then you can put any logic you want performed on that click in the event handler of the link control. Rob --------------------------------------- http://www.thatssolastseason.co.uk
  13. Modica82

    Cached DataSet not working

    Yeah it does, Response.Write(dv.Table.Rows.Count) returns 861, the same is does the first time when the dataset is not in cache. I have no idea why it is not binding, i am very confused!! Rob --------------------------------------- http://www.thatssolastseason.co.uk
  14. Modica82

    Cached DataSet not working

    Hi VbKris, The thing is the the grid will be bound each time becuase in reality there is no postback on this page. The page gets launched from a button click which opens up a popup, but there are no server side controls on the page that will cause a postback, so everytime this page is...
  15. Modica82

    Cached DataSet not working

    Hi BoulderBum, 1) ViewState is not disbled 2) The call is made on page load, but is only done when it is not a postback. 3) i am not 100% sure what you mean here, but i have just created a dataset, created the columns using the property builder and bind the dataset to it. Still not sure why...
  16. Modica82

    Cached DataSet not working

    Hi all, I have a page where i want to cache a dataset for 30 seconds. When the dataset is not in Cache the page loads fine and it shows my data. Reloading the page, all the data binded to the grid dissapears. I know that the cached data set is in memory and it contains the same number of rows...
  17. Modica82

    ASP.Net page not passing variables to sub report in crystal

    Hi, the problem was somehow down to my stored procedure. Although it ran and returned data, the ASP.Net PDF generator did not like it, had a little play around and if worked, but i cant for the life of me understand what i changed as the code looks exactly the same. Rob...
  18. Modica82

    Object Not set to an instance of an object DataReader

    ha, i have had a lot of the all of the sudden syndrome today. Someone changed my connection string so the permissions to return data were not there, thats why i was getting these errors. Sorry for the post, not required in the end. Rob ---------------------------------------...
  19. Modica82

    Object Not set to an instance of an object DataReader

    Hi all, this code did work so i am a bit confused as to why all of a sudden it doesnt, can anyone see anything that i am missing. The error is with the while loop for the dataReader! Public Function GetQuotes(ByVal Customer As String) As GetQuotesResponse Dim quote As...
  20. Modica82

    ASP.Net page not passing variables to sub report in crystal

    Hi, I have a crystal report that contains several sub reports. Now within the crystal reports IDE the report works correctly and all sub reports are generated and variables that were entered into the first main report are persisted to the sub reports. When i generate the report from my...

Part and Inventory Search

Back
Top