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

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

Kekke

Member List

Trystan
MaSahara
Huy Dao MSFT
badseed2379
chrisclementdotcom2
Jay 2k
Guillermo Roldán
Bobsabb
Kamka
GoMSF
inetnerd
Marco Sousa
Alec Hardy
JBeyer
lfox
craig_munday28
Serega
Andy D
Alex_82
chds
Only Title

Kekke's Q&A profile

  • Visual Studio Team System Unable to create a Team Project

    Hi, We installed VSTS Beta3 using dual server concept. In first server we installed SQL Server 2005 Sep CTP and TFS Beta3 Data Tier. In the second machine we installed Windows Sharepoint Services(WSS) and then installed windows update for installing WSS SP2 and finally we installed TFS Beta3 Apptier. We then installed VS 2005 RC and then connected to tfs server. We then want to create a Team Project we are getting following error: TFS30177: Team Project Creation Failed Error Insufficient permissions to create a new SQL Reporting Services at VSTSRC. Explanation The permissions granted your user name and ID on the SQL Reporting Se ...Show All

  • Visual Basic Using VB.NET to run External Applications

    Is there anyway to use Visual Basic 2005 Express to run external files For example, pressing a button would open Notepad. I am trying to use the process command to run an external DOS-based program and then issue commands to it.  Is there any easy way to reroute the commands to the program once it is running     Roran1981 ...Show All

  • SQL Server Database Diagram error on SQL 2005

    I upgraded from SQL 2000 to SQL 2005. The database owner is sa and I am logging in as sa in Management Studio. But when I click on Database diagrams I get the following error "Database diagram support objects cannot be installed because this database does not have a valid owner. To continue, first use the Files page of the Database Properties dialog box or the ALTER AUTHORIZATION statement to set the database owner to a valid login, then add the database diagram support objects." How can I fix it Can you run the sp_dbcmptlevel to check the db compatiblity level for the db you are havi ...Show All

  • .NET Development System.Type.GetType(string) fails on assembly loaded with Assembly.LoadFrom

    I have the following code: Assembly a = Assembly.LoadFrom("c:\MyAssembly.dll"); Type t = System.Type.GetType("MyAssembly.MyClass, MyAssembly"); For some reason, t is null. On the other hand, if I add a static compile-time reference to MyAssembly, the code succeeds. However, in my situation, the I cannot use a static reference because in general I don't know the assembly at compile-time. Can anyone explain why this doesn't work Any help would be greatly appreciated. Thanks, Jon You must use the fully qualified name of the assembly when using System.Type.GetType. It's a lot easier when ...Show All

  • Visual Studio Tools for Office Changes to App.Config not propagating to runtime in Excel VSTO 2005

    When I change a connection string in my App.Config for Excel VSTO 2005 the change is not being reflected at run time or in the debugger. Where is the runtime App.Config being kept It's not in the bin or obj\debug... My version also prompted me about updating the value in the .settings file and on the dialog it appears to have been changed but if you turn on show all files and check the actual method in .settings you will see that it has NOT been changed.  It still picks up the value from the app.config file. ...Show All

  • SQL Server Using Team Foundation Server with SQL

    SQL 2005 Management Studio does not recognize Team Foundation Server as a souce control(not listed in the option list). When will it be supported ...Show All

  • Smart Device Development Changing system clock

    Is it possible to change the system clock on windows CE from within a native C++ application If so, how is it done Sure. Please call SetSystemTime() to do that. http://msdn.microsoft.com/library/default.asp url=/library/en-us/wcecoreos5/html/wce50lrfSetSystemTime.asp ...Show All

  • SQL Server xp_sendmail issue

    I'm using Server 2000....I have pointed the master database to the sqlmap70.dll so now QueryAnalyzer understands the xp_sendmail syntax; EXEC master..xp_sendmail 'Callan' , @query = 'qmtest' ....however, I now receive the following error; xp_sendmail: Procedure expects parameter @user, which was not supplied. ....yet, when I add the parameter @user = 'guest' It tells me; xp_sendmail: Invalid parameter '@user' Any help would be GREATLY appreciated... Please refer to Books Online for the complete set of parameters for the SP and some examples. There is no parameter like @user. There is a parameter called "@set_user" but that is a ...Show All

  • Visual Basic VS 2005 seems unusable for large VB converted project. How do I turn off the background compiler.

    VS 2005 seems unusable for large VB converted project.  How do I turn off the background compiler. I have a fairly large project that I migrated from VB6 to VS2005.  This is the RTM version of VS2005.  There are many issues that I need to fix up in the code, but every time I change one line of code, my system runs 100% CPU for 30 seconds. This is not even close to usable.  You might think I have a slow machine, but I am running this in a P4 3.5 GHZ with 1GB of RAM, and a SATA 150 hard drive. I will be forced to abandon use of VS 2005 for this project unless I can find a work around for this issue. Please help! ...Show All

  • Windows Forms how to bind collection class to datagrid,and insert & delete row in datagrid ?

    hi,all: Good monring I created a custom collection class an bound to datagrid,but there has some problem like below: my custom collection included "code" ,"Name","color" properties ,but when I bound it to datagrid ,the datagrid column display like below: "color" ----"Name"----"Code" actualy,I want column display like " Code"---"Name"---"Color" addtionaly,I want to insert new row or delete row in datagrid . so how to do it. thanks in advanced! ...Show All

  • SQL Server noobie question on CSV Flat Files

    Hi there, I am connecting to a CSV file.  When I look at the raw CSV, most of rows look something like this: "19056","CD","Rick James" These rows work fine but I run it to trouble when some rows look like this in the raw form: "134530","Poster","Elizabeth on the set of "Giant", 1955" You can see the issue that will arrise, SSIS parses this as 4 columns.  Note:  In the "Flat File Connection Manager" I have the "text qualifier" set to ". Any suggestions as to how I might process files that have this type of situation   Maybe some sort of pre-process is necessary Other than that I've had great success ...Show All

  • Visual C++ udp sockets without using MFC

    Hello every body, I wonder if you could provide me  code of an implementation example  (or location of one) of a udp based server-client pair that does not uses MFC. Thanks a lot! See http://msdn.microsoft.com/library/default.asp url=/library/en-us/vcsample98/html/vcsmpwinsock.asp These are samples for VC6, but you should be able to use them with few or no modifications with any later version of VC++. ...Show All

  • Windows Forms listbox

    When you doubble click on a itemin a list box I need a event to fire. What event will handle this http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemwindowsformslistboxmemberstopic.asp OnDoubleClick ...Show All

  • SQL Server Restore Verify

    Hi Guys: I am restoring a databse backup from sql server 2000 cluster to another server. The restore has been failing with message "RESTORE DATABASE is terminating abnormally.". When I use restore verify, i get the following message. Backup is being done on sql server 200 cluster, I am restoring on another server which is not a cluster. Any help is greatly appreciated because this is critical and urgent. Server: Msg 3242, Level 16, State 2, Line 1 The file on device 'C:\temp\LancomeSIS_US_db_200603240243.BAK' is not a valid Microsoft Tape Format backup set. Server: Msg 3013, Level 16, State 1, Line 1 VERIFY DATABASE is termi ...Show All

  • Windows Forms How to find my spot in a TreeNodeCollection?

    I have a TreeView bound to a TreeNodeCollection. I am using multipass on the data so the initial load is shorter. I go retrieve the new data when I click on the node in the TreeView. The problem is that I cannot seem to figure out how to find the right node in the TreeNodeCollection to add the new data to. Any idea thanks, lee You can iterate through the TreeNode.Nodes collection. Each Node is of type TreeNode. Each TreeNode has a tag. When you load the nodes, put an identifier in the tag to help you know what the node is next time you are on it. ...Show All

©2008 Software Development Network