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

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

Conchur

Member List

momsonrikky
SashaJuric
NeedHelp
Jayden CHan
CWIUS
BobSun
splyf
Grant_csi
curt760
Yknev05
Matjaž
Cliff Stanford
cutski
Do Hoang Ha
Dvorak Pavel
pkotak
Richc12345
Iain Reid
HLdeveloper
Tobias Alte
Only Title

Conchur's Q&A profile

  • Visual Studio Express Editions PARENT with BindingNavigator on CHILD form using Microsoft Access replica-id key

    Database: My Acces database has a PARENT and a CHILD table; 1 record in PARENT has 0 or more records in the CHILD table. The primary key of a PARENT record is ParentId. ParenId is a foreign key in CHILD. Keys are replica-id (Microsoft Acces 2000) Forms: I have a PARENT and a CHILD form. On my CHILD form I have an Binding Navigator which is bound to the CHILD table. The Binding navigator loads all CHILD records at start ( ...Show All

  • Windows Forms How can we do diffrent alternate color row in msflexgrid

    Hello friends I want to draw a mflexgrid with alternate diffrent color row how can do this  you can set CellBACkColor property of MSFlexxgrid Control i have use it and change color of every cell  Priyank Gupta  ...Show All

  • Visual Basic MSScriptcontrol And VB 2005

    When i try to do an addobject through the Microsoft Scriptcontrol like... Scriptcontrol1.addobject("Form",Me) Scriptcontrol1.addobject("Form",Me,True) Scriptcontrol1.addobject("Form",ctype(Me,Form),True) it just makes an "Specified cast is not valid" i would realy appreciate some help i fell like i have tryed everything posible to make it work   Hi, This appears to be a change from Visual Studio 20 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DXSDK: How to store the state of the CModelViewerCamera?

    Is it possible to store the state of the CModelViewerCamera (DXSDK) to later reload it I didn't manage it. I like to store the rotations that were made around the model using the mouse. Interestingly the Eye Point doesn't change when rotating, so it seems the object is rotated rather than the camera. This is proofed by the fact that only the cameras world matrix is changing when rotating. But simply saving the world matrix and resetting it with ...Show All

  • Visual Basic Number of controls in a form?

    IS there any way I can count how many controls are in a container or in the entire form You can use the count property to count the controls in and forms present The next example determines the number of controls on a form and a report and assigns the number to a variable. Dim intFormControls As Integer Dim intReportControls As Integer intFormControls = Forms!Employees. Count intReportControls = ...Show All

  • Visual Basic OnLoggedIn

    I have this code on my login page. <code> Sub OnLoggedIn( ByVal sender As Object , ByVal e As EventArgs) Dim cmdLogin As New SqlCommand( "Login_2" , GlobalConnection) cmdLogin.CommandType = CommandType.StoredProcedure cmdLogin.Parameters.AddWithValue( "@UserID" , Membership.GetUser.ProviderUserKey) Dim UserID As String GlobalConnection.Open() UserID = CType (cmdLogin.ExecuteScalar(), String ) Profile.UserID ...Show All

  • SQL Server Value "0000" considered as NULL values in the last column

    Hello I use a Flat File Connection Manager for a file with 18 columns. My column delimiter is the "~" caracter and my row delimiter is "{CR}{LF}" The source files contains about 2300 lines. None of them contain NULL values. My last row is a numeric(16,2). Even if it is not the appropriate type for the value I want extract, it works with all my columns. My problem is with the last column. I have read the SQL Server 2005 interpretat ...Show All

  • .NET Development dataset copy probleam

    hi... i want to create  a function that detect  my dataset was changed. so i create two dataset datasetOri and datasetChange . So in my program, when form load, i automaticly backup the datasetChange that i receive from my database to datasetOri. And then user can change their data and this change i not update into database until user click button save. So at this time, i just update the datasetChange only . If user click  button ...Show All

  • SQL Server Excel Source: not to import blank rows

    I am trying to load data from an excel file, how do I use SSIS so that it won't import blank rows in the source excel file Thanks in advance! Thanks for your reply, Doug. Yes, what I meant is, the web site requires a login to access the excel file. Script task is an option, but any other suggestions is stilly highly appreciated. ...Show All

  • Visual Studio Team System TFS Crashes every 2 - 3 hours

    Hi, Configuration. - TFS Beta3/Sept CTP/RC1 We have been with this config for 2 months now without any issues, for the last couple of days, we get disconnected from the server every 2 - 3 hours. We have to restart the server to reconnect to the TFS. Find TFS Error log below. Thankyou ________________________________________________________________________ TFSServices: An unexpected condition has occurred in a Team Foundation component. The in ...Show All

  • Visual C++ using WM_KEYDOWN to find which non system key was pressed.

    Hey all, I,m starting to learn MFC and I'm trying to write a program that will display which keys a user has pressed. I use WM_CHAR for normal keys and that works fine. I want to use WM_KEYDOWN for non-system keys that aren't supported by WM_CHAR. The problem I'm having is that I cannot display which key is being pressed when OnKeyDown() is called. Here is a sample of code that I unsuccessfully implemented: afx_msg void CMainEIWin::OnK ...Show All

  • Visual Studio Team System VSTS Team Build Permissions

    Hi all I am facing problems in giving permission to a particular user, like ADMINISTER_BUILD, EDIT_BUILD_STATUS, GENERIC_READ, START_BUILD. I am able to create the build type successfully though. Check-in and check out and edit of build type is not working as those things are disables for me in the “Source control explorer”.   I was just thinking if you could give me some tips so as to how I can give above permissions to a parti ...Show All

  • Visual Basic lost on final steps of project.

    I am trying to learn Visual Basic on my own and would like to create small one window programs that can be run independently on any windows machine. I created a simple math program that runs fine in visual basic 2005 express beta 2. I want to build it as a simple application I can load on another machine by way of a floppy disk but I can't get it to work. I'm  missing something basic but I don't know what it is. I followed the steps in chap ...Show All

  • .NET Development Embedding resources in a static assembly (Reflection.Emit?)

    I've been looking around a bit on the web now for information about how to embed resources into .Net assemblies, and everywhere, everything I find is about Reflection.Emit and about dynamic assemblies. I want to make an application which creates as it's output another application. This output application should always contain the same code, but different resources - so it's conceptually the same as a self-extracting zip archive. In this, ...Show All

  • Visual Studio Problem Debugging Multithreads (catch imposible exceptions)

    Hi ... I have a problem debugging multithreads in VS2003 .. I run a process in a thread ... is just one long process so I put it in a thread  .. but ... when I lost windows focus (change to another window or at debugging when I get into a breakpoint and show me the code) VS2003 throws this exception: "System.nullReferenceException" at "System.Windows.Forms.ComponentManager.System.Windows.Forms.UnsafeNative Methods+IMsoComponentManag ...Show All

©2008 Software Development Network

powered by phorum