Search results for query: *

  • Users: palehorse
  • Content: Threads
  • Order by date
  1. palehorse

    Sorting works - sort of??

    Hello everyone, I have a datagrid that should be sorting two particular columns when the header is clicked. Well - one column is sorting fine - the other sorts fine up until the end and is out of order - but only when you get to the end of the list. This is my code Private Function...
  2. palehorse

    Http Error 403.1 Issue after deployment

    Hello everyone, I have an ongoing issue with my hosting company and can't seem to find a solution so I thought I would run it by you guys to see if I am doing something wrong. I upload my site directly from Visual Studio.net via the "Copy Project" method using the FrontPage Web Access...
  3. palehorse

    Complicated SQL issue - please help

    Hello, I have two tables structured like so: (top are fields, bottom is data) TABLEA job_id,user 100,user1 102,user1 103,user2 101,user2 TABLEB job_id 100 101 102 103 Table A represents all the current jobs the user has Table B represents all the jobs available to the users User logs...
  4. palehorse

    Requires Internet Explorer?

    Hello guys/gals, I am trying to figure out how to get my site to require Internet Explorer for a certain page - but can't seem to get it right. I have tried something to the effect of: If Not Request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"...
  5. palehorse

    Abandon Selected Session

    Hello, I have been trying to figure out how to abandon a selected session. I have a page that pulls up all the current people logged into the web application, along with their session id. Is there a way to abandon which ever session I have selected? Meaning, is there something I can do...
  6. palehorse

    Who is logged in?

    Hello all, I have been learning about Sessions and it is pretty exciting. What I can't figure out how to do is - keep a record of "who is logged in" Let's say five people log into my webform. I want to have a separate page for an admin to log into and have the page display evey logged in...
  7. palehorse

    RegularExpressionValidator

    Hello. I am trying to format my ValidationExpression to allow text to be entered these 4 ways only (note, 1 stands for any number and A stands for any letter) aa1111a aa 1111a 1111aa1111 1111 aa1111 Seperatley, the following works: ^[a-zA-Z]{2}\s*\d{4}[a-zA-Z]{1} validates: aa1111a or aa...
  8. palehorse

    Formatting Text: How To?

    I have a textbox and a button. no matter what is entered in the textbox - I want a space to appear after the first two characters when the button is clicked. So it will happen like this: textbox = AA1111B - button clicked - textbox = AA 1111B I have tried, format(textbox.text, "##...
  9. palehorse

    complicated SELECT statement

    Hello everyone, I have something that has been bothering me for a while now. It seems to be a complicated thing for me since I can't seem to find a resolution. I have an access db that I am working with. It holds data on equipment for different locations. setup is like so: Columns...
  10. palehorse

    Creating Sessions: How To?

    Hello, I have been looking for some help/tutorial on how to create a session. What I want to do is allow a user to login, depending on the user - certain tables are displayed (or whatever). The closest I got to sombody telling me how to do this was to create a session. When I asked how to do...
  11. palehorse

    Problem Generating Table

    Hello everyone, I am trying to generate a table on my form with rows/cells. I can do this fine with response.write; however, I am trying to pull away from that. What I am using is this: Dim tr As TableRow Dim td As TableCell Dim tbl As Table Dim phAs PlaceHolder tr = New TableRow td = New...
  12. palehorse

    Uploading Files To Server: Having Problems

    Hello All, I have this program Actually, I have the idea of it. I am very new to programming and I was hoping somebody could help me out here... What I need it to do is, when a User is selected - the program goes to a certain directory on their machine according to the user selected and...
  13. palehorse

    Simple Question about Annoying Issue

    Hello all, I am new to VB.NET and have a simple question for you. Besides "Don't change then name of your control!" or "Make sure you name it right the first time!" How do I get my code to reflect the changing of the name of one of my controls? For instance, I have a button named btnHello...
  14. palehorse

    Record Navigation in VB.NET: How To?

    I am able to do a search for a certain record in my Access Database, however, I also want the capability to click a button to navigate through each record and have the program know when I am at the last record so it can't go further, or know when I am at the first record so it can't go...
  15. palehorse

    Passing Values Between Forms

    Hello All, To start off, I am new at programming. I have a school project that has me stumped and for some time now at that. Form1 has textboxes and a button. When the button is pressed, thevalues of these textboxes are passed to the textboxes on Form2. WhenForm2 loads, it creates a child...
Back
Top