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 Wanet Telecoms Ltd 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. Christineeve

    C# TreeView Control w/ChildNode

    Oops. Here is a more clear version of my code. Thank you for any help. protected void trvMsgBoard_TreeNodePopulate( object sender, TreeNodeEventArgs e) { if (e.Node.ChildNodes.Count == 0) { switch (e.Node.Depth)...
  2. Christineeve

    C# TreeView Control w/ChildNode

    Dear Coding Gurus: My code is created the childnode twice. I cannot figure out what I'm doing wrong. I should have a tree that looks like this: Subject - Parent Child Subject Parent Child What my code is doing is populating the child twice. [code] protected void...
  3. Christineeve

    Base SAS 9.1 Sum One Column of Observations (New To SAS)

    I found the answer on another post, but couldn't get it to work. After working with it for a bit, I did get it to work. select * from Dbi_b_d001p as Pap group by 1
  4. Christineeve

    Base SAS 9.1 Sum One Column of Observations (New To SAS)

    Hi, I'm new to SAS coming over from the Visual Basic/.Net side of the house here. I'm not SAS programmer, yet, I'm currently a SAS Cut-n-Paster. I have some SAS PDFs and they cover SUM and MEANS but using these handouts, I can't get my answer. Your help would be appreciated. I am trying to...
  5. Christineeve

    Help with GetChanges/HasChanges DataTable Code

    Hi Experts, I'm back again with this same issue. If you have time would you please take a look at my code and see if you can see where I've gone wrong? I picked Jeb's code only because I thought I could merge it into my existing procedure. I would guess both are great suggestons. I do...
  6. Christineeve

    Open form after textbox data changed

    Yep, you're right. I was realizing that as I was studying the code. But, I think lostfocus might work?
  7. Christineeve

    Open form after textbox data changed

    Thank you again for your help. I will give this code a whirl. It looks like it makes perfect sense, of course. :)
  8. Christineeve

    Open form after textbox data changed

    I've struggled with my textbox code. I am trying to only launch a form if the textbox data has actually changed. Private Sub txtLastName_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtLastName.TextChanged Try 'If the last name has...
  9. Christineeve

    Help with GetChanges/HasChanges DataTable Code

    Thank you Riverguy for the help as well.
  10. Christineeve

    Help with GetChanges/HasChanges DataTable Code

    Thank you so much! I so appreciate when you respond to my questions because you take the time to teach me the concepts as well. I will work on this later today and post my anticipated success!
  11. Christineeve

    Help with GetChanges/HasChanges DataTable Code

    Jeb, I need to create an audit table after that table is updated. For example, say the manager updated the employee's bankaccount number. That change is updated to the bank table. However, for auditing purposes, I need to pull out the manager's ID, employee ID, the field name, the old value...
  12. Christineeve

    Help with GetChanges/HasChanges DataTable Code

    Below is an example of one of my update procedures. I'd like to capture the changes after update with something like, haschanges or getchanges. Working with the code as it is, I'm sure it's pretty bad, can I call a procedure that will create a datatable with the updates? Then from there I'd...
  13. Christineeve

    Use sql query to populate a form

    Hi Micki, I know there are a lot of ways to accomplish things. I'm sure the better developers here will comment about the code I'm about to post but this is a somewhat clear example of what I did to populate a form (actually a panel on a tab, but I think close enough). This is done with VB.Net...
  14. Christineeve

    More Clear A Form Code

    Thank you. I will be adding one of those to my program and this is helpful. A star for you.
  15. Christineeve

    More Clear A Form Code

    WOOT! This worked, this cleared all the controls in all the groupboxes/panels on my form. So simple I almost missed it. I'll move the code over to my actual project to see if I can get it work. Private Sub cmdCheck_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  16. Christineeve

    More Clear A Form Code

    I'm referencing this thread: http://www.tek-tips.com/viewthread.cfm?qid=1176988 This thread and the answers has helped me finally clear all controls in a groupbox on my form. However, I need help with clearing more than one groupbox on a form. To further complicate the issue: I have a form...
  17. Christineeve

    VB 2010 Retrieve Null Date into Masked Text Box

    Hi, I found the error. It was something simple. Some code that I had tested earlier had become uncommented and that caused the error. The code is working as recommended. My apologies.
  18. Christineeve

    VB 2010 Retrieve Null Date into Masked Text Box

    All of a sudden, this doesn't work anymore. It highlights the default date and says, "Date cannot be converted to Boolean." I don't know what I changed to break this code. It's broken throughout my project now. Any ideas?
  19. Christineeve

    VB 2010 Retrieve Null Date into Masked Text Box

    Ousoonerjoe, Thank you for the "not null" code. I will work with your code until I have "learned it," and apply it to my projects. Thank you so much for taking time to share your knowledge with me.
  20. Christineeve

    VB 2010 Retrieve Null Date into Masked Text Box

    You rock. Despite your signature, I'm certain that you most certainly rock. I was using dbnull all wrong. I could not resolve it w/o an error. Your example worked perfectly and better yet, you've taught me something I struggled with for months.

Part and Inventory Search

Back
Top