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

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

Binary

Member List

ZardoS42
Muhammd Jassim Munir
learnerplates
DaveRogers
akin_l
diane06
Steve Stilwell
SeeMe
BrentHecht
amagino
Lucho1970
FanZai
Corres
Bo2n
ku19832001
Mzladybug
mikesnp
Aamer
Rob Mijnen
Sweeps78
Only Title

Binary's Q&A profile

  • Visual Studio Tools for Office VB2005 y Word 2003

    Good gods, am working with VB2005 and Word 2003, where send to print a document of word, until now all well, the problem have be it that is not as closing the insistences of word that are open and close the document despues to print. I am using the font source: Public Class Form1 Dim wd As Microsoft.Office.Interop.Word.Application Dim wDoc As Microsoft.Office.Interop.Word.Document Dim ObjDoc1 As Microsoft.Office.Interop.Word.Bookmark Private Sub SimpleButton1_Click1(ByVal sender As Object, ByVal e As System.EventArgs) Handles SimpleButton1.Click wd = CreateObject("Word.Application") wDoc = wd.Documents.Open("F:\Documents and Settings\Ariel\Documento wDoc.Bookmarks("MiMarcador").Range.Text = T ...Show All

  • Visual Studio Team System Connecting to TFS failes

    Hi, I have one server which exposes TFS to the Internet via HTTPS and it requires a certificate. I have two client-computers, one can access the TFS, the other can't. The one that failes shows the following output, when using the following commandline in a folder that has a workspace associated with this server: Commandline: tf get /recursive /noprompt > tf_get.log 2>tf_get_error.log Error: Team Foundation Server server.com does not exist or is not accessible at this time. Technical information (for administrator): Client found response content type of 'text/html', but expected 'text/xml'. The request failed with the error message: -- <html><head><title>Error</title></head><body> ...Show All

  • Visual Studio Team System passing more than 1 parameter in URL

    hey guys, i've got a slight problem.. i intend to pass over values from 1 form to another thru the URL.. like this: Response.Redirect( "uiIGiftConfirm.aspx pm=" + wsApp_Info.Msg + " test=" + wsApp_Info.OccPremium + " " ) the problem is that the value for "pm" and "test" are not separated.. currently it takes it as 1 value, pm, and not "pm" and "test" separately.. any idea how to resolve that hope you guys can help.. thanks! Try asking your question here: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.inetserver.asp.general&lang=en&cr=US Dave Lubash Microsoft Visual Studio Team Developer ...Show All

  • Smart Device Development Unable to change deployment directory to point to storage card!

    i got a Dopod smartphone 577W running windows mobile 5.0. As the available ram in the phone is very limited, i would like to deploy my programs into the storage card instead. So, i fitted a micro sd card(1gig) into the phone and it was detected correctly. when i go to properties tab of VS2005 to change the 'Output file folder (generated)' directory, i found that i wasn't able to modify that field as it was masked out! When i tried to changed the 'Location of the output on device' from the drop down menu, there was no option to select storage card. i've verified that the storage card is working correctly. pls help! thanks! here's a screenshot: <a href=" http://photobucket.com " target="_bla ...Show All

  • Windows Forms Sending a file path as a command line parameter

    I'm trying to associate a ClickOnce application with a file extension. The command key in the registry allows me to format a command to open my application and send the full path to the file to open as a parameter. Since this is a ClickOnce app, command line arguments are sent via a URL. Unfortunately, sending a file path as part of a URL seems to cause some problems because of unescaped characters (colon, backslash and space): *Activation of " http://www.mywebsite.com/appDir/ClickOnceApp.application open="C:\Transfer\Test File.tst "" resulted in exception. Following failure messages were detected: + Invalid URI: The URI scheme is not valid. Does anyone know of a workaround for this issue ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Game State Class - Sharing Information

    I'm using the default XNA game template for the time being, as I'm not intimate with C# yet. I'm trying to set up a game state stack, using a class derived from the game class. The GameState class has UpdateMe and DrawMe functions that basically call protected methods Update and Draw in the Game part of the inherited class. I also have a gameState handler class that has a stack of GameState objects that it keeps track of, etc. If I use this encapsulated method of game states, how do I share information between game states. For instance, if I have a menu screen that shows character info, how do I share the character's stats between the main game state and the menu state. I figured using static class members was a bit crude, but I'm unsure o ...Show All

  • Visual FoxPro Help converting string to numerical value

    hi, I'm trying to convert a string to a num with VAL(variable) however it returns a whole number with a decimal place. i.e. 69232.0 , how can I get VAL to just return a whole number aa = '69232.0' bb = CEILING ( VAL ( aa )) ...Show All

  • Visual Studio Express Editions disaplay data by detail

    i need to show my data with search, i found this code Private Sub ToolStripButton2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton2.Click Me .ProdTableAdapter.FillBySearch( Me .DsProd.Prod, Me .TsSearch.Text) End Sub and it works when you are workoing with tables but i need to work with detail display... which one is the method do you mean showing the results to the user you can bind the dataset to a bindable UI control such as a datagridview. Example: Me.theDataGridView.DataSource = Me.DsProd.Prod or try: Me.DsProd ...Show All

  • Smart Device Development Native Exception Error - 0xc0000005

    I am running the following code - which takes the data from an XML file and updates a SQL Mobile table - it seems to consistenly throw a native exception error (ExceptionCode: 0xc0000005) Here is the code: #region DataRefreshFromXML public void RefreshDataFromXML() { if ( File .Exists(appPath + @"\data\HandheldInventory.xml" )) try { DataSet ds = new DataSet (); ds.ReadXml(appPath + @"\data\HandheldInventory.xml" ); if (ds.Tables.Count > 0) { using ( SqlCeConnection cn = GetConnection()) { SqlCeDataAdapter da; da = new SqlCeDataAdapter ( "SELECT * FROM MobileInventory" , cn); SqlCeCommandBuilder cb; cb = new SqlCeCommandBu ...Show All

  • .NET Development NTDLL.DLL NtSuspendProcess Interop

    Hello, i just do not seem to get the interop of the undocumented NtSuspendProcess right. Has anybody done this before and got it working I've tried tons of different variations of the declaration shown below but all of them throw a EntryPointNotFoundException: [DllImport("ntdll.dll",EntryPoint = "NTSuspendProcess", SetLastError = true, ExactSpelling = false)] private static extern long NTSuspendProcess(IntPtr processHandle); Any help is welcome! Thanks in advance, Peter Vrenken ...Show All

  • Visual C# Where are the messages going to?

    hi everybody I've already successfully implemented a globally low level keyboard and mouse hook and it seems that this is all .net managed code could provide in global hooking. But after I got the message by the hook, where is this keyboard or mouse message going to the parameters and structures of hook event don't contain that information. any idea thanks in advance thanks Peter, but isn't it that when a message is posted to the message queue, the handle(hwnd) will be specified I mean in both SendMessage() and PostMessage(), the hwnd is in the parameter ...Show All

  • Visual Studio Team System Retreival of Release versions

        hello, I need to retreive the release versions of a Team  Project  from TFS, can somebody give me the query. And  also, how to know the name the tables where this particulars are stored.I want to know where exactly these are stored in the backend.   thanks Ratna veer You'll want to look at the following. In TFSWarehouse in dbo.[Current Work Item] and dbo.[Work Item History] is a FK field Microsoft_VSTS_Build_IntegrationBuild that relates to dbo.Build.__ID. You can get the build from dbo.Build.Build. Get the distinct Build.Build values and you should have all the integration build names. I think that is what you are looking for. ...Show All

  • Windows Forms Rehash manifest problem

    Hi, I am currently working on my deployment project using Clickonce. I am installing the Clickonce project onto the customer's server using a web setup project. So far no hassle. However, I need to update a settings file within the ClickOnce package on the server. But doing this will invalidate the hash values. So I figured I needed to update the manifests. But I can't get that to work, this is what I do... 1. Update my Settings.txt file 2. mage.exe -Update myApp.exe.manifest 3. mage.exe -Sign myApp.exe.manifest -CertFile ... -Password ... 4. mage.exe -Update myApp.application 5. mage.exe -Sign myApp.application -CertFile ... -Password ... However, I still get a incompatible hash error. Something like: the application manifest has an inva ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can't deploy to Xbox 360 from GSE

    All Apologies but this is a repeat post from 31-Jan buried inside another thread that appears to have died. I can't push code to my Xbox 360 from GSE.  This issue has been reported by other people and their problems boil down to either having entered the 25-digit code incorrectly or, in one case, that their router didn't properly support UPnP. I've regenerated, accepted and reconfigured the key *many* times, making sure I don't have any 0's, 1's, 5's or 8's in the generated key to avoid confusion.  I understand this is a one-time key so I'm not reusing an old key.  I am most definitely getting the key right and choosing accept, not cancel. I have downloaded and installed Windows Media Connect (I'm running Windows ...Show All

  • Software Development for Windows Vista Smartcard based authentication with CardSpace

    When choosing to use Smartcard based authentication with CardSpace, how does the transmission from the certificate between the smartcard reader and the STS takes place The Information Card specifies the thumbprint of the certificate to look for, but what is the exact technical background; does it just searches your computer's Certificates store and all smartcard drives for that certificate, and then sends it towards the STS Would like to know more about it, since nothing specifically seems to be documented about this feature I think I understand your problem a little better now and can see what you are trying to do. The bad news is, and hopefully I'm wrong here, is that this feature ...Show All

©2008 Software Development Network