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

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

    Removing Rows from Datagrid Help

    Hi All I have a datagrid that is bound to a recordset as its datasource. Part of the applications operation is the user can select a single item or multiple items in the grid and click a button to remove them. To do this I iterate through the .SelBookmarks and remove the rows by deleting them...
  2. rhnewfie

    Blank at Start of DataCombo?

    I have a datacombo that has a recordset as it's datasource. However, I would like there to be a blank showing so that the user actually has to make a selection so that certian events fire. Anyone know how to do this? Thanks!!
  3. rhnewfie

    Equiv of .NET DataSet/DataTable?

    I am moving back into VB6 for a project after spending quite a bit of time in the .NET world. Now I am wondering if there is a way to accomplish the same thing as filling a dataset (.NET) in VB6 so that I can play with the dataset and then query it for added/modified rows for doing...
  4. rhnewfie

    Creating Banner for Website Help

    Hi All, I have Flash 8 and I want to create a banner for my website using it. Something like a logo flying in and navigation buttons dropping into place or something like that. Could someone point me in the direction of a way to start or a good online tutrial? It would be much appreciated...
  5. rhnewfie

    How to Wrap Text Around a Div?

    I have two divs on my page, one main content div (a square) and another one inside that (another square) that I want to stay up in the top right crner of the main div. So essentially, I want the page text to go down the left side of the main div but keep the inside div up in the top right...
  6. rhnewfie

    DIV Positioning Question - Stacking

    Say I have 4 div's on my page Header Navigation Main Footer How could I set that up so that they stack on top of each other and if say the main div gets taller, the footer just automatically moves down? Thanks!!
  7. rhnewfie

    ComboBox Explodes

    I put a combobox on my form, set the datasource to a datatable, set the value and display members and now when I click on the combo the app crashes. Any ideas? Thanks!
  8. rhnewfie

    Send Email

    Hi All I am a newbie at PHP and am trying to put together a script that will email some form data. Below is what I have but I am getting a compiler error on line 2, unexpected T_STRING if someone could help out it would be great!!! Oh, is there also a way that I could redirect the user to...
  9. rhnewfie

    Stretch BG Image

    Quick question Can I set the background image of my div in my css but have the image stretch to the whole size of the div? Thanks!
  10. rhnewfie

    Master Pages and Overall Site Feel Style ?

    Is it proper architecture to use content pages based on your master page for all of your pages? I would think so but thought I would ask. All of my pages have to have the same look (side bars, top menu, site map etc..) Just wanted to field some opinions. Thanks!
  11. rhnewfie

    Methods That Run on Page Load ?

    I know that the Page_Load event runs when the user clicks on a link to get to a page but what runs when the user types the URL of the page into the browser directly? It seems as if the Page_Load event will not fire when the URL is entered directly. Any help appreciated!!! Thanks for putting up...
  12. rhnewfie

    Combobox Resets on Form Submit?

    When I submit my form data my comboboxes reset themselves (I populate them in the page_load) and the first value is always returned on my submit button click when I insert my data into the database. Anyone know how to prevent this?
  13. rhnewfie

    Yet Another Security/Validation Question...

    As I have posted previously when a user logs into the site I do the following protected void submit_Click(object sender, EventArgs e) { s_Username = this.username.Text.Trim(); s_Password = this.password.Text.Trim(); this.lblMessage.Text = ""; try {...
  14. rhnewfie

    Two Submit Buttons and RequiredFieldValidator ??

    I have a quick question about required field validators. I have a form for adding data and it's associated submit button. The fields have associated required field validators. On the same page I have a logout button. If I am on the form submission page and click the logout button then my...
  15. rhnewfie

    Protecting a Single Page

    In setting up my forms authentication I only need to protect one page for admin use. However, when implementing the forms for authentication it wants to protect everything. I want users to be able to surf the site but have an admin login on the main page that is only used if one wishes to go to...
  16. rhnewfie

    Validation/Authentication Techniques

    Hi All I am moving from classic ASP to ASP.NET so of course still like to use some of the old ways :-) What I want to do (have started) is on validation of user/pass I pass the returned id into a user object which then populates the user data. If I successfully authenticate the user what is...
  17. rhnewfie

    Design View Rendering

    First off I want to thank everyone for putting up with my newbie questions! I am transitioning from classic ASP to ASP.NET with VS2005. For some reason my pages don't render properly in design view but show up fine in the browser, also, if I run my site in debug mode it hits my DB and gets my...
  18. rhnewfie

    Best Way to Display Links

    Hi All I am retrieving a list of article titles and links from the db and want to display a list of links on my page. I have messed around with using a gridview control but it always displays all of the datatable's columns and then repeats my databound columns. What is the best way to display...
  19. rhnewfie

    Multiple Menus from One Sitemap

    I have the following sitemap defined <siteMapNode url="~/Default.aspx" title="Home" description=""> <siteMapNode url="~/Store/Default.aspx" title="Store" description=""> <siteMapNode url="~/Store/ShoppingCart.aspx" title="Shopping Cart" description="" /> </siteMapNode>...
  20. rhnewfie

    Error Processing Master File

    I am getting an error in my web application, it states that it cannot process my master file because the code directory has not yet been built. Anyone have any ideas? I am quite the newbie at this! Oh, also, I created a Default.aspx and selected my master file, then removed the masterfile...

Part and Inventory Search

Back
Top