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

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

FabioDeSantis

Member List

terronmax
Tanmoy007
johnalexander
Wei Wei
John Yang - MSFT
DhanashreeP
excalidalf
lkh
DougS
Frank VDL
YoHackGrandDaddy
Scott Mason
Marie Shin
wakewakeup
ko712000
nathanshih
FlamTaps2
Mike Hillberg - MSFT
mjackson6969
Bibble
Only Title

FabioDeSantis's Q&A profile

  • Visual C# Encoding problem(Converting to Byte[])

    hi, i have a problem in converting to byte and i hope if anyone can help me  in this the problem in the delimiter that i use to separate fields from each other i insert it as Hex but when i convert to byte i get wrong hex value  here  its my code string _delma = "\xC0\x80" ; System.Collections.Specialized. NameValueCollection nv = new System.Collections.Specialized. NameValueCollection (); nv.Add( "1" , "sh ...Show All

  • Visual C++ linking problems (invalid or corrupt file)

    Hello experts! I was testing compilation programs with dlls. So I have created simple dll with header: int sum(int size) { return size*2; } And I have compiled it. I have also created simple console application using this library. In project options I have added headers path and libs path, but I have linking errors: Linking... C:\Documents and Settings\Jacek\Moje dokumenty\Visual Studio 2005\Projects\mylib\release\mylib.dll : fatal error LNK1 ...Show All

  • .NET Development How to tell: "exit and run another .exe"?

    Hi, I am building a launcher for my game, and what I would like to do is this: when the user clicks the Play button, the launcher.exe should exit and start the game.exe. In some old posts I've seen a System.Process.Start mentioned, but I cannot find this method anywhere. What works Regards,   Guido The namespace is System.Diagnostics.Process The start method has several oveloads, I think the most simp ...Show All

  • Visual Studio Team System VS2005 Source Control Integration With VS.Net 2003

    Is there a way to use the source control in VSTS without having to convert my VS.Net 2003 souce code If so, is there an article or some documentation that describes how to do this This is currently possible through command line interface. Chk these posts http://davebost.com/blog/archive/2004/12/06/308.aspx http://blogs.msdn.com/buckh/archive/2005/06/03/425100.aspx http://davebost.com/blog/archive/20 ...Show All

  • Visual Studio Team System Load test DB - when & how can it be purged?

    I noted in running a web test that the sqlexpress DB it created quickly became very large. Assuming I do not need historical data can I just delete the DB file(s)   Thanks, Tomk I assume you mean you were running a load test that contained a web test, as just running a web test standalone doesn't create a database. If you want to recreate a fresh load test database removing all previous results, you can open a Visual St ...Show All

  • Visual Studio Team System The test cases' name are not ordered correctly when select test case for an ordered test case

    Hi all, When I create an ordered test case, in the test case selection window, "Available tests" field, I click the "Test Name" to order the test cases. Curiously, the test cases' name are not ordered correctly. The order is: "Txxx, ... Axxx, ..., Ixxx" A bug of VSTS I have more than three hundred test cases availabe to order. Regards, Leon Hi Leon, Which version of VS are you using Is this th ...Show All

  • Smart Device Development In embeded vc++ 3.0, I can compile the project ,but it is hard for me to download the executive into Pocket PC, what can I do i

    In embeded vc++ 3.0, I can compile the project ,but it is hard for me to download the executive into Pocket PC, what can I do is copy the release file into specified destination. Please tell me why and how to fix this problem Thank you very much! Before I can answer, I like to have some information from you: 1. Have you installed Visual Studio .Net or Visual Studio 2005 after installing eVC++ 2. What kind of problem are you facing wh ...Show All

  • Windows Forms Reference to assembly not working

    Hi, I have a project with a reference to a dll file.  However the project is not able to access anything within the dll file.  I am basing my code on a similar application that uses the same dll file, and it works fine.   Pl ...Show All

  • SQL Server Global Temp tables

    Hi group, I want to create several global temp tables. I've created a script: if not object_id('tempdb..##tbl_ProductTypes') is null begin drop table ##tbl_ProductTypes end select * into ##tbl_ProductTypes from dbo.tbl_ProductTypes This script creates a global temp table. When I run it in QA the table is created. When I close QA the table is dropped. This is correct since I found the following in BoL: [Global temporary tables are automatically ...Show All

  • Windows Forms Nightmare scroll bars.

    Hi. I extended onto a control called simple grid. Its a basic grid painted onto a user control with 2 scroll bars that show up when the viewable rect is smaller than the grid. Now, those scroll bars are terrible. They are focus hogs. If I start the control and its smaller than the grid, the scroll bars show up and they have focus, not the grid! So when I push the arrow keys, enter or tab, the scroll bar moves, not the cell selection. I've tried ...Show All

  • .NET Development Updating multiple ListView items into Sql DB table

    Is there a way of sending datatable or dataview as variable and update multiple records in SQL DB table If it's not possible, I want to learn a better way to update multiple records at once instead of updating each record at a time. Thanks in advance, Oscar This link may help you.. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfSystemDataDataSetClassTopic.asp ...Show All

  • Visual Studio Express Editions Help with SaveFileDialog???

    Hi Ladies and Gents, Please can you help with the below The SaveFileDialog is appending to my text files and I can't find a way to get it to overwrite whatever existing text is in the save file. Please can someone advise me Private Sub SaveToolStripMenuItem_Click_1( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click Dim Save As New SaveFileDialog() Dim myStreamWriter As ...Show All

  • Visual Basic get character

    hi for example; textbox1.text=29.06.2006 I want to get forth and fifth character than I want to write to label1.text result must be :label1.text=06 How can I do Label1.Text = TextBox1.Text.Substring(3, 2) Or Label1.Text = Mid(TextBox1.Text, 4, 2) Hope this helps a bit... ...Show All

  • SQL Server cannot install samples

    hi to all, i just installed sql server 2005 express edition.  I also downloaded and run the "Northwind and pubs Sample Databases" and i have problem installing them In the line of the guide that i have to run sqlcmd -s .\SQLExpress -i instnwnd.sql i get the following error: HResult 0x2, Level 16, State 1 Named Pipes provider: could not open a connection to Sql Server [2]. Sqlcmd: Error: Microsoft SQL Native Client : An error has occured wh ...Show All

  • Visual Studio Tools for Office VSTO 2005- Word : Intercepting hyperlink events

    Hi, We are working in VSTO 2005, Word Project. Generally it is an XML Editor wherein which we will be allowing users to present their contents in the XML Tags. We need to facilitate one of the XMLTag content is to be shown as hyperlink and if the user clicks on the link we need to fire a Windows form to allow the user to enter additional details. As i explored in the Web (google) , i was not able to find the information about to intercept an hyp ...Show All

©2008 Software Development Network

powered by phorum