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

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

StuMan1337

Member List

BurtonJ
Svante Moren
JanSchreuder
flipmode
Zachary
elixic
AnnieKM
RossAu42
OgaNS
whidbey_boy
Raven-X
Annihil8
Manu_Raj
lkd85
Rubens Arandas
Mark W.
Peter Hancock
Andreas Kyriacou
kehoe
Anders Ljusberg
Only Title

StuMan1337's Q&A profile

  • Visual Studio 2008 (Pre-release) XamlReader and {StaticResource }

    Hi, I'm trying to dynamically create a DataTemplate from an XAML string using XamlReader, but I cannot reference a value converter static resource. If I omit staticresource references it compiles and loads correctly. What is the correct way of linking the resources of the application into the xaml being loaded I have tried ParserContext with Parent set to the ListBox that the dataTemplate will be assigned to. I was trying xaml similar to this which works when used in the standard non-dynamic way. <DataTemplate xmlns="..." > <StackPanel> <Image Source={Bind XPath=@Id , Converter={StaticResource IdToI ...Show All

  • SQL Server Store Arabic Date into the table

    Can anyone please tell me that how to store the arabic date into the table. I created a table with two date feilds, one for english date and another for arabic date. But i don't know how to inset the arabic date into the table. So please help me on this. Ragards Hanas Hi Hanas I think you are mixing data storage and data presentation . Data formatting should happen only when you present it to your user and in this case you can useConvert function with different convert styles: CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) for example stype 101 will look like mm/dd/yy , o ...Show All

  • SQL Server Problem with query using SQL Server 2005 September CTP

    To SQL Server 2005 Team:   This query works fine on SQL Server 2000:   select    top 10 aename as EscrowOfficer,aomon,aoday,aoyeary2k,                               aemon,aeday,aeyeary2k,aprice,aescr#,aprpt#,abra#,arecmn, arecdy,arecyry2k,Source,absct,asrep1,asrep2,asrep3,asrep4, asrep5,arepc1,arepc2,arepc3,arepc4,arepc5,atname as TitleOfficer,               acust#,aagnts,aagntb,aempl#,titccd,titord,ati ...Show All

  • Software Development for Windows Vista XOML only State Workflows with output parameters from internal Activity

    Tom, I have created a custom activity that returns a dataset. My XOML only State Workflow uses this activity and needs to retrieve the dataset returned by this activity. How do you bind the output dataset parameter from the custom activity used inside the XOML only State workflow Can you modify your XOML only example to get an output parameter from a custom activity that returns a dataset I look forward to hearing from you soon. Sincerely, John Portnov Below is an example of binding to a DataSet property from a previous activity and to a DataTable within the DataSet from a previous activity: < Sequential ...Show All

  • Visual Studio Internet-remoting setup in VS 2005-client.

    I need to logon to a SourceSafe 2005-server in another part of the country. I managed to switch to the SourceSafe Internet-control, but when adding a new database, it asks for the URL (which I got, and I would belive works just fine), and a shared path to a SourceSafe-server-file. I got a little confused 'bout the last part, as the server is located on another network, with no access, but http. What to do  - Benne Miha is correct. Since the web service can serve multiple databases, you need to specify the known path of the VSS database. You don't need local access to that path, it is used by the ...Show All

  • Visual Studio Problem with the VS SDK March 2006

    Hi, I have installed the VS SDK March 2006. While creating a project from the "Domain Specific Language Designer" template, the wizard crashes in the details screen. It displays a message box stating "An unexpected error has occured. Error Message: Path should refer to an .ico file". It exits the wizard without creating the project. Is there a solution for this problem Thank you in advance, Veli I think the problem is about the language settings from the Regional Settings. I have changed the language to "English" and it is fixed. Veli ...Show All

  • Visual Basic deleting from database

    i got a button called delete and when i enter in a order id (shown in the pic) and click on delete it goes into the database find the id and the row of information and deletes it, i want some information on how i can this can be done idea anyone please You would have to use a Command object like OLEDBCommand or SQLClientCommand google deleting records ado.net vb.net I always start there because I end up finding different ways of doing the same thing and also learn other things I didn't know how to do. ...Show All

  • Windows Forms Installing 2 versions of the same application on the same machine with ClickOnce.

    Hi, Is it possible to install 2 different versions of the same application on the same machine with ClickOnce I would like to have the possibility to have a production version and a dev/test version of my app on the same machine, for obviuos reasons. I was hoping to achieve that by changing 'Publishing Location' and 'Product Name' in the Publish Option of ClickOnce, but doing that still installs one version on top of the other, it just changes the app name :( The only way I could find, using ClickOnce, was to change the output name of my application...for example: MyAppLive and MyAppTest. But I would rather avoid that...Is there ...Show All

  • Visual Studio Tools for Office Visual Basic Excel Project

    Ok, I have posted many times on this forum for this subject, but so far I am yet to find the answer I'm looking for. I am trying to create a very simple application with Visual Basic 2005. I have a number of Excel workbooks and simply want them to be opened from a command button within the application. However, I would also like it to meet the following conditions: 1. The application should open on any computer, ie. the problem i have is the file would not work on any other PCs than mine if the Excel file was in the directory "C:\Documents And Settings\Andy\My Documents\Book1.xls" 2. If possible people should not have to ...Show All

  • Windows Forms Trusted_connection=true

    Thankyou very much for the information, SQL can be exasperating.  So setting trusted_conneciton=true does not automatically authenticate another computer running my application to access sql on my server.  Just a couple of statements to make sure I understand SQL ok.  My database has one user called dbo.  I am listed as the database owner:  NW/herringf Do I need to activate the user list for the database and add something like NW/smithm and grant that user access to my database Fred Herring That depends on your object permission, if your application directly use an object which is only touchable by dbo, the y ...Show All

  • Visual Basic Getting the Control under a Context Menu

    Hi,  I have a context menu attached to several controls on the same form. How can I determine on whitch one of these controls the user right-clicked to get the context menu and select an option I gess it can be done in the menu option click event handler, but I do not know how. Thanks Patrick My apologies, seems I may have pointed you in the wrong direction. I'm new to VB.Net and the menus I've created are for dynamicly created control collection. I've done a little reading though and it looks like the property you need to reference the clicked control is "ContextMenu1.SourceControl", this apparently re ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XFiles & Transforms

    Does anyone know how are the transformations stored inside an XFile frame hierarcy, is each transform relative to it's parent, or are they in world space Thank you very much for clearing that up for me . I'm working on an OGRE mesh to X converter, and after I convert skinned meshes, my transforms blow up, so I just wanted that cleared, so I can be sure that the my bug isn't in this part of the code. Once again, thanx! ...Show All

  • Visual Studio Team System Problem when i want to add a new project team with Team Explorer

    Hello, I have a problem in the sharepoint site (party) when i had a new project team  : The message is : 8/10/2005 4:58:50 PM | Module: Engine | Task "" from Group "" completed with success | Completion time: 0 seconds 8/10/2005 4:58:50 PM | Module: Engine | Thread: 6 | Running Task "SharePointPortal" from Group "Portal" ---begin Exception entry--- Time: 8/10/2005 4:58:51 PM Module: Engine Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Message: Unable to connect to the Windows SharePoint Services at lu-vsts Exception Details: The ...Show All

  • Visual Studio Team System Error 32000 The Commandline "F:\TFS\Tools\Createds.exe"/Setup/install ...

    While installing Team Foundation Server Beta 3 Refresh (Single-Server installation)an error {Error 32000 The Commandline "F:\TFS\Tools\Createds.exe"/Setup/install " http://kaushal-2k3/ReportServer/ReportService.asmx " tfsREportDS "Data Source = KAUSHAL-2k3;intial catalog=TFSWarehouse" "KAUSHAL-2k3\TFSREPORTS"} is displayed. INstalled Prerequistes:     OS Windows 2003 Server.    Windows Share point Services.    IIS 6.0    SQL 2005(RTM) (Installed Analyisis and Reports services) Error is as displayed:    Help me out in finding solution to overcome this error. Thanks in ...Show All

  • .NET Development Set SSOCANARY in Webservice

    Dear friends, i can't set the SSOCanaryChecker for SSO set User's credentials method in the webservice, because im not able to get the OnInit() or OnLoad() method in webservice page and even in webservice im not getting Page object to set CanaryChecker. Anyone Can help me Please.. How to use SSO Canary in Webservice. Thanks in Advance. Regards, Vasanth.        Thank you very much Denial...      And one more question.... How could I call an exe from Webservice... for example I have a exe file... I suppose to the pass the required arugments to that exe and it will p ...Show All

©2008 Software Development Network