Search results for query: *

  • Users: Tacec
  • Order by date
  1. T

    Opinions or other ideas for layout

    Ok, well I attached a picture, but since it can't be more than 100 KB it's tiny. Just a general idea of what I'm putting together. ExplorerBar on the left, fields and grid on the right. Each time the user selects an option in the ExplorerBar, the fields and grid on the right change to reflect...
  2. T

    Opinions or other ideas for layout

    I would attach a screenshot if i only knew how... The grid that I use works rather well, and I like the explorerBar to use as the menu. That's decided. I'm just not sure of the best way to display the data entry fields and associated grid. Do I go with the MDI and have to manage multiple forms...
  3. T

    Opinions or other ideas for layout

    Thanks Stonkie, I'm actually using third-party product for the grids; ever heard of Janus? They have some really great controls. As for the splittler option, I'd seen some other posts on similar topics mention the splitter, but doesn't that still require you to uniquely name the same fields...
  4. T

    Opinions or other ideas for layout

    Hello all, I'm designing a project to enter and manage several types of ancillary data for a larger (separate) solution. I've initially come up with a few ideas on how to put this together but wondered if I may not be seeing other options or better ways to do this. Any input would be...
  5. T

    Combobox populate textbox?

    Oh my, you are my hero. Thank you! Works beautifully, of course!
  6. T

    Combobox populate textbox?

    Ok, after dinking around with it a little i found quite a simple answer: Private Sub UiComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UiComboBox1.SelectedIndexChanged TextBox1.AppendText(UiComboBox1.SelectedValue) End Sub I...
  7. T

    Combobox populate textbox?

    Thank you for your help. Unfortunately, if i just call the AppendText, nothing happens at all. If i have the code like this, it just lists the selection in the textbox twice. If another combobox item is selected, it just replaces the duplicate item in the textbox with another duplicate...
  8. T

    Combobox populate textbox?

    Oops, thanks, you're right. I switched those two around. Here's what i have so far and it doesn't append anything, it just keeps changing the text in the textbox to what i select in the combobox: Private Sub AppendTextBox1Text() If TextBox1.Text = "" Then Return...
  9. T

    Combobox populate textbox?

    Hello, I know this is a fairly simple process, but i can't seem to find anything to help me. I have a combobox with a list of values (non bound). I have a textbox. I want the value when selectedvaluechanged in the combobox to populate the textbox and keep appending to the textbox whenever...
  10. T

    Displaying a value when another value is blank...kind of.

    Please forgive, I'm somewhat of a newbie in the SQL world, so the answer to this could be perfectly obvious to you pros out there... I have a table with address information for our clients. Each client can have multiple addresstypes, and therefore multiple addresses associated with their ID...
  11. T

    How to display a URL in a contentplaceholder??

    I'll preface this by saying that I know next to nothing about ASP.net. I've created a basic webpage in .NET with an Infragistics menu on the left side, and a contentplaceholder on the right side. The user should select a menu item (which would be a link to something) and that page should...
  12. T

    Insert a "Bookmark" in a webform?`

    not working..... Thanks for the reply, Paszt. I knew there was some way to do it. I just can't find any documentation on it. How frustrating. I inserted the bookmark on my page, and since I'm running it off my machine, my url is localmachine...etc. This is what I entered: PrivateSub...
  13. T

    controls within a webform table don't work!!

    Disregard! Apparently i had to retype all the code for it to work. o well.
  14. T

    Insert a "Bookmark" in a webform?`

    I've used numerous other programs to bookmark a point within a form using links. Can this be done in a webform using event handlers? (ie. a radio button is clicked, the view jumps to a specific point on the form.) I've found the "Insert Bookmark" option under the Format menu item but can find...
  15. T

    controls within a webform table don't work!!

    I created a webform with various controls, textboxes, checkboxes, etc. The code behind that form worked great. Once I reformatted all the controls within a table so it was better organized, the code no longer worked! None of the names changed on the controls, nothing was changed other than the...
  16. T

    If then statement--help

    Both the NotificationID_New and Old are values taken from a table (Notification). I don't even know if creating the NotificationID_New/Old variables is the best way to handle this anyway. Perhaps not. I just need some info on how to designate when the message (or notificationID) has changed...
  17. T

    If then statement--help

    Lets see, how to describe... Im building a program with an ms agent which says a canned message, pulled from a table. If messageA in the table is stated by the agent, it should do X actions. If the active message is changed to another message in the table, the agent should do Y actions. The...
  18. T

    Removing a system tray icon

    I'll preface this by stating that I'm fairly new at .NET. :o I've created a program that runs within the system tray. Once a radio button is clicked, it displays the icon within the tray. When the other radio button is clicked it's supposed to remove the icon from the tray. I've tried...
Back
Top