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 Mike Lewis 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: qwert231
  • Order by date
  1. qwert231

    Getting only Month from db into drop down

    Thank you! Awesome! So simple and easy! I love it! Mark Kenyon II http://www.geocities.com/qwert231
  2. qwert231

    Getting only Month from db into drop down

    I want to get a list of months from my database. I want my drop down list to show only months that have orders. I have SQL query to get the number of the month, but how can I convert it to text? Mark Kenyon II http://www.geocities.com/qwert231
  3. qwert231

    Please, best databinding to Textboxes practices.

    Yea, but it was a while ago. I believe I had to set the BindingContext of the form (Me.BindingContext.Position = 0) or something like that. Mark Kenyon II http://www.geocities.com/qwert231
  4. qwert231

    I want to learn VB.NET, any book recommendations?

    Check out my page: www.geocities.com/qwert231 I have some book recomendations there.
  5. qwert231

    Using DropDownList in Datalist for multiple items.

    Thank you. I think you're starting to see it. I have the ddList populating correctly, even selecting the correct value. Now all I need is that when they change the value and hit submit the new value is loaded into the database. As well as if they changed the checkbox and/or the textbox. I am...
  6. qwert231

    Using DropDownList in Datalist for multiple items.

    Actually, you are a bit mistaken. I am not using a listbox, I am using a DataList, which is similar to a Datagrid. There are multiple items in the DataList representing rows of a datatable. Each item (cell) containts a radiobutton, textbox, and a drop down list. <asp:datalist...
  7. qwert231

    Mass changes from a datalist.

    I have my datalist with one check box, and one text box. Is there a way to just have a data adapter update set all the changes at the database? Or do I have to read through each datalist item and update one at a time?
  8. qwert231

    Using DropDownList in Datalist for multiple items.

    Thanks Is, actually, I am doing an ItemDataBound event that finds my Drop down, sets it's datasource, and also, sets it's Selected. Here's the code: Private Sub dlTest_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataListItemEventArgs) Handles dlTest.ItemDataBound...
  9. qwert231

    Using DropDownList in Datalist for multiple items.

    I have a datalist that will show a dropdownlist for every item. I want that datalist to reflect a value stored in the database as well as allowing the user to change that value with one of the other items in the list. Any pointers?
  10. qwert231

    Set decimal places in typed dataset?

    Hmm... I design time DataBind the textbox with a typed dataset, and I didn't notice before, but with VS 2k3 you have a drop down box that allows you to specify formatting. Thanks for the tips tho.
  11. qwert231

    Set decimal places in typed dataset?

    Hmm... DataFormatString isn't available in a Text Box. Also, I don't want to have to run code on every value returned from the database.
  12. qwert231

    Set decimal places in typed dataset?

    I have a typed dataset that gets filled from a SQL table with money datatype fields. When I bind to my text boxes I get 4 decimal places. What's the best way to show only 2 decimal places? Thanks.
  13. qwert231

    Can textboxes have onUnFocus events?

    Thanks, forgot about that one. onBlur, makes total sense, doesn't it.
  14. qwert231

    DataList with Radio buttons?

    Still don't know how to get dynamically generated radio buttons to work as a group in a datalist/grid.
  15. qwert231

    Can textboxes have onUnFocus events?

    I want a VB.Net event to fire when the cursor moves out of the text box. Can I do this? If so, how?
  16. qwert231

    When I add the WHERE clause mGroup

    No error. When I execute the SP I pass in an nvarchar value (just a string). Incidentally, I am caling this from ADO.Net.
  17. qwert231

    When I add the WHERE clause mGroup

    When I add the WHERE clause mGroup = @Group my query breaks, but when I drop that part (the part in red) it works. Any ideas why? The mGroup field is a nvarchar(50) field. DECLARE @Job int, @Group nvarchar(50) INSERT INTO #TempTable ( ImageName ) SELECT ImageName FROM Photos WHERE...
  18. qwert231

    I wanna get @@Identity from a stored procedure.

    Here is what I have: CREATE PROCEDURE dbo.MakeSession @month int, @job int, @MDate smalldatetime, @SesID int OUTPUT AS INSERT INTO Sessions (EvntMonth, JobNumber, SessionDate) VALUES (@month, @job, @MDate) SELECT @SesID = @@IDENTITY I want to get SesID from an ExecuteScalar call from...
  19. qwert231

    Where can I store values for a WinService?

    That seems like a lot of code. I found this site: http://www.c-sharpcorner.com/Code/2002/May/SaveNRestoreFormSettings.asp I think I can use that. XML... seems better. Sorry.
  20. qwert231

    Where can I store values for a WinService?

    kcj402003, Any advice on using an ini file? I have never done it. I have used XML, but don't know if I need that here.

Part and Inventory Search

Back
Top