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

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

Wes1234

Member List

AGW
Matias Toro
Gregor Suttie
xystar
M.Small
Question One
hemant babaria
Slicksim
vivek.bhoj
Studio Two
Sampy MSFT
Len Smith
dzCepheus
Bill Westlake
Tommi Enenkel
Rajat Talwar
noppo
Kfir
k_savelev
Wilk06
Only Title

Wes1234's Q&A profile

  • Visual Studio Team System What resource I could read?

    Any resource I could read more about MSF And is good for me to get the exam Have a look at http://lab.msdn.microsoft.com/teamsystem/workshop/msfagile/default.aspx   Exams and curriculum for MSF are currently in development. We will have an update around June this year. ...Show All

  • Windows Forms Cannot access disposed object named 'DataGridTextBox'

    Hello, I am working on a windows forms app with a datagrid. In my mouse down event, I am calling Me.Close() and am running into the following error Cannot access disposed object named "DataGridTextBox" Object name: "DataGridTextBox" Private Sub dtgResults_MouseDow ...Show All

  • Visual Basic PreparedStatement in VB6

    Is there a PreparedStatement in VB6 similar to Java Hi Shilpa, Yes there is. You will need to set the Command.Prepared property on the ADODB.Command object to True to achieve this. The Command.Prepared = True statement takes the CommandText and pre-compiles it, so it's actually a little slower than a direct SQL statement the first time that it runs, but every time after that, it will be faster. Regards, Vikram ...Show All

  • Visual C++ File Open/Save As dialog box

    GetOpenFileName uses a File Open/Save As dialog box that is subtly different from the one used by Visual Studio, which has "FTP Locations".  Is it possible to use the bosa_sdm_Mso96 dialog box in applications built with Visual Studio Thanks, Keith MacDonald No, it is not. Visual Studio does not use the system open file dialog, it uses one we borrowed from Office. On Vista this issue is going to go away since the new system provi ...Show All

  • SQL Server How to programically call SSRS 2005 report then Save to file

    How from a VB.NET app can I programmically code a call to one of my existing SSRS 2005 reports and after that report is done running, tell it to also save as a pdf into another directory somewhere on our file server This will give you an overview: http://msdn.microsoft.com/sql/bi/reporting/default.aspx pull=/library/en-us/dnsql90/html/integratrsapp.asp Basically, what you will do is use VS.NET to create a web reference to the RS SOAP ...Show All

  • SQL Server Select Statement returns no results

    I am using the following conditional select statement but it returns no results. Declare @DepartmentName as varchar Set @DepartmentName = null Declare @status as bigint Set @status = 4 IF (@DepartmentName = null) BEGIN SELECT CallNumber AS [Call Number], Problem, Solution, Note FROM AdminView WHERE (Status = @status) ORDER BY CallLoggedDT END ELSE IF (@DepartmentName <> null) Begin S ...Show All

  • Visual C# renaming a file in c#

    i use: fiFileInfo.CopyTo(Path.ChangeExtension(fiFileInfo. FullName + fiFileInfo.Extension, ".enc"), false); to rename a file (eg: ***.ppt -> ***.ppt.enc). if the file is really big (400mb), this take 6-7 minutes. is there a better way to rename files regards meeeeeeeeeep File.Move will rename a file for you. Not sure how much faster it is than the above. There's no File.Rename, to my surpris ...Show All

  • Windows Forms Binding of dynamically created controls

    hi,    i have a form which creates in the loop i am creating them nicely here is my code for that Sub createcontrols()         Dim i As Integer = 1         Dim j As Integer = 1     &nb ...Show All

  • .NET Development SmtpClient Class Timeout Error

    I'm having difficulty with the mail classes connecting to mail. I receive a timeout error. Inspecting the credentials in the debugger they look ok. Public Sub CreateTestMessage1() Dim NC As NetworkCredential = New NetworkCredential( "rmctwo" , "xanadu" , "" ) Dim too As String = "MailAccount@hotmail.com" Dim fromm As String = "SomeotherMailAccount@gmai ...Show All

  • Visual C++ Directory Search Order & Link Error

    Hello, I am using VS 8 on WinXP Pro. I recently installed the Windows Server 2003 SDK and the DirectX SDK. I have recently moved to VS8 from VS6. When I put the path to the SDK include & lib directories at the top of their respective lists, the linker generates link errors. unresolved external symbol "wchar_t * __stdcall _com_util::ConvertStringToBSTR(char const *)" ( ConvertStringToBSTR@_com_util@@YGPA_WPBD@Z) reference ...Show All

  • .NET Development what "OleDbType" Enum Can be used for DateTimePicker "Short" Format?

    I am trying to create OledbCommand Paremeters. My Code is the following; cmd.Parameters.Add( "@Day" , OleDbType .Date).Value=dateTimePickerDay.Value.Date; cmd.Parameters.Add( "@Start" , OleDbType .DBTime).Value=dateTimePickerStart.Value.TimeOfDay; The 2nd line works but not the 1st. For "dateTimePickerDay" My "Fotmat" property is set to "Short" and for "dateTimePicker ...Show All

  • SQL Server best way to clean up temp files

    I have a custom Data Flow task that creates temp files to the system temp directory during processing. A lot of times, we'll use SSIS to do one data transformation, running and tweaking the package along the way... we do this in the designer ... if we notice something that's incorrect in the data view, we just hit the stop button and fix it. However, when we do this, the Cleanup() function isn't called, and my temp files are left in the temp dir ...Show All

  • Visual Studio Team System Team Project creation fails by failing in task SharePointPortal

    Hi, after migrating a "full functional" installation of Team Foundation Beta3 to Team Foundation Beta3 refresh containing two Team Projects we cannot create new team projects. The existing projects seem to work. The log points to a sharepoint problem while creating the team web site. The installation is a single server box. The migration was done as described in http://msdn.microsoft.com/vstudio/teamsystem/b3rmigrate.aspx The sharepoint servi ...Show All

  • Visual Studio Express Editions vs_setup.ms_ not 'expanded'. - VBasic Express

    I downloaded the VC++ Express Beta 2 image and burned it to a CD. Then I ran the setup.exe from the CD.  The install failed because the image had the file mentioned in the subject header, not it converted form, *.msi. I used IsoBuster to install the image and then expanded the vs_setup.ms_ file to vs_setup.msi The install then proceeded normally. OK, I was finely able to get the VB 2005 express setup to w ...Show All

  • Visual C# Multicast delegates with IEnumator and yield return?

    Hello, I am trying do set up a multicast delegate to split my yield returns for a WebTest I am writing, but only the last delegate is firing.  Is this a known problem, by design, or am I doing something wrong Thank you, --ben hii all, First time I am just learning Delegates in c#. I have faced a conceptual problem. In books it is written that A Multicasting Delegate should have a return type of Void unless it will ...Show All

©2008 Software Development Network

powered by phorum