Ok, I think I resolved this. If anyone has a better solution. Please feel free to let me know, otherwise, this is how I handled.
'parent table editing is ended generating an identity value
Me.EMP_RVWBindingSource.EndEdit()...
Ok, It's been a while since I posted last and I'm really hoping to get some general feedback/ideas here... My issue is this. I have a databound winform which updates a parent table. (Simple enough with a bindingsource) On that form I have a datagridview which is not bound to the parent table...
Nevermind. I figured out how to handle. I used the keydown event and handled as such...
If e.Control Then
Select Case e.KeyCode
Case Keys.L
MsgBox("CTRL + T Pressed !")
Case Keys.R
MsgBox("CTRL + B Pressed...
Ok, so I just figured out what this issue was... a slight oversight on my behalf. I was letting the application catch the keypress event so that I could use shortcut keys to trigger application behavior, and a case statement was being used to evaluate the KeyAscii integer value... apparently...
Thanks for the response! I'm looking at the properties for the buttons (which are toolstripbuttons) and I don't see either one of those properties listed in the property window... Am I missing something? Should I try to set it to false programatically on application load? It's the same button...
Ok, so I'm having a slight issue and I can't seem to figure it out.
Here is the setup...
Toolstrip is inside of a toolstrip container on a windows form. Those toolstrip buttons cause different custom controls to load into the main pane on the toolstrip container.
For some reason when a...
I may have answered my own question here, but please tell me if this is not proper...
I was able to call this from my custom control classes.. I basically just created a "Startup Class" which I set a property for when my main from loads. then I can get the property over and over (the...
I'm just looking for some general guidance here... I've created a Windows Forms application in vb.net which has several custom controls. Some of the controls have similiar elements, such as comboboxes that may contain the same data that the contrl held on one of the other controls. The...
In case there are any other people just getting started with something like this, I also figured out that rather than making the whole taskpanecontrol public, I should just be exposing the component I need by using get/set. In thisAddin class I added the following:
Public Property myTB() As...
I finally got it.
On thisaddin class i made customtaskpane1 public, then used...
Dim myPane As TaskPaneControl = Globals.ThisAddIn.taskPaneControl1
Dim tb As TextBox = myPane.TextBox1
tb.Text = "Finally got it."
I used the C# to Vb conversion and came up with...
Dim tb As TextBox = Ribbon1.Controls("TaskPaneControl").Controls("textBox1")
tb.text = "My new text value."
However, "Controls" and "Control" does not appear to be available it wants me to create a method stub or shared property. Is there...
I apologize if this isn't the correct forum, but I'm not exactly sure where this should be posted... I just got Visual Studio 2010 and I'm working on a Custom Outlook Add-In. I'm using the example at http://msdn.microsoft.com/en-us/library/bb608590.aspx to tie a new Ribbon to a Custom Pane...
Ok, here is the issue I've encountered... I've been using some DAT files to track some user usage information. Due to an incorrect input, some improperly formatted data has been inserted into my files.
I need to loop through all the DAT files search them line by line and make corrections to...
Thank you, I'll give that a shot when I get into the office in the morning. It's funny, someone recommended your book to me (when I first tried working with temporary tables), and I've had a post-it in my cubicle reminding me to order it for about 4 weeks now... I just submitted my order...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.