Software Development Network Logo
  • Visual Studio
  • Visual FoxPro
  • Visual C++
  • Visual C#
  • VS Team System
  • IE Development
  • SQL Server
  • .NET Development
  • Audio and Video
  • Game Technologies
  • Visual Basic
  • Microsoft ISV
  • Smart Devicet
  • SharePoint Products
  • Windows Vista

Software Development Network >> Pedro Felix's Q&A profile

Pedro Felix

Member List

naguaramipana
Al33327
adorer
SolveIt
Cptkirkh
Deepesh Verma
rlw
algoaddict
Ram Shriram
Gadfly
DavidThi808
FasT
Fantonis
Dnieto23
KDS 1000
Mark The Archer Evans
Alexandr Vishnyakov
ascona
Patrick8639
Rocky79
Only Title

Pedro Felix's Q&A profile

  • Visual FoxPro Memo field conversion

    I am using a Microsoft ODBC Driver to connect to 4 DBF files . One of them has Memo Fields in it and I am not able to see this particular table when I try to import it in Access. All the others I am able to see and they do not have memo fields. Any idea guys How I can fix this The whole point was not to export them in any kind of file. The requirement was to directly acess from the DBF file :) ...Show All

  • Visual Studio Debugging Visual Studio application

    Hello, We have full licences for Visual Studio and we develop on our local PC's for applications to be used on servers. We have a situation though where we acually need to debug and watch the application on the server where no Visual Studio is installed. Can the application be debugged without the full Visual Studio package being installed, i.e using the .NET framework etc Or would a full version of Visual Studio be required on the server. Thanks in advance You don't have to install the full Visual Studio. You can just install the Remote Debugging component on your server machine. You should be able to find the remote debugging installer from the Visual Studio CD/DVD. ...Show All

  • Visual C# convert double to 2 decimal places

    Hi all, I had a simple c# format that need your help My code is as follow: Yield = (float )Good/(float)(Total); sw.WriteLine(Total + "\t\t\t" + Good + "\t\t\t" + Yield); My question is how to format Yield to 2 decimal places. Yield is declared as a double. Thanks This is how you can do it double d = 11.313243432d; string s = d.ToString( "f2" ); HTH ...Show All

  • .NET Development I use VB 2005 express and can not connect to SQL server 2005 express on another PC

    When I go to "View, Data Connections" on the menu, it only let me to add 2 types of connections: access and sql server files. But I cannot browse sql servers on my network. The question is: is it possible to have a data connection to a sql server running in another PC (I have actually a server running an instance of sql server 2005 express). Ruben: I'm trying to confirm but I don't believe it will let you use the visual tools to connect to a sql server on the network. Previous versions of VS.NET wouldn't. However you can still connect with Sqlclient - you just couldn't use the visual tools. I believe it's the same here but let me confirm. ...Show All

  • Windows Forms Center a panel in a sizeable form

    I have got a form that has a panel on it with controls on the panel. What I am wanting to achieve is to center the panel on the form, reguardless of the monitor size(either square or wide screen). I am programing on a wide screen monitor, and I would like to make sure that the panel is in the center of the form reguardless of what it is viewed on. Can this be done Davids Learning The dimensions of the screen are irrelevant towards the position of the panel inside the form. Do you want to center the form or the panel ...Show All

  • Visual Studio Express Editions How do I count the number of lines in a Rich Text Box, or a List Box control?

    More accurately put:  How do I retrieve the number of lines of text Thanks, John   Dim a As Integer = rtb.Lines.Length Be sure multiline is set to true ...Show All

  • SQL Server configuring sql express on installation

    Can someone explain to me what SQLACCOUNT=<domain\user> is or should be set to I get an error telling me to specify a built in account or give a username domain and password for each service. How do I specify these things I didnt see those in the 1 msdn page that explains this. I asked this before but I still cant figure it out. Thanks. It will be needed for the service account that will ne used to start the Windows Services that come along with SQL Server. See more information about the possible options here: http://www.haidongji.com/2005/10/21/silent-install-command-line-install-of-sql-server-2005-part-3/ HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Data not replicated when report runs...

    Help! I have a report - a table with 2 columns - to show peoples Lastname and Forename. If there are people with the same surname - the surname is only shown once - like this: Burt Gary Diane what I want is this: Burt Gary Burt Diane Can anyone tell me what I am doing wrong - or need to do Many thanks. Gary Brilliant! That is the answer - thank you so much! Shame I couldn't use the forum and click the (this is the) 'Answer' button - it results in a Microsoft 'Unknown Error' message! Gary ...Show All

  • Visual Studio Express Editions Visual Basic windows forms

    Hey, I've only started using Visual Basic tonight, and I've never touched any previous form of VB and/or Visual Studio. So this is probably the newbie-ist question you've seen for a few years if not ever. Anyway, I've got a task set out whereby I must create a testing program as such, with multiple choices. I've created a form for every question, along with a welcome form and a grade form. My question is simply, how do you link the forms, so that a user can click the button labelled "Continue1" and it opens up form2, within the same space and so on and so forth. Any help would be more than gratefully received. Thanks! well to do this, firstly on each form set the Startup Position of ...Show All

  • Visual Basic Refreshing the News Channel in the VS2005 Start Page

    I have the option for the start page news channel still set to it's default ( http://go.microsoft.com/fwlink/ linkid=45331&clcid=409 ). I noticed that the dates of the articles were way out of date, so I changed the option (Tools | Options | Environment | Startup) for "Download content every" to a different number. Once I clicked OK, the Start page refreshed with the updated article list. I have noticed that this is the same situation on three different machines with VS2005 installed. That is, to get the latest articles, I need to manually adjust the "Download content every:" setting and then click OK. Shouldn't the articles list automatically refresh every time that VS2005 is restarted It seems silly that I ...Show All

  • Visual Studio 2008 (Pre-release) Acces to a button in a DataTemplate

    Hello everybody,   In my application, I've got this XAML code: < Page.Resources > < SharepointListItemsViewer:NodeTemplateSelector x:Key = " nodeTemplateSelector " /> </ Page.Resources >   < Graph:Graph Name = " theGraph " NodesBindingPath = " ChildNodes " CoefficientOfDampening = " 0.7 " FrameRate = " 0.5 " NodeTemplateSelector = " {StaticResource nodeTemplateSelector} " > < Graph:Graph.Resources > < Style TargetType = " {x:Type Button} " > < Setter Property = " Template " > < Setter.Value > < ControlTemplate TargetType = " {x:Type Button} " > < Border Name = " theBorder " BorderBrush = " Gray " Bor ...Show All

  • Windows Forms Problem to change datasource from datagridview (DataGridView bug ?)

    Hello all, I've a datagrid DG1. I fill it's datasource property during runtime with a procedure (PROC1). The first time i fill the datasource (with a datatable), it's okay. Then, i try to associate another datatable to this DG with (PROC1). Before the association, i do DG1.DataSource = null and after DG1.DataSource = NewDataTable (NewDataTable is ok). Data are not visible in the DG1 and then, when i click on the header, data become visible (There are no code associated with this event). Has someone an idea with this pb Is this a DataGridView bug Thanks in advance for your help. Raphael Hello all, i've find the problem : In RechercheListeClients procedure which return a DataTable, there ...Show All

  • Visual C++ What of "CLR via C++/CLI" Book?

    I was really looking forward to CLR via C++/CLI by Jeffrey Richter and Julian Templeman, which ( according to amazon.com ) was due for release on November 29, 2006. My Amazon order was cancelled, and the Microsoft Press link no longer exists. https://www.microsoft.com/library/errorpages/smarterror.aspx/404 aspxerrorpath=/mspress/books/9147.aspx Does anyone know if the book release was cancelled or postponed This is what I was looking forward to: Book Description Master the common language runtime (CLR), and reap the benefits of more efficiency and reusability, better resource management, better administration and deployment, and more robust security. Targeted to advanced developers and software designers, this book takes you ...Show All

  • .NET Development How can I let a user select the location of a database?

    Hi, I've created a program that uses a database. The problem I have is that the drive names and or directory names change true time. How can I let a user select the current data base location when it has been changed Like: Dim path as string Provider=Microsoft.Jet.OLEDB.4.0;Data Source=(path & Database.mdb) path = (get it from an file dialog box) Any idee I'm working with vb 2005. The connectionstring I use is made with the wizard of vb2005. Tanks for the reply! The idee is that the user can select it and that the user.settings holds the value. The connection is used on several forms. I don't want to write the same connection code in each form. So I want the connection to be lokated at the my.settin ...Show All

  • Visual Studio 2008 (Pre-release) Update to StatusBar does not Refresh

    I know I am probably doing this wrong, but I can't seem to get my statusbar to update while I am performing an action. In my main window I call a function which does something. I never even see my first message even though the action takes up to 3 seconds or so. Plus I am currently removing statusbaritems and rebuilding. Can I just update the TextBlock that exists in the xaml <StatusBar x:Name="StatusBar" Grid.Row="2"> <StatusBarItem DockPanel.Dock="Left"> <TextBlock x:Name="StatusText" Text="Ready."/> </StatusBarItem> </StatusBar> public void DoSomething() { Util.UpdateStatus("Doing something"); //Action code goes here Util.UpdateStatus("Done!"); } static class Uti ...Show All

©2008 Software Development Network