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

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

Sidon

Member List

Goonie
dilit
caligula
Fster
Rick.H
Faraz_Ahmed
Kimbe
bankit
MRDPrince
Mike737Aviator
melara
Zetabyte
MicMit
HKEC
Johan Nordberg
Arpit Arora
Pablo Rincon
baskark
Jiajia
Darrin Turner
Only Title

Sidon's Q&A profile

  • Visual Studio Team System Team Build fails

    Hi, we have a problem with team builds. I think we already came to the ground of the problem, but we don’t know how to fix the problem. Our desktop build works fine. But from Team Build we get: Solution: , Project: ClientSideComponents.sln, Configuration: Release, Any CPU D:\DataSwiss\DotNet\Deploy\SC\SC\mz workspace\Sources\ClientSideSolution\ClientSideComponents\ClientSideComponents.sln(0,0): error MSB3202: Die Projektdatei ..\..\..\..\Anwendungsdaten\Microsoft\SCV10\ClientSideSolution\ClientSideForms\rmc\rmc_block_src\rmc_block\rmc_block.vbproj was not found. We think the core of the problem is our Solution-file. That’s a part of solution file which works fine at team build compile time: Project("{F184B08F-C81C- ...Show All

  • .NET Development UPnP NAT Traversal using .Net

    Hi, Can anyone guide me to a tutorial which explains how to implement UPnP NAT Traversal using the .Net framework Thanks, phertel ...Show All

  • Windows Forms Datagridview with maskedtextbox column from MS Sample

    I get MS Sample and added it to my project. Everything looks ok, but I get problem with DBNull. I changed a little code to support System.DBNull.Value. But very often, when I double click cell with date in maskedtextbox column, I get error in same place with error ExceptionOutOfRange. If first I select new line (new record), and then double click date cell, there is no error. I checked with debugger, at error place: this.RowIndex is -1, Column.Index is 7. public override void InitializeEditingControl(int rowIndex, object initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle) { MaskedTextBoxEditingControl mtbec; MaskedTextBoxColumn mtbcol; Dat ...Show All

  • Windows Forms How to insert, update, delete using DataGrid ?

    Hi I am develoing a C# and MS Access application in which I have to display table rows and columns in a DataGrid AND in the same form I have to perform insert, update, delete operations. Displaying the table's contents is not a problem but I need help in implementing insert, update and delete operations. Thanx. Hi gadym, To do this you must create a dataset which would contain your 3 datatables. After that create relationships between your datatables inside your dataset. Try using DataRelation to do that. Here's a MSDN documentation regarding the DataRelation Class. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemdatadatarelationclasstopic.asp cheers, ...Show All

  • .NET Development Threadpool Issue with WaitHandle.WaitAll FatalExecutionEngineError

    I have a process that goes out to each machine on the network and executes a few WMI calls. In the case that there is an error it takes about 5 seconds before it continues forward. 5 Seconds X 3000 Computers is more time that I have available. So, I have been messing around with ThreadPools. My thought is that I will kick off the WMI calls for 10 different machines then wait for them all to return. This way it only takes 5 seconds for each group of 10 machines. I have been using the Fibonacci Example to come up with the test code below but on my WaitHandle.WaitAll I am getting a FatalExecutionEngineError: Error: FatalExecutionEngineError was detected Message: The runtime has encountered a fatal error. The add ...Show All

  • Visual Studio Team System Vsts COnnection Problem

    When i try to connect to TFS server it is not connecting instead i am getting "Client found response content type of 'text/html; charset = utf-8 ' , but expected 'text/xml'. The request failed with the error message:- No I didn't get an error as "page cannot displayed" instead iam getting client found response content type of 'text/html; charset=utf-8', but expected 'text/xml' . the request failed with the error message:--<html> <head> <title> runtime error </title> <style> body ----------------------------------------------------------------------------------some html stuff--------------------------------server error in '/services' application.------------------------------- ...Show All

  • Visual Basic User Control problem

    I have a UserControl which basically shows in a textbox the content of a row in a table relationally linked to another table in a database and also a combobox containing the contents of that second table. This mean that as you travel through the main table you can see what the linked text entries are and have a combobox when entering a new record. I started the table in VB.NET 2002 and upgraded it to VB2005 Express and have been using it successfully for some months.So, it has saved considerable code and added to my VB skills. However, having recently discovered the MaxDropDown size property for the combobox I wanted to add a line to the UserControl to fix the MaxDropDown size to be the size of the records in the table it accesses. T ...Show All

  • Windows Forms How to change font color on a rich text box on a child MDI form.

    I am trying to write a sample program for school. The program consist of creating a MDI application that when a user clicks the "New" button a child form is created. On this child form, it simply has a rich text box, so basically when you click "New" it makes something that looks like a blank NotePad file. The program is suppose to allow the user to change the Font Face, Size and Color of the active MDI form. I can successfully change the font face and the size, but I am unable to change the font color. I have a simple class file that generates the new child MDI form with the RichTextBox control. When the user clicks the "New" button, it runs the following code: frmTextPad myChildTextPad = ne ...Show All

  • Windows Forms docking problem in panels/split containers

    I have put a text box and a datagridview control in one panel of a split container. The text box is docked to the top, because it is the title bar for the datagridview. The datagridview is anchored to the bottom and right. The problem is when the form is resized, the top of the datagridview moves away from or into the text box (depending on the sizing direction. but if I set it to Fill, the label covers up the column headings of the datagrid. Is there a way to anchor the top of the datagridview control to the bottom of the text box If not, how to deal with this situation Hello All. Steve, check out this link . I suspect you're having a problem with the z-order of your controls. HTH. ...Show All

  • Visual Studio Express Editions Why have case sensitivity in a language?

    I started learning VB 2005 at first but then decided that for what I wish to do, C# was a better fit. I'm new to programming and when I discocvered that C# is a case-sensitive language, I couldn't think of any reasons why this should be the case. Surely case-sensitivity raises the chances of subtle problems in code due to mis-spelled variables, function names etc So why not do away with case-sensitivity if this is all it brings Or is there some, as yet unexplained, reason for case-sensitivuty in a language that I haven't come across in my learning process yet - Seef Hi, What ahmedilyas is saying is spot on, but me being a beginner myself I thought I might be able to add a little bit more to th ...Show All

  • SQL Server Help With CLuster Install

    2 issues: 1. have 4 drives and all are within the SQL resource group but can see only 1 drive through management studio when doing a backup 2. Is restore only possible through the /backup folder on the default installation path as it is a small drive so can a restore be possible from any other locations Any help You must be running Management Studio on the same machine which is physically hosting the database at the moment. I suspect that the reason you cannot see all disks available to SQL is that you are not running on the same node. Backups must be done locally. (using scheduled Maintenance Plans will ensure that the backups always run on the same node as the database is running.) You can backup to a ...Show All

  • SQL Server Exception has been thrown by the target of an invocation

    I have this exception on page loading, is there any solution for this how can I fix this exception... Just out of curiosity, have you searched Google for your error string A whole bunch of results are there waiting for your reading pleasure. Looks like a .net Framework bug. ...Show All

  • Visual Studio proxygen - using an external type as a base type and generics

    Hi, This is a VSTA question, so this seems the closest forum for it. I'm trying to pass a class MyObjectList: List<MyObject>{} from the host to an Add-In, but (as it states in the documentation) proxygen doesn't support generics. So, changing by base type to ArrayList, proxygen then complains that using an external type as a base type won't work. Great. What is the suggested method for passing a list of some sort from the host to the addin Is there a way to use Add-Ins without requiring a proxy so as to retain all the flexibility of .net code and still have an Embedded IDE that can debug those add-ins in a seamless non-destructive way Many thanks, Alec Alec, System ...Show All

  • Windows Forms How can I retrieve SELECT String from VB designer generated ADO objects

    I am trying to get the select string from vb.net 2005 designer generated ADO Objects. Let's say I create a new data source using the IDE which creates a dataset named TestDataSet, which in turn contains a table called Clients. 'Select * from Clients.' I would like to be able to retrieve this select string in my code. Any help will be greatly appreciated. I don't think its the dataset that actually stored the Sql/OleDb Command - the command object which contains your query/Select command you will be looking for the DataAdapter.SelectCommand.CommandText property. do you know the name of your dataAdapter you have created if so, do as above, replacing "DataAdapter" with the dat ...Show All

  • Visual Studio Express Editions Taking a Break

    Decided to take a break from the program I've been working on a play around with something else for a while. What I have done is drawn a rectangle in the paint event of a picturebox, and now I want to place a picture on top of it that is transparent in certain areas so that you will only see the rectangle where the transparency is. Can this be done Thanks Dave, It now works, it's just understanding the syntax , I was going wrong with this line. G.DrawImage(Image.FromFile("d:\temp\gif1.gif"), 0, 0) I didn't know how to get the Image from file. ...Show All

©2008 Software Development Network