Software Development Network Logo
  • Architecture
  • Visual C++
  • Visual Studio
  • VS Team System
  • Windows Live
  • Microsoft ISV
  • Visual FoxPro
  • Visual J#
  • .NET Development
  • Smart Device
  • SQL Server
  • Windows Vista
  • Windows Forms
  • Visual Basic
  • Visual C#

Software Development Network >> omron's Q&A profile

omron

Member List

TigerMan90
jimmmmmmmmmmmmmmmmmmmmmmmmmm
Cool Programmer
mralbert
nvb2008
akosonom
lindi_xp
hector santos
Wau
Jonas Andero-Pettersson
scsi0505
cbrad
Ed Ball
Jeremy Peck
bala_kk
dsarkar
richie_crazy57
Rocinante8
nij
Mandar Y
Only Title

omron's Q&A profile

  • Visual C# Problems with the TextBox :/

    I have added a text box to the form and I am trying to trap the 'enter' key in the key_up event, it does what I want it to do as far as that but I have text in my text box and when the 'enter' key is released the text in this box is added to another text box, now that works well, but it beeps when ever I hit enter in my textbox! Can anyone explain how to prevent this. I don't want the user to hear a beep everytime he hits enter in this textbox while there is data there, only when there is no data to be sent i.e. textbox1.text = Nothing... Thank you for viewing! -will, I'm sorry ming, that block is not really ...Show All

  • Visual Studio Team System Visual Studio 2005 Professional

    Will Visual Studio 2005 Professional be able to access Team Foundation Source Control directly or will we have to use the TFS 'explorer' to do Get/Check out/Check in etc I seem to remember reading that Professional would be able to directly access TFS Source Control but this page http://lab.msdn.microsoft.com/vs2005/productinfo/productline/default.aspx  seems to contradict that (and I can't remember where I read what I think I read) One thing to consider is that SourceSafe is included in the MSDN Premium subscription.  Does this help address your need ...Show All

  • SQL Server Unexpected error during Sept. CTP setup?

    Hi, During the Sept. CTP setup I get the following when it tries to install the Workstation tools.  Anyone else get this and work around it "There was an unexpected failure during the setup wizard.  You may review the setup logs and/or click the help button for more information." I didn't find anything in the logs and when setup asked me to find more info online regarding this message it said there is no further info on this error. Thanks. We fixed several problems with this result in the RTM code. Please repost if you're still having problems installing SQL Server. Paul ...Show All

  • Visual Studio Team System Can the test cases in the test project be merged into one document?

    Hi, I have a test project with test cases in VSTS. Is there any way or work around to put them together and have one document to contain all of the test cases I want Thanks, Leon 1.You can add a Query to selcet all test cases what you want put them into one doncument from your Team Project. 2.Then select all and click "View -> Open Selection in Microsoft Excel". After step 2 you will get an excel file and you can save it. ...Show All

  • Windows Forms SuspendLayout suspends what?

    Can anyone explain why SuspendLayout() does not delay the resizing and repositioning of the Panel control in this short, easy to follow code sample (which is all there is to the entire program)... /* this snippet calls SuspendLayout before changing Size and Location properties of the Window's program's only control, a panel. Then it calls Sleep(6000) as a debugging device to see if the panel is resized AFTER ResumeLayout is called (after Sleep) or before Sleep(6000) is called. The documentation for SuspendLayout (as I read it), indicates that the changes should be delayed till after the 6 second nap, bu ...Show All

  • Smart Device Development StringSplitOptions not working

    In my code I have the following line which splits a string into multiple strings using the end-of-line as a seperator: string [] reqStringArray = reqString.ToString().Split( new string [] { "\\r\\n" }, StringSplitOptions .RemoveEmptyEntries); According to the documentation this function is now supported in the Compact Framework 2 as well, but it doesn't seem to recognize the StringSplitOptions object: "The name 'StringSplitOptions' does not exist in the current context" The weird thing is that the Intellisense does have the StringSplitOptions object in the list when I type it. Any ideas why it is not worki ...Show All

  • Windows Forms DataTable serialization

    Hi all,  I am newbie in serialization usage.I need that datatable object with data to stored in xml file. Is the xml serialization the best way to do it or there are another ways   Is where any known problems that da.ReadXml() function doesn't work ...Show All

  • Visual C# textbox event handler?

    i have a window form which have 3 textbox. I would like to ask for the coding when the user click the third textbox, it will sum up the value of textbox1 and textbox2 and display the total in textbox3. What event handler can be used in this case You can use Click event for your textbox3. Code inside the click event would look something like: double value1, value2; if (!double.TryParse(textBox1.Text, out value1)) { MessageBox.Show("Please enter numeric value in textBox1"); return; } if (!double.TryParse(textBox2.Text, out value2)) { MessageBox.Show(& ...Show All

  • SQL Server Help regarding passing parameters in SQL and Lookup

    Hi, 1) I am using exceute SQL tasks in my control flow. 3 variables have been defined at the package level.They are mapped to 3 parameters respectively in the Execute SQL task. When I try using these parameters in SQL error is thrown.Query is not getting parsed.My connection is OLEDB. Target and source are in SQL Server. Can anyone suggest a workaround 2) Before loading my target I need to define a Lookup . My requirement is if say consumer key matches in fact table then update it else insert. 2 kinds of lookup are available in SSIS dataflow tools. Simple Lookup for exact matching and Fuzzy Lookup for matching based on probabi ...Show All

  • Visual Basic VS.NET 2005 - Single Instance app and command line parameters

    Hi. Would someone be able to provide me with general direction for the following. I am able to easily create a single instance application, thanks to the new functionality built into VS.NET 2005. Now, what I am trying to do is recuperate the command line parameters when switch to the first instance running, when the application is called again. In more details: I have application abc.exe. I run it the first time. Second time I run it, I use the following command : abc.exe /s=123456 Being a single instance application, it will switch the focus to the first instance I ran. Question : How can I recuperate the /s=123456 Thanks for ...Show All

  • Visual Studio Express Editions ToolboxBitmap problem

    Does anyone know why the following does not leave me with a Custom ToolboxBitmap. I have included a 16 x 16 Bitmap called C_Button as an Embedded Resource in the Library. I have a set of controls in the library all with their own Custom bitmaps, but I just get the default Gear bitmap. Is this a restriction because it is an Express Version All comments gratefully received. namespace CcNet2005 { [ToolboxBitmap(typeof(C_Button))] public partial class C_Button : System.Windows.Forms.Button { // Some Code } } Try another overloaded constructor where you can specify name of your embedded icon resource ...Show All

  • Windows Forms refresh() method

    Whye does the refresh method cause the controls on the panel to "shake" and flimmer   Anyone have a solution for this Hmmm...I think the problem only relates to groupboxs. Other controls looks to be ok... ...Show All

  • Software Development for Windows Vista refactored TimerService sample?

    The Beta1 to Beta2 changes doc states that the TimerService has been removed and refactored into the WorkflowSchedulerService. T he Beta1 TimerService and ThreadingService functionality has been refactored into the (new in Beta2) WorkflowSchedulerService and the (renamed) WorkflowPersistenceService. This has resulted in the following changes: o ThreadingService and SynchronousDispatchService are removed ; WorkflowSchedulerService is added o DefaultWorkflowSchedulerService replaces DefaultThreadingService o ManualWorkflowSchedulerService replaces ASPNetThreadingService o ...Show All

  • Windows Forms Generating thumbnails from video file

    After looking around, and not finding any fairly easy solution, we resorted to using the program 'SnatchIt!' - by using its command line functionality The software is unpredictable. Anyone have any ideas, we looked into directx sdk, windows media sdk, no easy solution so far Well, after weeks of looking, I just happened to find what I was looking for today.  Looks like I need to use IExtractImage in the ...Show All

  • Visual Studio Team System web test does not work on localhost

    I tried to test a web app on the local machine, but it does not get the correct responses back when replay the test. (I tried set up tests with different url, http://localhost.., http://127.0.0.1.., http://my_machine_name...,)  But when I try the test on the same web app on a different machine from the machine running visual studio, it works.  ...Show All

©2008 Software Development Network