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

Software Development Network >> Vincent Ng WS's Q&A profile

Vincent Ng WS

Member List

AlfonsAberg
gumtoo
Narayan19
PhillyPa
zennway
JeroGrav
johnny_no1_boy
nate-d-o-double-g
Babalicious
John230873
Mervin Lobo
Badajoz95
Delphieur
AliOmar3333
Heinz Krug
Federico Silberberg
Eugenya
Sneha Desai
Shilov
MauriceR
Only Title

Vincent Ng WS's Q&A profile

  • Visual Studio Express Editions Copy files from FTP to Harddrive

    Hi. I have code which downloads a file from my FTP space onto my hardrive. Can somebody help me to incorporate a loop so it downloads every file in the FTP dir, and puts them in the HD. So it downloads every file in ftp://ftp..../pub/myprogram and puts them in C:/myprogram. This is the code i have for 1 file: Imports System.Collections.Generic Imports Utilities.FTP Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Values to use Const localFile As String = "C:\myprogram/blah.exe" Const remoteFile As String = "/pub/myprogram/blah.exe" Const host As String = "ftp://ftp.invision.ecwhost.com" Const username As String = & ...Show All

  • Visual Studio Team System Differences between Visual Studio 2005 and

    Hi. Could you tell me what are the diferences between Visual Studio Team and Visual Studio 2005 Thanks in advance. Jose Manuel. Microsoft has provided a comparison of editions here: http://msdn2.microsoft.com/en-us/vstudio/aa700921.aspx -Ryan / Kardax ...Show All

  • SQL Server How can I track the queries being issued against my sql server 2000 instance?

    I have an ASP.NET app built on top of SQL Server 2000. My app is running slowly and I think I'm issuing too many queries to the database. How can I track the queries, and when they are being issued, against my sql server 2000 instance Is there a tool to view the queries, or is it all in a log file somewhere This will help me tune my ASP.NET caching strategy. Any help is greatly appreciated! Franco Choose: SQL Server, Tools, SQL Profile, File, New, Trace, Choose Server... On the filters tab of the new window you see you can choose various filters. These include database name, application name, NT UserName, there are many to choose from. SQL Profiler is an amazing tool for seeing whats happenin ...Show All

  • SQL Server surface area configuration

    Hi, we are having a strange problem when trying to configure the surface area of my sql server 2005. When we open the tool the only nodes that appears are: Reporting Services and Integration Services. But the Database Engine node is not showing. What do we have to do to access the Database Engine node and configure Remote Connection. Any help would be extremely appreciated... That's odd. Let's try here first to make sure it isn't something basic: http://msdn2.microsoft.com/en-us/library/ms161956.aspx And then perhaps we're facing a SQL Server Browser issue. Check the steps here: http://support.microsoft.com/kb/914277 And ensure that all your services that start SQL Server are domain or ...Show All

  • Visual C++ c1xx attempting to compile first preprocessor directive.

    Yesterday I didn't notice any problems with my project, but today whenever I change a file, it compiles the changed file, and then attempts to compile the first preprocessor directive I've defined (in my case WIN32). The exact error reads as follows: WIN32 c1xx : fatal error C1083: Cannot open source file: 'WIN32': No such file or directory After I get this error once, I can recompile again, and since the changed file has now been compiled, it goes directly to linking and doesn't spit this error out again. I'm using VS2005 Standard Edition. What can I do to fix this or to get more information on what's happening I'd added an environment variable which had now been removed, thus cr ...Show All

  • SQL Server How to schedule a SQL job from .net 2005

    Can we still schedule a sql job from .net 2005 using sqldmo object Any pointers will be appreciated... Appreciate your response. I have a sql job which will run this SSIS package. If I were to write a SP which will do Exec sp_start_job and give the job name shouldnt this be lot easier... i just want an Asyn process to start when the package is running so that user is completly oblivious abt the back end processing. So I was wondering to call the sp_start_job in a sp and call this stored proc once the file upload is done... But as expected I am running into permission starting a sp from msdb db... Any idea how can I sue sp_start_job and execute this package Regards, ...Show All

  • .NET Development DW20.exe issues

    I have a web site and everytime I make a reference to my business/datalayers it times out and I can see DW20.exe running in task manager, If i remove all references to my business/datalayers my web site runs fine. My web app was working fine up until this morning. Everything is coded in 05. Has anyone else experienced this issue and if so what did you do to fix it So did you guys find an answer I have this process clog our web server almost every day, 100% CPU for minutes. The reason seems to be .NET Framework 2.0 Runtime crashes. Application: w3wp.exe, faulting module mscorwks.dll. Any ideas ...Show All

  • .NET Development Get list of referenced assemblies at runtime

    Hi all, I have (hopefully) a simple question. I want to be able to get a list of assemblies (either as text or as Assembly objects) that my application references. I have seen AppDomain.CurrentDomain.GetAssemblies() used but this only lists loaded assemblies (and is missing the yet to be referenced/used assemblies). Basically I'm trying to load a Type object using the text name of the type, if the assembly that this type belongs to is not referenced by the application I have to load that assembly from a dll. Given that loading a assembly from it's dll and reading the type information is slower than just simply trying to load the type information knowing that the assembly is referenced by the application, I really need to know about a ...Show All

  • Audio and Video Development play AVI file from stream.

    hi how to play avi file from stream thanks. Well, Media Foundation does not have native support for AVI on Vista, so this forum isn't the right place for your question. If you're trying to write code to get an AVI stream rendered, your best bet is probably DirectShow. Here's the MSDN forum for that: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=129&SiteID=1 ...Show All

  • Visual Basic populating textbox using datetime picker

    I am using VB 2005 for developing a winform application I want to display a datetime picker ( or a calendar) to choose date when a user click on the textbox very similar to www.expedia.com on the textbox click event I am using the following code to display datetime picker's calendar GUI Private Sub TextBox1_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.Click DateTimePicker1.Select() SendKeys.Send( "%{DOWN}" ) End Sub is there any easy to remove the combobox out of the Datetime picker so when a user click on the textbox datetime picker's calendar Gui will displayed and a user selects a date that populates the textbox ...Show All

  • Visual Basic writing values into the datagrid using vb.net with sql server

    writing values into the datagrid using vb.net with sql server For example: Table name : puser username password add edit read delete print all Gates Gates T F T F T Bill Bill T T T T T T Now iam entering the values in the datagrid directly. like username password add edit read delete print all Gates Gates T F T F T Bill Bill T T T T T T Jessica Jessy T T T T T T <=========here i want to update the entered values into the database by clicking the update button i need vb.net coding Please visit the following link http://www.java2s.com/Code/VB/Data ...Show All

  • Visual C++ Building trouble : error LNK1104: cannot open file

    Hi every body, I'am in serious trouble cause i can't find the solution of my problem. I'am trying to convert an .exe into .dll file after i downloaded the source file of the .exe . I inserted the source code into a "MFC AppWizard(dll)" project and compiled it (was ok) and when generating the .dll file (after i mentioned the "Object/library Module" under the "Project/Settings/Link" Menu ) i got this error : Linking... LINK : fatal error LNK1104: cannot open file "C:\dll3\VisioneerDll\twaintest\Debug\twaintest.lib" Error executing link.exe. Creating browse info file... twaintest.dll - 1 error(s), 0 warning(s) with out mentionong this library ( which is not correct cause the librar ...Show All

  • Windows Forms MDI - Maximized Child Icon

    Has anyone come across a solution for this problem Basically, when using an MDI Form, the Icon of a newly opened child form defaults to its original icon, if opened when an existing child is in a Maximized state. Any help appreciated - thanks. nobugz, Thanks for your reply, I will try this out before I waste any time with a prototype of the problem. My only hope is that the behaviour won't cause too much of a delay or undesirable flicker visually if there is more than one child maximised as the interface I have created is similar to the SQL Server Management Studio. I should of ditched the idea of using MDI but the application in development is complex and I could find no other opti ...Show All

  • .NET Development Web Service has no dll generated

    I've create a web service in VS 2005 and I already installed the service pack 1.0. When I build my application it does not generate any dll or the assembly. I presume that it should generate the dll unlike in VS 2003 which is the 1.1 version it generate an assembly. I need your help... Thanks in advance. thanks a lot...hopes that it will work!!! ...Show All

  • .NET Development Change assembly name stops de-serialization of old data

    VS2005 c# I am trying to work out why changing the assembly name should stop deserialization working, I thought I had it after creating a SerializationBinder to rewrite the assembly name, and this works with a very simplified case, however on our main application a TargetInvocationException is thrown which seems to refer back to the original assembly name. - InnerException {"Could not load file or assembly 'TeletestMock, Version=1.0.0.2809, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.":"TeletestMock, Version=1.0.0.2809, Culture=neutral, PublicKeyToken=null"} System.Exception {System.IO.FileNotFoundException} Does anyone have any ideas of what I'm doin ...Show All

©2008 Software Development Network