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

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

texlnghorn

Member List

Vwalla
Omns
Gary A. Bushey MVP
Florian Krusch
Mukund R
Jiongxiong Chen
Nate Cook
arooni
AeonMasters
Jesse McGatha
neolace
Keith Newman
Yaniv ab
Robert
Shahaji
Jeremy Adamich
Rohit_Ghatol
aimless
E10T
Dean Wagner
Only Title

texlnghorn's Q&A profile

  • Visual Studio 2008 (Pre-release) Go live for LINQ/DLINQ before Orcas?

    There seems to be a lot of activity on this forum and it has me wondering...are all these questions coming from applications that aren't going to launch until after Orcas ships OR is it "OK" to create apps today that are targetting .NET 2.0 using LINQ/DLINQ :) Is there any chance there will be a Go Live license for LINQ/DLINQ before Orcas ships Whats the latest on when Orcas is expected to ship Basically, when can we expect that we'll be able to use LINQ for real ...Show All

  • SQL Server TRANSACTION

    Hi everyone, I have some doubts about Transact keywords. At the below snippet, transact is used for also error handling and as I understood that when the error occured in the transaction scope, the error is caught and then managed in a desired way. for instance, at the below snippet, the programmer catches and manages the error by first printing a message and then rooling back the execution(Stopping(ending) the execution).So can it be said that TRANSACTION is also used for ERROR HANDLING because of the above reasons BEGIN TRAN INSERT titles(title_id, title, type) VALUES (@title_id, @title, @title_type) IF (@@ERROR <> 0 ) BEGIN ...Show All

  • Software Development for Windows Vista VMR9 and HD Resolution Video

    I've been having some problems with displaying DivX HD Video in my application that uses DirectX9 together with VMR9. I have been talking about problems with VMR9 before and that the only solution so far have been putting a Sleep(10) in the render loop to get rid of (I guess) blocking problems. The blocking has for me caused problems with the video not playing in full frame rate. Now, the problem is that to get DivX HD (for example) content to play smoothly I have to Sleep(25) or more, and this is a problem because I'm trying to run DirectX at 60hz or more and then everything else will not be able to play smoothly. Windows Media HD works nic ...Show All

  • Visual C++ Is it Possible ?

    to jump to VC7 without learning VC6 or its just a compiler difference Of course it's possible. I would even r ecommend that since every new VC version is more in line with the standards than the previous one. ...Show All

  • Visual C++ SetDlgItemInt it only show Integer If i want to show float number what should i do ?

    i want to SetDlgItemInt by Float Number. but it is not have a function SetDlgItemFloat can some one help me to show Float Value in DialogBox. int a = 0,b = 0; float dx = 0.0; UINT Ai = GetDlgItemInt(IDC_EDIT1,&a,TRUE); UINT Bi = GetDlgItemInt(IDC_EDIT2,&b,TRUE); dx = (Bi-Ai)/100; UINT sum = dx; SetDlgItemInt(IDC_EDIT3,sum,TRUE); 1>d:\work sheet\integrate\integrate\integratedlg.cpp(168) : warning C4244: 'initializing' : conversion from 'UINT' to 'float', possible loss of data 1>d:\work sheet\integrate\integrate\integratedlg.cpp(173) : warning C4244: 'initializing' : conversion from 'float' to ...Show All

  • Visual Studio Team System Training for VSTS2005 for testers

    Does anyone know if there is any training available for this visual studio team system 2005 for testers.Please let me know if there is any paid and free training available or any books that teach for web and manual testing step by step.thanks in advance. Hello Yes there are trainings available, take a look at the following link: http://www.microsoft.com/learning/syllabi/en-us/2631afinal.mspx We also have some testing videos that you might be intested in: http://www.microsoft.com/downloads/details.aspx FamilyId=88F7CB8B-473B-4ED5-BA47-ABBC06D0048E&displaylang=en And of course you can also rely on MSDN: http://msdn2.microsoft ...Show All

  • Visual Studio Express Editions Problems with Splash Screen and VB 2005 Express

    I create a default splash screen using Add New item | Splash Screen and then I select it in the project properties. When I run in it the VB2005 environment, the splash screen shows as expected, but then gives an error message: NullMessageException was unhandled . before running the application. Without the splash screen the application runs fine. The exception detail follows. Has anybody any idea what I am doing wrong The funny thing is if I breakpoint the code, depending on where I place the breakpoint in the Splashscreen_load , the exception does not come up. After some experimentation, the problem also may be related to my code. Th ...Show All

  • Software Development for Windows Vista Authoring Workflows at runtime

    I want to implement a designer at runtime for my clients so they can create their own Workflow. As there is no out-of-the-box control to implement this I suppose I have to work with the workflowview class explained in lab 12.  I implemented this functionality but now I'm having some problems: 1)  When I try to move activities in the workflow I get an error stating "Component Serialization Service is missing".  2)  I've tried some variants of DoDragDrop from a listbox to drag a new activity to the workflow but the toolboxservice is missing and I think the workflowview also is missing the dragdropmanager at runtime. Bas ...Show All

  • Windows Forms mask in DataGridView

    How can I check the mask when the user edit the cell. I already set the custom format in DataGridViewCellStyle using CellFormatting event. But, when I key in the value, it doesn't check the format. ( for example, maxlength... ) ( EX : 1. CellFormating Event - format  setting : AA-AA-AAAA          2. When the data display : in Database&nb ...Show All

  • Visual C++ PurifyPlus reports FMM in STL of VC++ 7.1

    Hi all, I run my VC++ 7.1 generated dll under PurifyPlus' control.  I get a whole slew of  FMM (free memory mismatch) errors for memory chunks allocated by the Microsoft STL.  Unfortunately I haven't got the stack trace available right now but I could regenerate it if it's necessary. One example code snippet looks like this (details omitted):     class ComponentFactoryBox     {     public:         /**          * register Factory in factory box          */  &nbs ...Show All

  • Visual Studio DDEX and schema information

    I am trying to write a DDEX provider and am having trouble figuring out an error condition.  The connection shows up in the Server Explorer along with the appropriate nodes (tables, views, etc.).  The tables expand and show their columns, column type information shows up in the properties window.  But when I drop a table onto a dataset, it gives the following error: Could not retrieve schema information for table or view test. I get the same error if I go through the menu Data\Add New Data Source...  The error seems to be the generic top level "something failed" error because it appears in response to any number of thing ...Show All

  • Windows Forms What is the proper way to close a window and open another?

    I have a program with various forms and I have tried   Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click         Me.Close()         Dim frmCreate As New frmManage()         frmCreate.ShowDialog()     End Sub And that SHOULD close the frm and open the new form  ...Show All

  • .NET Development 404 Not Found in HTTPWebRequest.GetResponse and HTTPListenerExceptions???Someone help please

    Hi, I am getting lots of 404 Not Found when i request for a URL through HTTPWebRequest.GetResponse() method. What possible reasons can be there and how to correct them. Dim Wresponse As HttpWebResponse = CType (Wrequest.GetResponse(), HttpWebResponse) Also I am getting the following HTTPListenerExceptions when I try to write data to the HTTPListenerResponse Object through a buffer. i). System.Net.HttpListenerException: An operation was attempted on a nonexistent network connection at System.Net.HttpResponseStream.Write(Byte[] buffer, Int32 offset, Int32 size) ii) System.Net.HttpListenerException: The specified network nam ...Show All

  • .NET Development encoding problem

    hi, I'm working on application that retrieves emails from POP mail account, The probleme is this: If have a message with special caracteres like "e e a", all what I get after retrieving the message is " " in the place of these caracters. The message was encoded with "ISO-8895-1" Check this code: //sTemp has a ligne of the message Encoding srcEnc = Encoding.ASCII; byte[] srcData = srcEnc.GetBytes(sTemp); //the source data turned to byte array Encoding dstEnc = Encoding.GetEncoding("iso-8859-1"); byte[] dstData = Encoding.Convert(srcEnc, dstEnc, srcData); ...Show All

  • .NET Development access dBase files

    I am attempting to use an OleDBConnection to access dBase files.  However I am getting the following error message when attempting to open the connection: "'c:\zzz\test.dbf' is not a valid path.  Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides." From what I understand from the documentation the following should be a valid connection string: Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\zzz\test.dbf;Extended Properties=dBASE IV;User ID=Admin;Password= I am unclear as to what is the problem.  I have found basically no info on this particular set of circum ...Show All

©2008 Software Development Network