Search results for query: *

  1. I

    Need Help With Loop

    thank you for the quick reply. I will have to think about this differently it seems. I will try to use a for loop and see if I can figure it out....thank you for the help -Inked
  2. I

    Need Help With Loop

    I am working on a tic tac toe game to learn how to generate a 2d array for the board. I can do this fine my question is how to loop over the board to see if there is a winner or a tie. this is the code I have at the moment, I know there has to be a better way to do this , I am having a difficult...
  3. I

    MVVM Binding Textbox to Class Property in WPF

    I need help binding a textbox to a class property.....I am working in a WPF application using the MVVM design Pattern. I have created a few classes to do this. I have a Customer class public class Customer : BaseModel { private string _customerName; public string...
  4. I

    User Log In System

    thank you for the link..I will check it out! -InkedGFX
  5. I

    User Log In System

    I am developing a Office Manager Web Application that will create and keep track of invoices, customers, inventory, employee time and a few other things. I am at a point in the process where I need to log the user in with a username and password but don't really know how or where to start, I...
  6. I

    update databound DataGrid ?

    Ahhh...damn sorry about that , it is a GridView...I will try what you suggest with a UpdatePanel...Thank You! -InkedGFX
  7. I

    update databound DataGrid ?

    I have searched Google for an answer but have had NO luck finding an answer to this question. I would like to update a DataGrid which is databound to a database....I have a page that creates a new Invoice..and the user can add items to the invoice ,,so when the user adds a item I create a...
  8. I

    both dropdownlist changes?

    I have the trigger set for the selected index changed ....not sure if I need a trigger or not..but its working now! thanks for all your help! -InkedGFX
  9. I

    both dropdownlist changes?

    im an idiot....the problem was the "UpdateMode" in the updatepanel..I had it set to "Always" and it needs to be "Conditional" so everything is working now....thank you for your help..I learned something new with your help! -InkedGFX
  10. I

    both dropdownlist changes?

    Ok..I figured out how to use .First() with your help.....but the text fields still arent being updated , I have them in the same update panel as the dropdown list....below is the html code <div class="panel-body"> <asp:UpdatePanel ID="UpdatePanel1" runat="server"...
  11. I

    both dropdownlist changes?

    also, Im not quite sure how to use .first() with what I have....if I had an array of ints I can see how this would work ...but I have an object with 3 attributes protected void DropDownList2_SelectedIndexChanged(object sender, EventArgs e) { using (DB_ClassDataContext...
  12. I

    both dropdownlist changes?

    when I add the textboxes to the update panel I lose the items in the dropdownlist...the dropdownlist is databound to the Item table in the database......if I dont have the textboxes in the updatepanel all the items are in the dropdownlist...weird!!!!! -InkedGFX
  13. I

    both dropdownlist changes?

    **UPDATE** I set another breakpoint at the selected index changed event for the item number dropdownlist....and stepped thru it...seems the event is firing but isnt setting the textbox text here is the code for the seleceted index changed event protected void...
  14. I

    both dropdownlist changes?

    ok...I have added a update panel to the page with the dropdownlist, and set it up. works as expected now.....so one problem solved...now there is another issue..which was an issue before I added the update panel , so I dont think the update panel is causing this issue......when I choose a item...
  15. I

    both dropdownlist changes?

    I have read the article...allthough I'm quite sure what the author is talking about.....what is a partial postback....? -InkedGFX
  16. I

    both dropdownlist changes?

    ok..let me explain in more detail.... I have 2 dropdown listboxes on the page...one is for a list of customers and the other is for a list of Inventory items.... so when I choose a customer from the customer listbox it will get the info for that customer and fill in the textboxes with the...
  17. I

    both dropdownlist changes?

    ok...yes I will try to clarify..when I choose an item from one dropdown it gets the info for the item selected...but if there is let say "100-101" item number in the item dropdown then it will return the info for the item number dropdown..this makes no sence because the index never changed for...
  18. I

    both dropdownlist changes?

    I have 2 dropdownlist boxes on a Asp web page , they are both bound to a database , each one to a different table. I am using linq to sql to get the info from the table and display the results some text boxes.....the problem is when I select one Item from a dropdown ..it seems to get the info...
  19. I

    Ajax ToolkitScriptManager help!

    yes, you are correct I changed the "scriptmanager" in the master page to "toolkitscriptmanager" then added this "<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>" to the top of the master page and each page that uses a ajax component....and everything...
  20. I

    Ajax ToolkitScriptManager help!

    when I add the calendar extender to the asp page and try to add the scriptmanager , when I test the page in the browser I get an error "cannot have 2 instances of the scriptmanager" but I only have 1 scriptmanager on the page......not sure why Im getting this error. -InkedGFX
Back
Top Bottom