Software Development Network Logo
  • Audio and Video
  • Visual C#
  • Visual Studio
  • Smart Devicet
  • IE Development
  • VS Team System
  • .NET Development
  • Windows Vista
  • Game Technologies
  • Visual Basic
  • SharePoint Products
  • Windows Forms
  • Visual C++
  • Visual FoxPro
  • SQL Server

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

Synced

Member List

Tails111
Mturco11x
Luke2k4
Angry Coder
phamilton7733
pappascd
WoodDrawer
Petknep
Hussain Saffar
tovarish
testuser1
Daikoku
narasiman_jayachandran_2b5374
thalion99
Kestutis
boaz_b
slash85
dr.acv
tass_flint
tonn
Only Title

Synced's Q&A profile

  • Architecture Planning transactions with N-tier, distributed transactions, multiple databases

    Hi Forum I would like to know if there are some best practices for planning/documenting transactions in order to avoid deadlocks. We unfortunately have the bad habit of going into production before discovering deadlocks. The problem is that we have an N-tier architecture where developers can choose to start transactions that spans not just multiple tables but also multiple databases. So it is distributed transactions. It gets quite complex when many people implement transactions, not necessarily calling the resources in the same order. What should I as an architect do - Should I put together a document and have the developers document all transactions, including isolation level and in what order they are calling resour ...Show All

  • Windows Forms Multiple radio buttons

    Can anyone help me please First of all I'm using MS VC++ 2005 Express Edition. I have multiple radio buttons in a form - in three group boxes. I have them in three group boxes as there are three choices to be made by the user on the form. The idea is that the user selects one of the choices from groupbox a, one from groupbox b and a final choice from groupbox c. Depending on the combination of the three choices different outcomes occur. Each radioButton event is handled by code in the form of: private : System::Void radioButton17_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {n Variable_a = 20000; } However once a user makes a choice in the option A box all other radioButton presses are ignored ( ...Show All

  • Visual Studio Express Editions MaskedTextBox.PromptChar Property Problem.

    Hello Every1 I have a Masked textbox and by default its MaskedTextBox.PromptChar Property is set to "_" ( underline Character ), and I want to delete this char and put nothing ( I don`t want any PromptChar in my maskedTextBox). It does`nt allow me to do this, the error message is : Specified character value is not allowed for this property. Can u pls Help me Thnx 4 reply Hi, It is there for a reason otherwise it wouldn't be a masked text box. If you don't like it then use a standard textbox and check your user input on the textChanged event. Regards, S_DS ...Show All

  • Visual Studio 2008 (Pre-release) Design Surface in CIDER

    I was willing to know what makes up the Design Surface in Cider Is it a class derived from Canvas class or Panel class or something else Also, since there is no Winforms DesignSurface equivalent here, is there a way to customize the CIDER Design Surface in the current CTP's Thanks. Nir. In our first release the design surface itself is not customizable or seperately hostable (in the way the Windows Forms design surface is). This is a long term goal but for our first release we felt that this was not as important as having the "end user" features such as snap lines in the designer or as important as being able to write design time for controls. You will be able to write design time for control ...Show All

  • .NET Development Reflection - Load the dll in its domain instead of caller's domain

    Hi, I've been using reflection for quite a while but this time I need to load the dll in its own domain instead of the caller domain. So far I have not been successful. I was wondering if there's a workaround to make this happen or perhaps I should use some other techniques! Any ideas Thanks For remoting across app domains to work the object you are calling must inherit from MarshalByRefObject or be serializable. AppDomain appDomain = AppDomain.CreateDomain("DemoDomain"); DemoLib.Demo demoObj = (DemoLib.Demo)appDomain.CreateInstanceAndUnwrap("DemoLib", "DemoLib.Demo"); demoObj.DoWork(); AppDomain.Unload(AppDomain); or AppDomain appD ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where to find the Default shader for a base?

    Hey Guys, Is there somewhere I can find the default shader code that XNA uses Id like to use this as a base as I only need to make minor changes to the shader... Cheers Shawn Hargreaves - MSFT wrote: We aren't currently shipping the source for BasicEffect. If you think this would be useful, please file a suggestion over on the Connect site. Where is the connect site cheers :) ...Show All

  • Windows Forms FlowLayoutPanel FlowDirection not working when adding controls at runtime

    I have a FlowLayout panel to which I am adding a label and linkview controls at runtime. The panel's FlowDirection property is set to TopDown. However, when I call Controls.Add on the panel at runtime, the controls are still added left to right. Why does this happen If I drag controls onto the panel at design-time, they are added top to bottom as required, it's only when adding at runtime that this happens. DaveRogers wrote: I have a FlowLayout panel to which I am adding a label and linkview controls at runtime. The panel's FlowDirection property is set to TopDown. However, when I call Controls.Add on the panel at runtime, the controls are still added left to right. Why does this happen If I drag con ...Show All

  • Windows Forms Sorting a treeview

    I have extended the TreeNode class to make my own class that has an extra property called 'order'. When my TreeView is initially populated new nodes are assigned a value in their order field. I've also defined my own IComparer class (TreeNodeSorter) that sorts the node based on this order property. When the Tree is populated or a new node is added at a later point then it is inserted in the right place according to the sort. However, I also want to be able to change the 'order' field of an existing node and for it to be then put in the right place. I originally tried this by updating the order field and then calling treeView1.Sort() but it didn't work. Can anyone tell me how I'd go about doing this please Thanks in advance, Tom ...Show All

  • .NET Development System.Web.Mail works fine but System.Net.Mail won't send email

    Hi, I am updating an existing VB.NET 1.1 app to 2.0. The existing app uses the System.Web.Mail namespace to send emails and it works fine, but when I try to update to use the System.Net.Mail namespace it stops working. Has anybody any ideas why The following is the existing code that works: Dim msg As New System.Web.Mail.MailMessage msg.From = "me@work.com" msg.To = "me@hotmail.com" msg.Subject = "Subject" msg.Body = "Body" System.Web.Mail.SmtpMail.SmtpServer.Insert(0, " <<SMTPServerName>> " ) System.Web.Mail.SmtpMail.Send(msg) I've changed the code to the following: Dim client As New System.Net.Mail.SmtpClient( " <&l ...Show All

  • SQL Server Reset tables

    I use Microsoft SQL Server and also I have several tables. One table has ID like PK, and name. ID use autoincrement number mode, and now when I want start form one but not from 156 or like that. I don't know how And also when I delete all data from table an run my apllication and add something in table, it starts form last number, not from one. Maybe can I do it from SQL menagement studio How I can reset table and start from 1 Hi, have a look in the BOL for the following command: DBCC CHECKIDENT ('HumanResources.Employee', RESEED, 30) HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Basic Start program with Sub Main problem

    I have just started using Visual Studio 2005 Visual Basic. I can not seem to find how to start my program with Sub Main instead of a form. Any help would be appreciated. Nikki From the solution explorer double click on "MyProject" ...this will open the My Project window...from thier select the application tab and then deselect "Enable Application Framework"...once that is disabled you can now select Sub Main as your startup object from the drop down box provided. ...Show All

  • Windows Live Developer Forums How to "GAC" my addin?

    I get the error when i try to use my custom references in my addin, and i searched around and found out that i need to "GAC" my addin in order to be able to use everything i want. I searched around alot but couldnt find anything on how i actually do this. I would be very happy if anyone could explain this to me or atleast link me some info on where i can find out :) Thanks Always search the MSDN ...Show All

  • Visual Studio 'Unable to find the report in the manifest resources' - Build Action is missing??!

    Hello, I have just upgraded my VS2003 project to VS2005. Had a million things to fix, but I'm finally down to the last few. The biggest remaining problem is my Crystal Reports don't work. The error message is below... On googling it the answer seems to be I have to include the *.rpt's as an embedded resource. However, and this is the really odd bit, the properties that should show up in VS2005 to allow me to do that are simply missing! No matter how I fool around with it, there is no Build Action property when I select a file in the Solution Explorer. I notice that if I create a Windows application in VS, the Build Action property (and 3 others in the Advanced category) are available. Just not when I'm working with web projects. ...Show All

  • Visual Studio Team System Cannot Move from Project A to Project B

    I have 2 projects. One is a sort of test/demo code, but if code is ok and we can use it in production we want to move it to our production project. Now I tried the right-click in solution explorer and Move the folder to the other project, but all I keep getting is an error that says " No appropriate mapping exists for D:\MyDocs\Visual Studio 2005\WebSites\OurWeb.Web.Webservices." Can anyone please help. Thanks, Rykie Hey, I know the problem...While moving the folder from one team project to another you should have the MAPPING folder name to the local disk and it should be in the same workspace that you have mapped.....or you can do one thing...you can CLOAK one mapping folder ...Show All

  • Visual Studio Express Editions need help about datagridview with combobox column

    hello just like the title :) i have a datagridview with a comboboxcolumn in it, there is a problem, when i update the combobox cell using my mouse sometimes it doesn't get updated .... (much more doesn't get updated) i wonder why is this a bug i have fill the combobox item in design time. note if i'm changing to textbox cell it's get properly updated. please help me, i just don't know what's wrong since this is should be very simple. thank you very much regards hi, i guess there is a problem in your code, i can't say what is it, because i didn't see your code, if this comboboxcolumn represent any column in your bindingsource does it pick the right value when you run your project ...Show All

©2008 Software Development Network