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

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

whs45

Member List

adamlane
woody2306
swfblade
Computer_Man_With_Questions
Daniel Mahadi
Norman37050
AxelW
branaugh
Angel Diaz
Uka
Richard0610
ac2600
mnemon
Roger_Wagner
Rick Byham
Stephen Orr
clemens
saphir333
tmenier
FinTin
Only Title

whs45's Q&A profile

  • Visual Studio VS.NET 2005 (June) fails to install SQL 2005 Express?

    Hello, Thanks for reviewing my question.  I had VS.NET 2005 Beta 2 installed on my PC and decided to uninstall it (hopefully in order) in order to install the VS.NET 2005 (June CTP). Everything seems to install expect for the SQL Express.  I uninstalled everything and installed the SQL 2005 (June CTP) thinking I would use this instead of express but VS.NET 2005 didn't install.  And, of course, I have read their not compatible. So, I am back to square one.  I have run the cleanup tool but it doesn't seem to do anything. Any suggestions is appreciated. Thanks for your time. Peter I had this ...Show All

  • Visual Studio can i use inputs and outputs

    I know the inputs, but I do not know the outputs until I'm in the logic of my custom Task. Is there anyway to still use inputs and outputs in my .targets file to control when things will build, or do I need to implement this myself in my Task class Thanks, Mike Inputs and Outputs must be declared in the project file. Their values may be computed by combining existing properties and/or items, or by previously built targets, but they must be specified in the project file. Are the names of your Outputs not simply transformations of the names of the Inputs e.g., something like inputs: "a.txt;b.tx ...Show All

  • Windows Forms How to print content of Listview?????

    Hi to all, How can I print the content of a listview Please help me! thx juvi ...Show All

  • Visual Studio 2008 (Pre-release) Convert between Func<T> and Expression<T>

    Are there facilities to convert a Func<T> and an Expression<T> in order to use something that was intended to be used as a predicate and use it instead as an expression tree -Scott Do you mean implicit conversion operators on Expression<T> that convert to Func<T> ...Show All

  • Smart Device Development .Net CF Getfiles IOException

    Hi, i've a problem with my VB.NET application and GetFiles() function. I try to run my application on Emulator. I've shared a folder in my Desktop simulating a Storage Card and i try to access files on it but GetFiles() function return IOException error... Any suggestion to solve this problem I use Visual Studio Team suite 2005 beta 2. thanks Andrea. Can you please send me your VB.NET code (either as a post on the forum or a private email to barrybo@microsoft.com )   I'll take a look.   Thanks, Barry ...Show All

  • .NET Development SortedList

    Hi all! I have a SortedList where i want to sort by value, that is abseluteli a most. mySortedList(id, distance), for me its importend to sort by distance, becourse i am generating a route for TomTom, and i need the nearest first then the next nearest, and so on perool Hi The question is what skal i do to get det value for specifik key. F.ex. SortedList.getKey(1) now i want the value there belong to that key Perool ...Show All

  • SQL Server Flat file produced but need line returns

    My Integration Services creates a flat file using OLE DB Source and then a Flat File Destination.  The flat file is created from data from my data source with is just a table with many rows. Each row in my flat file .txt is appended onto each other, there are no line returns after each record.  How can I put in a return after each row in my flat file that is outputted from the Flat File Destination component in conjunction with the properties in my Flat File Connection Manager.  What am I missing here in order to ensure each row from my table creates a carriage return in my .txt flat file In my File Connection Manager ...Show All

  • Microsoft ISV Community Center Forums Add a column to Grantt Chart to MS Project

    Hi there, i want to add a column to a grantt chart , this is my code snippet: TableEdit Name:="&Entrada", TaskTable:=True, NewName:="", _ FieldName:="", NewFieldName:="% completado", Title:="", _ Width:=10, Align:=2, ShowInMenu:=True, LockFirstColumn:=True, _ DateFormat:=255, RowHeight:=1, ColumnPosition:=1, AlignTitle:=1 TableApply Name:="&Entrada" SelectTaskColumn Column:="% completado" EditDelete I have an spanish version thats why appear those strings "% completado" (Task Percent Complete), like you'll see thats a not what a looking for...i want something like this: Columns.Add(ColumnType:= enumTaskPercentC ...Show All

  • SQL Server pls advise me. HELP pls...

    on the 1st opening of my web page it uses the membership control of asp.net for logging on. sometimes it takes time to logon and worse is, it will encounter sql server error. that can be resolved by just restarting that specific page and it will be alright, it will logon normally. this only issue happens only on the first opening of the logon page. i have read a certain article and it says there that on the first time you access the sql server, sometimes the sql server needs a little more time communicating back and forth. how can i make my log-on page wait a little longer till it communicates or finishes communic ...Show All

  • Visual Basic VB 2005 books

    Hey all, I need a good book on vb 2005. Anyone got any ideas Basically I need something for someone coming from a vb 6 background. I don't really need all the 'what a variable is' or anything like that. Any suggestions would be good You might want to consider "Programming Visual Basic 2005" by Jesse Liberty.  http://www.amazon.com/gp/product/0596009496/102-9817501-1204122 v=glance&n=283155 MSDN also offers a free book called "Introducing Visual Basic 2005 for Developers" that you can get from http://msdn.microsoft.com/vbrun/staythepath/additionalresources/IntroTo2005/default.aspx Hope ...Show All

  • Visual C# Shorten NameSpace question

    I have a large enum structure like this: public enum MyEnum { Value1 = 100, Value2 = 200, .................. } Then I have a switch statement for all the enum members: switch (somevalue) { case MyEnum.Value1: Dosomething; break; case .......... } Since I have a lot of these I would like to shorten the case statements, avoiding the 'MyEnum' type definition. Many programming languages (like JScript or Delphi) allow this using the 'With' statement. In C# I tried the 'using' keyword like this: using (MyEnum) { switch (somevalue) { case Value1: Dosomething; break; case .......... } ...Show All

  • Visual Studio Tools for Office Reading data from Excel through VB.NET

    Hi friends, I need to read symbals(like ALPHA,BETA,MEU) from excel and show it in a data grid through VB.NET.Later insert it into Oracle 8i DB. I am able to read entire data but i am getting 'a' instead of ALPHA symbal and 'b' instead of BETA symbal. I am querying excel via OLEDB provider.The following snippet is using for accessing excel. Dim MyCommand As System.Data.OleDb.OleDbDataAdapter Dim MyConnection As System.Data.OleDb.OleDbConnection MyConnection = New System.Data.OleDb.OleDbConnection( _ "provider=Microsoft.Jet.OLEDB.4.0; " & _ "data source=" & ExcelFilePath & "; " & _ "Extended Properties=Excel 8.0") ' Select t ...Show All

  • SQL Server connecting to sqlexpress from classic asp

    hi, i'm using classic asp to try and connect to a sqlexpress database on a development server. i get the following error: Microsoft OLE DB Provider for SQL Server (0x80004005) [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied. /dbtest.asp, line 8 I'm using the following script which runs fine against a regular SQL server (version 8) on the network. <%@LANGUAGE="JAVASCRIPT"%> <% var strCon, conn, sql; strCon = "Provider=SQLOLEDB.1;Data Source=localhost;Initial Catalog=rapidHB;User Id=rapid;Password=xxx"; conn=Server.CreateObject("ADODB.Connection"); conn.Open ...Show All

  • .NET Development webservice response prompts me to download .smi file

    Hi all, I'm having a problem with being prompted to download an smi file, when I'm expecting a standard SOAP response, displayed in IE, from a webservice call. This has only just started happening. I have not added any new software or anything. I need to go back to the original Soap response as it's also affecting the addition of webservice references in Visual studio 2005...a bit of a problem! My platform is win xp pro, using .NET framework V2.0. Any help will be very welcome Thanks in advance Neil Hi Neil, How are you making the web service call Are you using the ASMX test page What probl ...Show All

  • SQL Server no help dialog in vs ssis

    At this point in time, I can think of nothing more annoying than a button that doesn't work. Especially when that button is the HELP button. Inside SSIS designer, say I add a "derived column tool" to the data flow task. Now if I double-click on the "derived column tool", and then click on the help button in the dialog box that appears, NO help is displayed. What gives I am using 64 bit editions of win2k3 and ss05. No, I am not running CTPs.  This was boxed product (OEM) from dell with a new server.  Note that this is 64 bit Sql Server, so maybe the bug was not fixed in th ...Show All

©2008 Software Development Network