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

Software Development Network >> Quang N's Q&A profile

Quang N

Member List

Gary G. Little
ChrizA
Mix from Latvia
Vincent123
Shuchim
timleong
SPAD3S
firstspirit
dozaone
techexpert78
Saurabh11
Sumalatha
Jetttik
MarkAx
Lex007
dangerous2
yurafromlviv
SnakeEater
noslen
Oliver
Only Title

Quang N's Q&A profile

  • Visual FoxPro DBclick

    the dbclick event can't be effect after i wrote program in mousedown event in grid control.how can i fix it thank you A button would work, either on the form or in an adjacent column. The other way is to workaround it, but it's a bit of a pain.  You might add a timer: On the first mouse down, start the timer.  On the second mouse down check to see if the timer has been started.  If it has stop the timer and do the double click code. If the timer expires the single click code runs. The problem with this is that there is a small lag before the single click code runs and that is often unacceptable. The other way would be ...Show All

  • Visual Studio Microsoft Visual Studio Extensions for WinFX with Visual Studio 2005 180Day Trial

    Hallo together, I tried to install the Microsoft Visual Studio Extensions for WinFX with my Visual Studio 2005 180 Day Trial. The setup completed succesfully but there is no Win Fx template when I create a new project. The following components are installed: Microsoft Visual Studio 2005 Professional -Deu Microsoft Windows SDK (5308.0) Microsoft Winfx SDK (50215.45) Microsoft Visual Studio 2005 Extensions for WinFX vers. 8.0.6 Microsoft Visual Studio 2005 Extensions for Windows Workflow Foundation vers. 3.0.3603.4 WinFX Runtime Components 3.0 Beta 2 Do I need other components Thanks for help, cu Richard T ...Show All

  • SQL Server Can't connect to the reports using Sybase

    We are new using RS at the office. We just installed it and it works just fine with the reports using SQL but it doesn't work with the ones using Sybase. I work developing software and i can do the deploy of the project, can see the preview reports, i even go to the server page and i see my reports there, it asks for the password and user name (as it should) but when i click on view report it starts showing the circle connecting to it but after a while it shows me this error: Error al procesar el informe. (rsProcessingAborted) Obtener ayuda en linea No se puede crear una conexion al origen de datos sicere. (rsErrorOpeningCon ...Show All

  • Visual Studio Team System What can Visual Studio Team System integrate with?

    Can it integrate with Lauguage PowerBuilder, SAS, SilverStream or Weblogic So, to integrate with PowerBuilder, you will need the MSSCCI plugin to talk to Team Foundation Server. However, there have been some problems reported with this and you may have to wait until the next version of the plugin before you will be able to work (depending on your version of PowerBuilder). See http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=415720&SiteID=1 for more information. With regards to Weblogic. If you mean Weblogic Studio 8.1 or earlier then I'm afraid there is nothing I know of yet which integrates with that. The newer versions of ...Show All

  • Visual Studio Express Editions Append to XML file

    I'm trying to make an application to keep track of recipes, but I can't figure out how to append to an XML file.  I've searched online, but I'm not coming up with the answer.  Someone suggested a dataset, but I can't figure out how to use that to append to an XML file.  I'll show an example of the code and what the XML file currently looks like. Private Sub Save_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click Dim xtwcurrent As Xml.XmlTextWriter Dim lines As String () = Directions.Lines Dim clines As String () = Comments.Lines xtwcurrent = New Xml ...Show All

  • Visual C++ Global Functions do not have 'this' pointers

    Hello Everyone, I get this Error C2673, what is the way around...I looked up MSDN it doesnt give me any solution... Sugestions, Help..Highly appreciated.. Thanks, OMG you're right! An MSDN search on "global functions do not have this pointers" returns the "How Do I (Visual C++)" and "Migrate to /clr:pure" page, when I would have expected it to return " Compiler Error C2673 ". So much for improved search. Well anyway, the answer is that you cannot access class members outside of your class. You can only access the member through an instance of the class. ...Show All

  • Visual Studio Allow users to select and copy text

    I have a Windows application that uses a ReportViewer control. Users are requesting the ability to select and copy portions of the text displayed in the reports. I haven't noticed any obvious properties or settings to enable this. Is there a simple way to allow copying text This is unfortunately not supported in the first release of the WinForms ReportViewer control. We are working on addressing this issue. ...Show All

  • Visual Basic Remote Computer

    I am now doing my final project for Cybercafe. May i know that how can i shutdown, restart, or log off the user/customer pc after payment by using admin pc. How to remotely shutdown a pc or remotely run a .bat file Before that have a fren send me the syntax below, but i stil canot remote shutdown other pc. Can any one tell me the way how to remore shutdown Syntax SHUTDOWN [ logoff_option ] [/m \\ Computer ] [ options ] logoff_option: /i Display the GUI (must be the first option) /l Log off. This cannot be used with /m or /d option /s Shutdown /r Shutdown and Restart /a Abort a system shutdown. ...Show All

  • Visual Basic Retrieve text

    I have loaded a string(myline) with a text file named 'mytext'. I won't to search through that file looking for two words and all characters inbetween them. Here is the code so far..... Dim sr As StreamReader = New StreamReader( "D:\mydocuments\TXT Files\mytext.txt" ) Dim myCheck As Boolean Dim myline As String Do myline = sr.ReadLine myCheck = myline Like "*word1*word2*" If myCheck = True Then MessageBox.Show(myline) ' need extra code here' Loop Until myline Is Nothing sr.Close() I have managed to find the line with the required text. How ...Show All

  • Visual Studio How to realize print preview?

    i created a Crystal Report for my vb.net application, on the reportView control, the top navigation bar, there is a "print", is it possible to make a "print preview" there plz help Hello, No it is not possible. The Crystal Reports viewer itself is considered the print preview. Keith - Business Objects ...Show All

  • Visual Studio 2008 (Pre-release) Dynamic IP

    I write Client and Server in Wcf and i have problem with base address. The Server take the base address from other source ( dll config i write ) Uri baseAddress = TakeBaseIP(); // Create a ServiceHost for the CalculatorService type and provide the base address. using ( ServiceHost serviceHost = new ServiceHost ( typeof (General Service ), baseAddress)) // Open the ServiceHostBase to create listeners and start listening for messages. serviceHost.Open(); when i use in svcutil the file contain the ip of server(base address). < client > < endpoint name = "" address = http ...Show All

  • .NET Development Deploying .NET Application to computer with different SQL Server Name

    I'm writing a VB.NET application that makes extensive use of SQL Server data tables. The problem is that all of the connection information is relative to the SQL Server at my location, not where it will be deployed. How do I write the application so that I can somehow specify at install time what the name of the SQL Server is at the deployed site Hi, You have many choices to do that. First you could specify the server name or the conneciton string in the registry or provide an xml config-like file. If you want your connectoin string to be flexible then you'll have to specify it outside of your applicat ...Show All

  • Visual Studio Team System Set Syste Locale in web test

    Besides, HTTP language header, the web page I am testing looks for system locale (from control panel) to decide what language of page to load. How do I simulate this in Web Test Hi Bart1, I'd suggest converting the web test to a coded web test, and programmatically set the system locale before executing the web test. Then on test completion, restore the previous value. See this walkthrough for more info on creating a coded web test. Cheers, David ...Show All

  • Visual Basic VBScript - Expected If

    I can't seem to figure out why I'm getting this error. I hope someone can help. I am getting an " Expected 'If' " error on the last line of my code, the "end sub" line. I would post the entire code but it is 200 lines long. Has anyone run across this Thanks. Look at each IF statement, there should be an accompanying End If. Probably just above the last line. ...Show All

  • Visual Studio Express Editions Connection Test

    Hi, im very new to Visual Basic 2005 Express Edition. I have had a bit of past PHP codeing but not alot. I was wondering what i code i could insert into my applictation so that if it does not connect to a webpage, any webpage that it will display a message... "Internet Conection Unavaiable"  Then close the program     Any help would be great thanks........ Hi shak, Yes, you can catch an error 404 by using the: r WebException Constructor (String, Exception, WebExceptionStatus, WebResponse) There is an example in the local help with VB on how to do this.   Hop ...Show All

©2008 Software Development Network