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

  1. barrykellett

    Looping Issue

    I have a Football League database which stores several tables including a table with Team Details and a table which stores the results of fixtures of those teams. For Example, My teams table looks like this: TeamID SeasonID LeagueID DivisionID Name 1 1 1...
  2. barrykellett

    Formatting SQL in string format

    I am trying to use the following SQL code: SELECT t.Title, DCount('[username]','[guestbook]','[threadid] = ' & gb.threadid) AS CountAllReplies, gb.username FROM guestbook AS gb INNER JOIN thread AS t ON gb.threadid=t.threadid WHERE (((gb.Original)=False)) ORDER BY gb.thedate DESC , t.Title...
  3. barrykellett

    Datagrid Checkbox

    Hi all I need to create a datagrid with a checkbox in each row which will allow me to choose the clicked row when i press a button on the form. Pretty much like the address book on yahoo email. Anyone with any examples? Ta BK
  4. barrykellett

    Passing text box content

    I have an email page and a seperate page for choosing email addresses for the email. How can I click a button on the addresses page that will take the items in a text box in it and transfer them into the address bar on my main email window, closing the addresses window in the process?
  5. barrykellett

    Passing text box content

    I have an email page (In asp.net) and a seperate page for choosing email addresses for the email. How can I click a button on the addresses page that will take the items in a text box in it (A list of addresses I have processed in the asp.net code) and transfer them into the address bar on my...
  6. barrykellett

    Custom Paging

    Is there a way I can page a massive amount of items in a checkboxlist? Its a list of email addresses and its currently about 100 items long! I want to be able to select items in the check box list and then page to the following pages of checkboxes and choose more addresses. Thanks :)
  7. barrykellett

    Creating a count column

    I am making a simple guestbook using an access database and have two tables, one with the thread title and one with all the thread replies. I use this SQL to create a table of thread titles: SELECT thread.threadid, thread.Title, thread.threaddate, guestbook.username, guestbook.ID FROM guestbook...
  8. barrykellett

    Creating a count column

    I am making a simple guestbook using an access database and have two tables, one with the thread title and one with all the thread replies. I use this SQL to create a table of thread titles: SELECT thread.threadid, thread.Title, thread.threaddate, guestbook.username, guestbook.ID FROM guestbook...
  9. barrykellett

    Recursive string creation

    Hi, I have the following simple piece of code: For Each Item In ListBox1.Items If Item.Selected Then Stuff = Stuff & "," & Item.Text End If Next This Will create me a String of email addresses seperated by ","...
  10. barrykellett

    Working with system folders

    I need to produce some sample code which will produce a list of folders and sub folders and the files in these folders. Would anyone have a sample piece of code that would do this? I have been searching for a long long time on the web without much success for this.
  11. barrykellett

    Problem with recursive file listing functions

    The below snippet of code: If includeFiles Then For Each pattern As String In filePattern.Split(";"c) al.AddRange(dirInfo.GetFiles(pattern)) Next End If Gives the error: Compiler Error Message: BC30451: Name 'pattern' is not declared. Source Error: Line 39: If includeFiles...
  12. barrykellett

    PagedDataSource problem

    I have a Major headache with this so help please... Say I have a search page which has two panels (only one ever visible at a time). I have a search panel, which has a few inputs an creates a sql query and dataset.when submitted, search panel is hidden, and results panel is shown. I tie a...
  13. barrykellett

    Web.Config Help

    Below is my web.config file. I have set it up to try and let a user access ANY page in my application except for the one named guestbook.aspx It is giving me the following configuration error however - "Parser Error Message: It is an error to use a section registered as...
  14. barrykellett

    DYNAMIC DROPDOWNLIST

    How do I retain information from a dynamically created drop down list when the list posts back to the server? I think that is my problem when i try to use the selected item in a dropdownlist as the selection is in a different sub procedure than the creation of the list...
  15. barrykellett

    Calendar Control

    Hi all - I want to have a calendar control on my webpage that will access an MS Access database with minimum data and change the colour of cells that have events on that day. I know I need to use the DayRender event, but I am absolutely clueless how to do this , can anyone help? Ultimately I...
  16. barrykellett

    Login Scipt

    Hi - I am fairly new to ASP.net, but have created a few pages on my sites using various asp.net elements including using databases to create a simple messageboard with datagrids. However I am trying to create a login page using an access database. I have a copy of a script from "asp.net...

Part and Inventory Search

Back
Top