Software Development Network Logo
  • Visual C#
  • Visual FoxPro
  • Visual Basic
  • .NET Development
  • VS Team System
  • Architecture
  • Visual C++
  • Windows Forms
  • Windows Live
  • Smart Device
  • VS Express Editions
  • Visual J#
  • Game Technologies
  • Microsoft ISV
  • Visual Studio

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

difg

Member List

Martina23809
Ned Friend - Microsoft
iliketoeaticecream
hommer
Syed Khasim
Morna
Oliver-LundK.de
Eric Yin
Chris0144
puwa
bunschoten
raj.p
seerg
Darrin Dyson
Stephan Hofmeister
Brian Kitt
doug5516
nx797rd
jkacha
John B. Adams
Only Title

difg's Q&A profile

  • Visual Studio Tools for Office Visio drawing control <short question, long response>

    i'm stuck. there is the ultramarvelous masked visio drawing control. perhaps i installed the sdk for visio and look the tutorial documents, the msdn technical articles and etc... i can't realize if i can or not to embed the control in a web application and change the document that belongs to the control. or i'm doomed because just can be changen whit script languaje and just the properties that the control expose, the other way is ...Show All

  • Visual C# How can I make my user control dragable?

    I have a user control look like a panel.  I want to make its dragable so that user can move it to other location.  How to do this Many many thanks I have earlier asked but got no response so I had to delve into it myself.  It can be tricky because it is easy to get into an infinite loop with MouseOver over yourself. I adapted the solution from a book but I can't remember the title of the book now.  Basically, it i ...Show All

  • .NET Development TableAdapter Update problem

    Hello, i have problem in my application. I create dataset with single table. In MainForm i have 2 texboxes and update button. This is code for update button: [CODE] Klient klient = new Klient(); klient.ShowDialog(); KlientDataSet dataSet = new KlientDataSet(); Serwis.KlientDataSet.KlienciRow klientRow = dataSet.Klienci.NewKlienciRow(); klientRow[0] = Guid.NewGuid(); klientRow[1] = klient.Imie; klientRow[2] = klient.Nazwisko; ...Show All

  • Visual C# Noob XML Question

    I'm trying to read data from an XML file located at http://www.example.com/example.xml . This file is continually updated (contains 10 node elements whos values change dynamically). Is their a way to establish a persistent connection to this as an XmlDocument and use the XmlNodeChangedEventHandler to monitor the nodes as they are updated Like a socket stream I can use a timer to continually check the file and read the nodes with an ...Show All

  • Visual Studio Team System Web site Unit Test: Object reference not set ... error

    I tried to setup unit testing for an existing web site by: 1. Create a new websit by pointing to an existing site. 2. Create a new test project 3. Create a new UnitTestLogon.cs page (code attached below) 4. Inside the test manager and run UnitTestLogon.cs The test can be executed but get Object Reference not set to an object error when loginBox.Text = "UserName"; being hitted. Any help will be appreciated. Thanks. using System; ...Show All

  • SQL Server SSIS and Workstation Edition

    I have done a quick search but wading through the masses of results is a bit time comsuming. What I would like a clear answer to is very simple. Can SSIS be run as a service on the Workstation Edition of SQL 2005, it is an option in the installtaion, however the is not installed as a service. This becomes very anoying when you decide to create a 'Maintenance Plan' and find you can't without SSIS installed, so you do this ... only to fin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where can I get volume textures?

    Does anybody know where I could find some free volume textures to play around with Nico I thought of shooting lots of rays and intersecting it with an arbitrary mesh (or meshes). The DXIntersect() method is probably quite convenient for doing that. You can find out what's inside and what's outside by simply counting the hits... The user could specify the volume texture resolution. Also I like the user ...Show All

  • Visual C++ Spin Controls

    It seems to me that spin controls "are one step behind". The following piece of code is run when I click the spin control: void CJgyroGPSDlg::OnDeltaposSpinComport(NMHDR *pNMHDR, LRESULT *pResult) { LPNMUPDOWN pNMUpDown = reinterpret_cast <LPNMUPDOWN>(pNMHDR); // TODO: Add your control notification handler code here iComPortGPSno = m_ComSpinGPS.GetPos() & 0xffff ; sprintf_s(csComPortGPSname.GetBuf ...Show All

  • Visual Basic vb.NET2005 frustration .....'Unable to copy file "obj\Debug\....." to "bin\Release\......"'

    Recently, but not immediately, I started to get the above error message almost every time I rebuilt my vb.NET application. The only way I know how to proceed is to rename all the \bin\Release\ files. I'm sure this isn't the normal expectation but why do I get it and how can I avoid it Urgent help required please! Geoff what other programs are running at the time, you dont have a second instance of vs with that pr ...Show All

  • Windows Forms TableAdapter and DataSet

    Hi Everyone! I'm new inVB .Net 2005 and my question goes to the ones who knows and have worked with the new resources of 2005, the TableAdapter and the DataSet, using the designer way: So, using the designer way, i drag the fields of my table to the form where i want to do their maintenance, and so, automatically, he created the BindingSource, the TableAdapter and the BindingNavigator, and the textboxs necessary. But there is one of the ...Show All

  • Visual Studio Deploy crystal report VS2005 on windows 2003 server

    Can you plz tell me how to deploy crystal report of VS2005 on windows 2003 server Would you be more specific about your problem deploying Crystal Reports And also, what do you mean by "deploying Crystal Reports " Are you trying to install a winforms application or ASP.net site that utilizes Crystal Reports If you are using Winforms application, then create a SetUp project to create installation fil ...Show All

  • .NET Development How to support interface with MS Access databases in 64-bit applications?

    In my application I used ADO.NET and Microsoft.Jet.OLEDB.4.0 provider. It works in Win32 environment. When I trying to run a 64-bit program, I am getting the following error: "The 'Microsoft.jet.OLEDB.4.0' provider is not registered on the local machine. " Can I add a further related question: 1) I have seen that I should compile my app to target a 32 bit architecture in order ...Show All

  • SQL Server RE-add witness fails

    I start with 3 servers, in High Safety mode with witness. I disconnect the network cable for the witness. Then I remove the witness from the mirroring session: ALTER DATABASE db1 SET WITNESS OFF I reconnect the witness network cable. Now I cannot add the witness back to the mirroring session (either with TSQL or thru the GUI). Here is the error message: Msg 1433, Level 16, State 4, Server SERVERA, Line 1 All three server instances did ...Show All

  • Visual Studio 2008 (Pre-release) Composing animations and translations

    Hi, I am thinking how to combine animations and translations for UI elements. I will give you an example: a canvas can be animated from 0,0 to 100,300 then later translated (without animation) to 300, 500 then later animated to 500, 600 etc. These are based on user input so they have to be applied using code not XAML. Both the animations and translations are using RenderTransform. In Avalon Beta 1 for each animation request I was creating and ...Show All

  • Windows Forms Printing a pictureBox

    I have created an application that searches and finds drawings from an access databse but on one form you can open a drawing (tif file - from a network share) and view it in the picturebox ok but when i try to print it i cant how can i get the picturebox to print bear in mind the images change i have all the buttons and print document items there help. Ps: im new to vb.net 2003 so please try not to baffle me with too much code Check out t ...Show All

©2008 Software Development Network

powered by phorum