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

Software Development Network >> Philip Jaques's Q&A profile

Philip Jaques

Member List

GavinJ20011
Joseph Stalin
Jon Braganza
Neotech
igor_22
Learning VB
dnweb
explode
Mallikarjun n Channappagoudra
Pierre77
Joshizzle
Freaken Feline
pavel989
sam-pan
FanZai
Kitek_06
drinkwater
narukrish
DD_Helmetman
Freespiritfox
Only Title

Philip Jaques's Q&A profile

  • Visual Studio Express Editions executable program(publish) and database problem?

    hi there!!! here's my problem regarding my published program... when i install my program to another computer. my program did not recognize the database/ cant find the database. i need to copy my database(where i programmed and publish(computer 1) and paste it (where i install the program (computer 2))   The database must be attached to the server. This can be accomplished programmtatically via System.Data.SqlClient.SqlConnectionStringBuilder.AttachDBFilename() http://msdn2.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.attachdbfilename.aspx However be aware that you are also likely to have deal with Authentication in the Systen.Management Namespace. ...Show All

  • .NET Development Which class I should use in communication?

    Hello, I am a new user of this forum. I need some advice. In System.Net.Sockets namespace there are two class, NetworkStream and Socket Classes and in System.IO there is Stream class for using TCP/IP connection between server and clients. I have read their members, properties and events in MSDN, they are nearly the same but I wonder there are any advantages or disadvantages between them. For my program which class should I use I use TCP/IP and DNP (Distributed Network Protocol) for my application, some devices connected to LAN sends data to my application also my application can send commands to these devices. But I can not decide which class do I use. For Team member of System.Net and its sub namespaces like Mike Flasko, Amit Paka ...Show All

  • Visual Studio Team System How we can call perticular server api's by using unit test ?

    How we can call perticular server api's by using unit test how we can write the code for that api's and also how we can parameterized. pls send me some sample example how we can call the api's into unit test. Actually i am a tester, i dont have any coding knowledge to do api level testing for doing api testing which are the languages do we know and how can we write the code for chek out/check in for ASCCI Page. ...Show All

  • Visual C++ MoveWindow for dialog has no effect when invoked by message handler

    Problem: MoveWindow function for a dialog appears to not work when called from a message handler. Details: My dialog-based application needs to work in both landscape and portrait screen modes. Not only that, but it needs to detect when the user has chosen to rotate his/her display from portrait to landscape or vice versa, and adjust itself accordingly. When in portrait mode, the dialog is 1024h x 768w. When in landscape mode, it is 768h x 1024w I added a message handler ON_WM_SHOWWINDOW, which is called when the application is first displayed. I also added a message handler WM_DISPLAYCHANGE which is called when the system detects an aspect ratio change. Both of these message handlers call a member function that does the follow ...Show All

  • SQL Server How to cosolidate databases of SQL Express from multiple installations?

    1. install a SQL Express instance such as myexpress; 2. create some databases with tables such as db1 and db2; 3. Reinstall SQL Express with the same instance name "myexpress". I assume we need reinstall SQL Express myexpress again becuase of bad operations. 4. Open the myexpress by management tool but I can not see db1 and db2 databases but the datafiles and logfiles are in the data directory. The question is what I need to do so I can consolidate exited databases so they can be seen in "myexpress" instance by management tool hi, WhyHere wrote: 1. install a SQL Express instance such as myexpress; 2. create some databases with tables such as db1 and db ...Show All

  • SQL Server JDBC driver distribution and maven 2

    Hi, I'm a Java developer and in my development process I use maven 2 so that I could deal with my project dependencies. What it allows me to do is to declare all the libraries my app is using and it would fetch the jar's from a host of public repositories (the main one is ibiblio). This repository is managed by the maven 2 project team and it contains thousands of libraries. They are very carefull on licencing issues so on the maven mailing list some people asked if the MS JDBC driver is ever going to be listed on ibiblio (and these people are your customers, so you should listen to them), so some pointed out it would be illegal due to the licence of the driver plus all the usual pointing to other drivers for sql server. What I'm asking is ...Show All

  • SQL Server Orphaned SQL Logins on the Mirror

    Hi there, I’ve recently set-up database mirroring between two servers in the same domain: DMZSQL01 and DMZSQL02 with a witness of DMZSQL03. The mirroring as all gone according to plan. Set up all the users/databases on the Mirror (DMZSQL02) and then do a back-up/restore to sync the databases and then enable the mirroring, this has all gone fine and we have lots of synchronised/mirrored databases now. However, if I do a failover the logins on the mirror are not valid, they are in SQL Server and also the database but they don’t work. I’ve read through other posts and found links to this SQL Server article: http://support.microsoft.com/kb/918992/ This has had no effect though. Do I need to remove ever ...Show All

  • Visual Studio Express Editions Reading html Docs

    From a previous post I had made about reading the contents from a webpage into a textBox. I got a great answer. I have one more question about it. Is there a way to read spacific areas of an html doc indeed there is...there was also a response to that...read the last response: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1026930&SiteID=1 absolutely! you can GetElementById which will return you an HtmlElement should it find one, or null if it does not. Example....lets say a textbox on my form has this html code: <input name="txtName" type="text" id="txtName"> in order to get that element, I would do this: HtmlElement th ...Show All

  • Internet Explorer Development IE7 FTP Security Issue

    I have run into a security hole in my ftp site that has only now become a problem with IE7. The structure of my ftp directory involes several streaming media folders and a Client folder in the root directory. The contents of the client folder and its children are all password protected. Inside these folders I upload content for my clients to view approvals and allow them to upload files for my own use. The root directory has read-only permissions for everybody because of the streaming content I am hosting. In the past when a client logs into their ftp folder, the password protected nature of the client folder prevents them from moving up in the hierarchy outside of their folder. In IE7 however, I have found that a client can now leave he ...Show All

  • Visual Studio 2008 (Pre-release) XBAP / JavaScript

    Hi I have an XBAP opened in a IFRAME in a HTML page. How can I add an element to my HTML page from the XBAP without reloading the page (Supposedly JavaScript) PS: if not with JavaScript … with what Here is a workaround way to get an XBAP talking with Javascript. It involves putting the XBAP in an active X container using winforms. The source code is at the bottom of the blog entry. ...Show All

  • Windows Forms datagridviewcomboboxcell selectedindexchanged problem

    i have a datacomboboxcolumn in a datagridview which looks something like this: ---------------------------------------------------------------------------------------------- ELEM VALOR UNIDAD ----------------------------------------------------------------------------------------------- Cu 5.6 "GR" / MT / OZ Cu 64.2 "GR" / MT / OZ Cu 1.2 "GR" / MT / OZ Ag 0.4 "MT" / OZ Ag 50.3 "MT" / OZ Ag 7.5 "MT" / OZ Sn ...Show All

  • .NET Development .NET Remoting question: SingleCall and static variable

    I have a CacheFactory class which contains a static CacheManager member variable, if the CacheFactory is registered as single call remote object, will all the clients that using different instance of the CacheFactory sharing the same CacheManager I am investigating how to build a cache system on a server, and web applications in a web farm can access this cache server. However, I am not quite clear how to expose the CacheManager to web applications and make sure all the web applications are accessing the same CacheManager. I hope I can get some suggestions here. Thanks in advanced I just create a testing example as below, I have 2 clients open and call the remote counter object's getcounter method and pr ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Subclassing Game.Window using System.Windows.NativeWindow and Game.Window.Handle

    Can I safely and reliably do this so that I can provide event-based input (textual) to my game How safely and reliably no ... lest they change their API at some point in the future. If you want to use winform's input mechanisms, your best bet is to go the other way and simply host a control on a winforms application. That way, you can create your own Device and render to a control. This should help you get started ...Show All

  • SQL Server Y axis labels, major gridline

    I have a horizontal barchart with integer values, both positive and negative. Major gridlines are shown and I have not specified the interval or the label format. Sometimes the gridline labels (Y axis) show decimal values. Is there anyway to format these I have tried to format the labels as "#0" but then I see labels occuring twice. I have also played with the intervals, but then sometimes, depending on the values, the zero line is not being shown. Does anybody have an idea Thanks in advance! Joos hi, I tried the way u described above, but I still don't get what I want. My problem is drawing only the zero line and not all the major gridlines for the Y-axis. How do I do It l ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Project type is not supported by this installation?

    If I start a new c# project using any of the xna templates, I just get a "The project type is not supported by this installation." error. Suggestions welcome :) Yes I have trying un-installing and re-installing XNA. Same error both times. As far as my machine is a 3ghz Pentium41gb Ram and Ati Radion X600 256mb. I have Visual Studio 2005 Standard installed on it. I was told that is should be ok to have full VS2005 while running XNA. Before you ask Yes I also have Visual C# Express installed as well. Hope this helps let me know if you need any other information. ...Show All

©2008 Software Development Network