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

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

PatPhilippot

Member List

J.Z
sarmistead
Sonia G.
Harmomelodic
marit
JoDask
madwinchester
mmoo9154
ChrisHelt
Yogi Bear
csillagyitzik
s_more
Mikko Nylén
rivast_2001
marco.r
ITAGraham
mabxsi
Mr_Mod
Adam Tatusko
ebaklund
Only Title

PatPhilippot's Q&A profile

  • Visual Basic Including data files in "Click Once" deployment

    Hi all, I have an application that uses one of 9 different data files dependending on the application requirements at any given time. How do I include these files in the deployment file in the correct directory so the program can find them. Thanks Dick Hi David, I really , really appreciate this reply. I too am confused about why the data doesn't show up in the published output, I always thought it would until I tried it. I have nothing but time until I get an app I can publish to a web site that is being built. If you will email me at dcroose@comcast.net I will attach the entire application fol ...Show All

  • Visual Studio Team System Question concerning TFSSecurity.exe and specifying scope...

    I've started looking at the command line tools for Team Foundation Server.  According to the help, the following syntax is used to list all the application groups within a project scope: TFSSecurity.exe /g [scope] My problem comes in trying to figure out how to specify scope.  For example, I have created a team project called tp1.  So I tried: TFSSecurity.exe /g [tp1] and I recieved the following error: FATAL ERROR: TF5039: You do not have sufficient permissions to perform this operation. I am logged in as the TFSSETUP User, who is in the Team Foundation Server Global Administrators group. Any suggestions I found James' ...Show All

  • Visual Basic Processing Serial Data

    I need the reduce the processing time in a uMicrocontroller to allow faster sampling times. This has creates a problem in the data collection routine in VB. The old system collected the analog data a converted it to a decimal format before sending it to the serial port. This data is collected and saved using Hyperterminal. The VB program would, when run, would open this file and process the decimal data by graphing it. What I need is to capture the data directly and process a binary word. All attempts to run the graph program have failed! I'm sure it's in the way I'm reading the data. I've not been able to find much informatio ...Show All

  • Visual Basic Copy all files from various directories

    I am trying to create a VB Express program to copy files from various directories to one directory. My files are in C:\AngleBase\DirName where DirName is a part number. The folder contains .tor and .prt files required to make the part. I want to input part numbers into a textbox (or read it from a list file) and the program searches for that dir and copies all files to one directory. If a part number (directory) does not exist, the part number is added to a "not found" file. This is a learning exersize for me but I've reached an impass and need help. This is as much as I have managed so far and welcome help on where I've gone wrong ...Show All

  • Visual Studio VS2003 + VS2005 beta ?

    Is it safe to install VS 2005 Beta 2 on a machine that has VS 2003 Are there any pitfalls to avoid or known issues Just wondering if I should install this thing on my machine or not. the only caveat i know of is when you uninstall VS 2005 Beta 2, make sure you repair VS 2003. ...Show All

  • SQL Server How to connect SQL Server Mangement Console to Adventure Works

    This may not be correct request but I have SQL Server Management Studio Express.  How do I connect the Adventure Work Database to the console How do you use Access to connect to the SQL Server Express Thanks for your help. To connect Management Studio Express to the AdventureWorks database, you need to have SQL Express (or another edition of SQL Server) installed and running that has the AdventureWorks database.  You can then connect Management Studio Express to that SQL Server.  Note, if you are trying to access SQL Server Express on a remote machine, it needs to be configured for remote a ...Show All

  • Visual Studio ToolboxItems.Add does nothing

    Hello, Using Whidbey Beta 2, I'm trying to add a control to the toolbox using a windows forms application. All goes well, and no error found, but the control does not appear after the application finishes, even after I restart VS.NET. I'm also adding a new toolbox tab, which works fine. First I tried using the sample code provided in the documentation, but it din't compile because it expects an object instead of a class. Since I had this working with VS 2003, I borrowed some that seems to work, at least for creating the tab. The code I'm using is the following: Dim latestDTE As Type latestDTE = Type.GetTypeFromProgID( "Vi ...Show All

  • SQL Server Update errors on a SmallDateTime field

    I am trying to update a table and the DateInactive smalldatetime field is causing errors.  Here are the statements and errors.   UPDATE Categories SET DateInactive = '7/31/2005 15:32', AdminInactivating = 36 WHERE CategoryId = 15 causes ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near '7'. UPDATE Categories SET DateInactive = '7/31/2005', AdminInactivating = 36 WHERE CategoryId = 15 causes ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near '7'. UPDATE Ca ...Show All

  • Visual Basic Format Textbox for $$$

      I would like to know how can i set my textbox up so that when i enter 1600 it turns it into 16.00 I thought this would work but i was wrong txtValue.Text =  Format(#,##0.00) you may have to consider some additional error checking but this should get you on the right track: Private Sub TextBox1_KeyPress ( ByVal sender As Object , ByVal e As System . Windows . Forms . KeyPressEventArgs ) Handles TextBox1 . KeyPress If Char . IsNumber ( e . KeyChar ) Then e . Handled = True Select Case TextBox1 . Text . Length Case Is = 0 TextBox1 . Text = "0.0" ...Show All

  • SQL Server Default TCP/IP Settings

    I am trying to do a SQL Express Unmanned installation and I have been having trouble with the TCP/IP settings. I have tried both disablenetworkprotocols=0 and =2 and after the installation is complete I open the configuration manager to check the settings. It says TCP/IP is enabled but when i check the properties it says both IP1 (my ip address) and IP2 (localhost 127.0.0.1) are both disabled. To me this doesnt make any sence. I can enable TCP/IP at installation but the IPs are disabled making a TCP connection impossible without further configuration. Is that not illogical Does anyone know how to enable these, specifically IP2, at se ...Show All

  • SQL Server does not install SQL Query Analyzer

    Hi, I am developing and application in pocket pc windows mobile 2003. I have added a reference to System.Data.SqlServerCe.dll but when i deploy the application query analyzer doesnt seem to install. Any help please cheers, michael Hi, Sorry... for info I am using CS VS2005 and SQL Mobile. Thank you. michael ...Show All

  • Visual C++ Problem with a program I am writing...

    I am writing a simple program for a c++ course I am taking and can not seem to get my vector string to initialize correctly. Below is what my main looks like. void main(void) {  double dblResult = 0;  vector <string> strTestCase1;  //******************************  //* TEST CASE ONE  //******************************  strTestCase1 = {".....",    ".....",    "..B..",    ".....",    "....."};  cout << "TEST CASE ONE \n";  dblResult = WinPercentage(strTestCase1);  cout << "Returns: " << dblResult << ...Show All

  • Windows Forms Layout

    Hi, I new to winforms, coming from win32 development using Delphi. I'm struggling to create nice layouts, all controls seem to be bunched togther, borders and so on seem non existent. Does the group have any pointers to docs that I may read up on Thanks, Ian When the form designer is open you will see a Format menu in the menubar.   ...Show All

  • Visual C# Why does File System GetAuditRules() method return null collection?

    Hi Folks, I am trying to get information about File Auditing using ASP.NET. I am trying to get that information on website but it doesn't work and return null collection of FileSystemAuditRule. But when I try to use GetFileAccessRules() method. It works fine and return valid collection. This is sure file has an audit active. and it should return one record atleast. Why GetFileAccessRules() works and GetFileAuditRules() doesn't work. Is there any difference between them while using If I am using wrong way to get file audit information then please let me know what is the best way to check file auditing Please help me because due ...Show All

  • Visual Basic Tabbed Browsing in VB .Net

    Hi, I have a question regarding tabbed browsing. I am writing my own custom web browser in vb .net studio 2005. I can create, dynamically at runtime, additonal tabs on a tab control, which will - in each - have a dedicated webbrowser control. So what will happen is 5 search engines will be searched and the results be placed in seperate webbrowsers under 5 dynamically-created tabs. The user can then tab throw each set of results. The problem is, I cannot crack for the life of me the creation of the dynamic webbrowser controls in line with creating the tabs. I will need to send a URL to each webbrowser too, to show the resulting searc ...Show All

©2008 Software Development Network