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. MrTrue

    Retaining Child Records in Dataset Prior to Parent Creation...

    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()...
  2. MrTrue

    Retaining Child Records in Dataset Prior to Parent Creation...

    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...
  3. MrTrue

    Toolstrip Item is being triggered by "Enter Key"...

    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...
  4. MrTrue

    Toolstrip Item is being triggered by "Enter Key"...

    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...
  5. MrTrue

    Toolstrip Item is being triggered by "Enter Key"...

    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...
  6. MrTrue

    Toolstrip Item is being triggered by "Enter Key"...

    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...
  7. MrTrue

    Reusing a Dataset in Multiple Custom Controls

    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...
  8. MrTrue

    Reusing a Dataset in Multiple Custom Controls

    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...
  9. MrTrue

    Visual Studio Custom Add-Ins

    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...
  10. MrTrue

    Visual Studio Custom Add-Ins

    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."
  11. MrTrue

    Visual Studio Custom Add-Ins

    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...
  12. MrTrue

    Visual Studio Custom Add-Ins

    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...
  13. MrTrue

    Scrubbing bad data in .DAT files (Loop)

    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...
  14. MrTrue

    "Union All" help.

    For some reason I was thinking I could get by with one "group by" clause, but your fix worked like a charm. Thank you!
  15. MrTrue

    "Union All" help.

    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...
  16. MrTrue

    "Union All" help.

    I'm using the ADODB text driver to query some .dat files. I want to be able to query two seperate files and merge the results into one recordset. It seems like a Union query is what I should be doing. Individually, this works... "SELECT a.CE, a.REMARK, b.TEAM, Count(a.REMARK) AS RmkCount "...
  17. MrTrue

    Regular expressions help...

    Thanks for all of your help! I wouldn't have gotten on the right path without it! I was able to make it work by using the + qualifier instead of * . The asterisk is the "perhaps some" while this plus is the "some". Here is what I used pretty much exactly what you had with the pluses as...
  18. MrTrue

    Regular expressions help...

    I'm passing a string of HTML I pulled from an outlook message into a function. I've done this successfully with other regex patterns before, just not sure what I'm doing wrong... Do Until isFinished = True If re.test(theBody) Then With re .Pattern = searchValue...
  19. MrTrue

    Regular expressions help...

    I suppose I might be over analyzing by adding the other stuff, I thought I'd need to accomodate for the situation where a random asterisk might be keyed in somewhere and that's why I had planned on using the "MEMBER NAME" as kind of a validator. I may need to fall back on the 99% rule though...
  20. MrTrue

    Regular expressions help...

    Ok, it's not quite working but I think I may know why... The information I'm pulling in is coming in as HTMLString as follows... style='font-size:8.0pt;font-family:"Courier New"'>MEMBER NAME:&nbsp; DOE*JOHN<o:p></o:p></span></font></p> or style='font-size:8.0pt;font-family:"Courier...

Part and Inventory Search

Back
Top