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

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

PhrankBooth

Member List

Nick_M123
JohnGBunch
Jade Skaggs
AxelJump
carlp22
Moridi
V.E
Woyler
jbh314
xluna
DanielMena
T72
aaks
jeskey
DanUp
hackbabu
LouisPeter
Drummos
Scottzrn
jeffmorris
Only Title

PhrankBooth's Q&A profile

  • Windows Live Developer Forums Map Control position

    Hi, Is there a way where in I could move the map control from the left hand side to the top as it was earlier (with version 2 of Mapcontrol.js). If yes can you please send me the code snippet. Thanks, Sampat. Sampat wrote: Hi, Is there a way where in I could move the map control from the left hand side to the top as it was earlier (with version 2 of Mapcontrol.js). If yes can you please send me the code snippet. Thanks, Sampat. If I understand exactly what your saying is that you want the v3 dashboard to be positioned (and probably look similar) to the v2 dashboard. I mean you could hack the API to position the v3 dashboard to be in the center, but it'll overlap t ...Show All

  • Software Development for Windows Vista Use of trans-in-place filters

    Hi DirectShow forum, I read on the MSDN site: "Be aware that placing the Sample Grabber between a video decoder and the video renderer can significantly hurt rendering performance. The Sample Grabber is a trans-in-place filter, which means the output buffer is the same as the input buffer. For video rendering, the output buffer is likely to be located on the graphics card, where read operations are much slower, compared with read operations in main memory." I also read a suggestion that you could place a transform filter (not trans-in-place) filter between the sample grabber and the video renderer, then the samples would be grabbed from system memory (faster), not off the video card (slow). Could you confirm for me that thi ...Show All

  • Software Development for Windows Vista Windows Cardspace Control Panel applet crashes (RTM)

    I have several development machines that I have been unable to get the RTM version of .NET 3.0 working on properly. Even after completely uninstalling the various pre-release CTP cardspace / infocard packages, if I make any changes (add / edit / delete a card), the applet crashes with an uncaught exception. Attempting to debug it in VS isn't much more helpful -- I get this error: System.ExecutionEngineException was unhandled Message: An unhandled exception of type 'System.ExecutionEngineException' occurred in System.IdentityModel.Selectors.dll Is there some way to remove whatever Registry / files / settings / etc. are causing cardspace to crash This seems to be system-level as it occurs even with a newly created user account. ...Show All

  • Visual Studio Team System CTP7 CPU Very Busy

    On several occasions Data Dude has stopped responding while using from 50 to 90% of the cpu. It's happened while performing a data compare, while unloading a project or while trying to close a project. Some times I see the error message " Failed to retrieve msbuild property DBProduct from the project file ." Sometimes it comes back, and others it will run for hours if I let it. Has anyone seen this issue before Does this after you made a change in a schema object If you deleted the DAT file what will cause it to get in this state How many objects are there in the project Do you have many objects in an error or warning state -GertD ...Show All

  • SQL Server SQL Server 2005 Installation Problem.

    Hi all, i am facing problem in the installation of SQL Server 2005. I am installing sql server 2005 on Windows Server 2003. When I start the setup error occurs. It says, Microsoft Windows Installer 3.0 is not installed. I think Windows Installer comes with windows server 2003. what should i do now.. need help. I am not a WIndows geek, but there was another link for WIndows installer 3.1 v2 [1] which might be helpful: http://www.microsoft.com/downloads/details.aspx displaylang=en&FamilyID=889482fc-5f56-4a38-b838-de776fd4138c Otherwise, post your question to the setup group rather than the Tools group. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Build Event programatically - set post build event

    Hi I am creating a solution for visual studio 2005 and I add project, references and items programetically (dte = (DTE2)Interaction.CreateObject("VisualStudio.DTE.8.0", "")...). What I want is to set on some project ( VSProject2 vsProject2 = project.Object as VSProject2... or Where ) a Build Event; exactly a Post Build event actions. For example: copy "$(ProjectDir)\Config\SystemTables.xml" "$(TargetDir)SystemTables.xml" How can I do that programatically Thank you for the answer! Lp Sebastijan Hi Sebastijan, Once you have the project object (EnvDTE.Project), you can set the Post build event using - Project oProject = GetProject(dte); // Setting post build event to [copy "$( ...Show All

  • Visual Studio Tools for Office Receiving command line parameters in word add-in

    Hi All, If a word document is created/opened using automation i.e. using documents.Add and doucments.Open respectively, can we pass any command line parameters/arguments Is it possible for the add-in to be able to receive those parameters Any response will be appreciated TIA ...Show All

  • .NET Development Web Service Proxy Support in the .NET Framework 2.0. Problems Resolving Host Name. .PAC

    We have an Proxy Auto-Configuration (PAC) file that uses the isInNet function to determine if the current request should be directed to our proxy server for external requests or be a direct connect if connecting to an internal server. We have a .net 2.0 client application that makes a call to a webservice. If the webservice’s url is configured with the host name (http://WebServer/WebServices/simple.asmx) we get an “The proxy server could not handle the request” error message. If we configure the webservice url to use the IP address (http://169.12.50.5/WebServices/simple.asmx) the webservice call works fine. If we remove the configuration for the .PAC file on the client machine both urls will work for the ...Show All

  • .NET Development ForEach loop question about Databases

    I was wondering , Am I not allowed to change the values in the table that I am looping through This procedure below updates the MobileDbDataset fine but the line dr.PRIORITY = "U" chages when the code runs but the dataset is not updated when getChanges, Update and Accept Changes are called. What am I doing wrong Thanks Jon Stroh //This procedure will update changed Customer records on the PC to the Mobile Device's Client Database. DataSet1 . CUSTDataTable dt = new DataSet1 . CUSTDataTable (); DataSet1TableAdapters. CUSTTableAdapter ta = new FBWinMobileSync.DataSet1TableAdapters. CUSTTableAdapter (); dataSet1.EnforceConstraints = false ; ta.FillByModified(dt); progressBar1.Increment(10); for ...Show All

  • Visual Studio Team System Open WorkItem Editor

    Hello there: I'm writing a Plugin for VS 2005 which work similar to TeamExplorer, this plugin show in a tree all my WorkItem's. I want double-clicking in a WorkItem and open the WorkItem Editor. There are some way to done this task thX in advance Ok, the general idea is have in the Tree folders containing WorkItems, then the user double-click in the WorkItem, in this moment open the WorkItem Editor Dialog. I find a class called WorkItemEditor in the integration package of TeamFundation but, i don't know how obtain a intance ( the constructor is internal :( ). ...Show All

  • SQL Server Granting UPDATE for only certain columns in a table

    I have tried using the SQL statement shown below to grant UPDATE permissions for a single column in a single table to a user with db_datareader privileges. grant update (col_1 ) on trs . dbo.table_1 to calc When I then run a SQL script that has an UPDATE for col_1 on trs.dbo.table_1, I get an error message Msg 230, Level 14, State 1, Line 2100 UPDATE permission denied on column 'col_2' of object 'table_1', database 'TRS', schema 'dbo'. Why is the error message referring to "col_2" when my SQL statement is trying to update "col_1" When I performed the "grant" I did it with an account that has db_owner, db_securityadmin, and db_ddladmin privileges. This worked in SQL Server 20 ...Show All

  • .NET Development C# Com Interop problem - should be simple!

    I have some trivial vb6 sample code that uses a com dll to interface to talk to some hardware but I can't seem to port it over to C# Interop successfully. I have tried many permutation of marshalling attributes but I get a "Attempted to read or write protected memory..." exception with types I believe will work and DataTypeError returned from the com interface function if I am deliberately incorrect with the types.   The com interface declaration in OLE Viewer: long RpcCall(long iJobCode, VARIANT SendData, [in, out] VARIANT * RecvData);   The sample in vb6: Dim n() as Byte Dim r() as Long n = StrConv("Time_s" & vbNullChar, vbFromUnicode) conn.RpcCall(10012, n, r)   The intero ...Show All

  • Windows Forms DataGridview :Add new row programatically

    I have set the AllowUsersToAddRow property to true which rows at the bottom all the time. I want to control this with the click of the button. On clicking of a button I want to add a new row to datagridview. and allow editing until saved. ...Show All

  • Visual Basic DataTable

    What is the .Net Professional way of saving , Editing, Deleting in DataGridView. Mirza Ashraf, Thank you for your question. Do you mean you need the explanation on the declaration of DataTable class It will be a long long story on the issue because of the inherits and implements. In that case, when I have some classes, methods or interface such as the IListSource, ISerialisable, I always look them up in MSDN linked as follows: http://msdn2.microsoft.com/en-us/default.aspx Generally speaking, the DataSet stores a in-memory table that is serialized in XML format. This is the .NET Framework characteristic. So the XMLSerialisable interface is implemented. For other reasons on the interfaces, I recommend you to look up ms ...Show All

  • Visual Studio Express Editions Cant display forms 2..3..4..

    I Got a problem.. i got a program that needs 3 or even 4 forms ..but the problem is i cannot display higher then form2 enve if i try in form1 Form3 NewForm3 = New Form3(); NewForm3.Show(); or any other ..even the aboutbox...nothing..but if i try do that in the 2nd form..i can display form3 from from there..but not from form1...how come and how i fix this.. ShadowRayz http://img220.imageshack.us/img220/6518/1jc3.gif Look.. it like dont even find such Form... ...Show All

©2008 Software Development Network