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 SkipVought 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. jlitondo

    Add Onclick event to Checkboxlist control

    well i got this to work now. What i ended up doing was placing each checkbox in its own anchor tag, and then making the javascript function call through the anchor tag's onclick event.
  2. jlitondo

    Add Onclick event to Checkboxlist control

    i have a checkboxlist and a checkbox control. When the user selects the checkbox, it unchecks all selected items in the checkboxlist and alternatively if any item on the checkboxlist is selected, then it unchecks checkbox. I can accomplish this in code but this also requires that the controls...
  3. jlitondo

    Add Onclick event to Checkboxlist control

    is there a way to add an onclick event to a checkboxlist control?
  4. jlitondo

    SQL criteria based on delimited string

    Thanks gmmastros and r937k for your quick responses. I did a test run of your recommendations and yes it is pretty slow. This is a database that i inherited so i had no control over how the data structure was established. However, i will take the time to normalize this data. Once again, thanks.
  5. jlitondo

    SQL criteria based on delimited string

    Is there a way to run a sql select query based on criteria that might be in a pipe delimited string in a table field? For example if a record has its column value as AB||CD||EF||GH, how would i run the query and select all records where this column has either the value "CD" or "GH"? I can...
  6. jlitondo

    ASP.NET LoginName control

    Either that or store capture the value in a variable so I can do things like db inserts etc. Thanks.
  7. jlitondo

    ASP.NET LoginName control

    The loginname control in vs05 is nice but is there a way to assign the value that it displays into a variable or to another control on the form such as a text box? It does not seem to have any property that can be referenced to retrieve the user login that it displays.
  8. jlitondo

    ASP.Net 20 Data Navigation on a form

    Thanks ca8msm. I did it the "manual" way and sorted my records by the p/k in the dataset, then updated a text box on my page with the current row position with + or -1, and then took this value and passed it to a custom function as the row to retrieve from the dataset. Works great.
  9. jlitondo

    ASP.Net 20 Data Navigation on a form

    I am using textboxes and dropdown lists to display the fields of each record.
  10. jlitondo

    ASP.Net 20 Data Navigation on a form

    I am new to .Net and I have a webform that will be used for adding new records and editing existing ones. I would like the page to display one record at a time, which it is currently doing but is there a way to page through these records by way of clicking a Next or Previous button? I tried...
  11. jlitondo

    Add References using VBA

    This has helpled me tremendously, thanks for sharing. Another star for your collection, cmmrfrds.
  12. jlitondo

    FORMAT A NUMBER - integer AND commas

    Blorf, your tip worked well for me too and dhookom's suggestion is true (speaking from experience) I thought you both deserved stars.
  13. jlitondo

    mshflexgrid, restrict row selection

    Hansu, I out a way to make this work. I don't know how you have implemented data entry on your flex grid but on mine, I am using a floating text box to capture user input. Whenever a user initiates data entry on my grid, I pass focus from it to the floating text box. The sub procedure that...
  14. jlitondo

    Highlight Flexgrid row base on data

    Zemp, I also found your code to be very helpful therefore you deserve another star for that.
  15. jlitondo

    mshflexgrid, restrict row selection

    Were you able to figure this out?
  16. jlitondo

    Using a ActiveX public sub in the Control from a form

    I think that you are getting confused on what a function, a sub and a property are since you've used them interchangeably to describe one thing. I am assuming that your active x control resides in a separate project from your form. If so, the value in your property will not be accesible at...
  17. jlitondo

    Simple ActiveX and Form question

    bilgner, try this: Private sub command1_Click() Label1.Caption = "mytext" Label1.BackColor = &H80000001 Trial.show 0 'this button pops up my form end sub
  18. jlitondo

    [b] Passing a value to a form activated from an ocx [/b]

    You are right MattSTech, the question deviates from the original post. I did a search in other forums for the combo question and found a few possible solutions which I am currently playing with.
  19. jlitondo

    [b] Passing a value to a form activated from an ocx [/b]

    yet another one for you alehawk. I have a combo box with two fields, ItemID and ItemDescription. How would I display ItemDescription on the combo box but only save the ItemId back to the database. So far I am only able to display and save one of them.
  20. jlitondo

    [b] Passing a value to a form activated from an ocx [/b]

    no, just using a datarepeater control that has an ocx embedded in it. But it would look like a datagrid with a blank last row for adding a new record.

Part and Inventory Search

Back
Top