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

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

nayob

Member List

ronnotel
Fernando Tubio
jods
SaLaMaLaYcUm
Esprit
donnie100
Handerson
JeroGrav
Buddhist
Puffarbubbole
Pradeep Behl
R-Cyclone-S
Jim P.
vtortola
buladbanaw
Kennon2005
Attila Fogel
John Clien
Amit Bansal
Dwntrdr
Only Title

nayob's Q&A profile

  • Visual Studio Team System Unable to connect team foundation server.

    We developed tfswebsite our deployement server is located in somewhere and tfsserver is located in anotherplace when i am trying to connect tfs server from my website it throws exception unable to connect tfs server i used integrated windows authentication for my website i am able to connect deployment server but i am unable to connect team foundation server pls help me this is very urgent i used http://<servername>:8080 , like this ewbapplication but it is not connection to tfsserver the application server is in india and the tfs server is in brazil i am able to connect application server but iam unable to connect tfs server here we created website through this we are going to access tfsserver ...Show All

  • Visual Studio Error open project from source control using MSSCCI

    Hi, all. I want to Open project from source control using MSSCCI, but failed. Following is my code: SCCEXTERNC SCCRTN EXTFUN __cdecl SccGetProjPath( LPVOID pContext, HWND hWnd, LPSTR lpUser, LPSTR lpProjName, LPSTR lpLocalProjPath, LPSTR lpAuxProjPath, BOOL bAllowChangePath, LPBOOL pbNew ) { strcpy(lpUser, "DVD"); strcpy(lpProjName, "TestVLSCC31"); strcpy(lpLocalProjPath, "D:\\SccTest002\\TestVLSCC31"); strcpy(lpAuxProjPath, "svn://127.0.0.1"); return SCC_OK; } SCCEXTERNC SCCRTN EXTFUN __cdecl SccOpenProject( LPVOID pContext, HWND hWnd, LPSTR lpUser, LPSTR lpProjName, LPCSTR lpLocalProjPath, LPSTR lpAuxProjPath, LPCSTR lpComment, LPTEXTOUTPROC lpTextOutProc, LONG dwFlags ) { return SCC_O ...Show All

  • Connected Services Framework Permisison Issue - HelloWorld Example with remote client

    Hi, My CSF 3.0 components are running Machine1. If i try my HellowWorld Application from Machine1, its working fine. But if I try with machine2, i'm getting " AddRemoveParticipantFault " says that, Participant(Name='UIParticipant', Url=soap.tcp://machine2:9200/UiFromService')Creation failed . I tried with some other machines also, but getting same error. Could any one help me out how set permission for CSF to access UIParticipant Rgs Vasu Uri specified in the manifest is not matching with the uri that the application is listening. I think UI Form is listening on 'soap.tcp://machine2:9200/UiFormService' . And the uri added in the manifest is 'soap.tcp://machine2:9200/Ui Fr ...Show All

  • Windows Live Developer Forums Control HTML?

    Hi, I would like to know if I can add HTML to your own MapControl. From the SDK, all that I know is you can only add text... Yep. The AddControl method expects HTML. In the example on the interactive SDK, we are creating a DIV element, making the inner text of it "my control", and then adding that DIV to the map. You could add whatever HTML you want within that DIV, too: tables, lists, images, etc. ...Show All

  • Visual Studio Team System Import Database Schema status is completed but my Database Project is still empty (tables, stored procedures, ...)

    Dear All, I am using "Microsoft Visual Studio Team Edition for Database Professionals Version 2.0.50727.72". CTP. All my attempts of Importing a Database Schema return a status "complete" but unfortunately my Database Project is still empty . When i compare the schema of my Database Project to the one of my source database i get a confirmation that the Database Project is really empty. The comparison tool generates a script that i can use to create all the objects but unfortunately the "Write Updates" button is disabled . Thank you in advance for your kind support. Hi, Concerning the empty project, check the version of the VS DB Pro edition. We had a similar problem. One dev had vers ...Show All

  • Visual FoxPro Visual FOXPRO ODBC Drivers... still broken in Vista RC2

    Hi. Does any one knows where i can get the Visual FoxPro ODBC Drivers for Windows Vista Thanks. Helder Santos Just don't let any of your users run a 64-bit version of either WindowsXP or Vista. 32-bit ODBC and OLEDB drivers are not visible or usable by 64-bit applications. ...Show All

  • Visual Studio 2008 (Pre-release) Stretching Frame Content

    I have a <Frame> within a page that I am loading external XAML files into at runtime. What I cannot figure out is how to force the content of the pages being loaded to stretch to fill the area of the frame. The frame has its VerticalContentAlignment and HorizontalContentAlignment properties both set to Stretch, but the page content still does not strech to fill the frame when it gets loaded. I have not set any size or alignment properties in the page being loaded, so bedefault everything should stretch. Devin ...Show All

  • Visual C# Publish C# project and encounter errors!!

    Hi all, I try to publish a project I have created in Visual C# and I encounter a error that said : Error 2 The type or namespace name 'General' could not be found (are you missing a using directive or an assembly reference ) C:\Documents and Settings\Administrator\Desktop\C#\GeneralSetup.cs 24 9 I have a .dll that I already include in the project via adding reference. It compile fine. Where do I have to put the .dll to let Visual C# Studio recognize my project and let me publish it. Thanks in advance! Jason Hi, I've also encountered errors when trying to publish my C# program. Since you have this figured out could you pls explain in more details as what .dll files need to be included in /bin/debug folder i've tried ...Show All

  • Visual C++ [MFC] Why is the File Open dialog no longer resizable?

    Hi, In VC6, the File Open dialog of a standard MFC app is resizable. In VC8, it isn't. Why not And how can I fix this in my own apps Olaf van der Spek wrote: Hi, In VC6, the File Open dialog of a standard MFC app is resizable. In VC8, it isn't. Why not And how can I fix this in my own apps The OFN_ENABLESIZING is not enabled by default in VC 2005. Try this :- CFileDialog dlg(true); dlg.m_ofn.Flags |= OFN_ENABLESIZING; dlg.DoModal(); ...Show All

  • SQL Server IIF question regarding grouping

    In my report, I have a formula to calculate an average: =sum(Fields!GPF.Value)/countdistinct(Fields!Unit.Value)/7 This is grouped by the field Region. On the summary line below, the same formula is used, but with no grouping - it's for the entire company. What I'd like to do is change color of the text in the detail line to red if it is above the average in the summary line. I know how to do this with the IIF statement. What I'm not sure is what to do with the comparing, since the same formula is used in both places. I can't very well say: IIF(sum(Fields!GPF.Value)/countdistinct(Fields!Unit.Value)/7 > sum(Fields!GPF.Value)/countdistinct(Fields!Unit.Value)/7, "Red", "Black") Any suggestions to a ...Show All

  • SQL Server Header Textbox linked to Body Text box only showing data on first page???

    I have a field in my report that I want shown in my header. I have followed the directions in MSDN about doing this and have a text box in the body that is linked to the field parameter. textBodySiteNumber.Value = Fields!SiteName.Value  Then I created a header text box that has an expression to the body text box.. textHeaderSiteNumber.Value =ReportItems!textBodySiteNumber.Value Now, this does work... sort of... what I end up getting is the header renders the correct SiteNumber on the first page, but none of the subsequent pages. I do use rectangles with page breaks in my report so Im wondering if the ReportItems collection only has scope by page then Is there something I am missing thank you. ja ...Show All

  • .NET Development error: c101008d

    Hi all, I have the following minor but annoying error whenever I build my application for the first time after modifying its code . "Error 2 general error c101008d: Failed to write the updated manifest to the resource of file ".\Debug\eConsole.exe". The process cannot access the file because it is being used by another process. mt.exe " The building is fine for the second time. In other words, whenever I modify the code, I have to build it twice because the first time always generates the above error. This is true for both debuga and release versions. This is not a big deal, but just a bit annoying. Could anyone offer some tip to fix this Thanks, hz Great diagnosis Anonymousojjojo! I had this pro ...Show All

  • Windows Forms Text Size

    How would you set the size of the text becuase I have this: RtextboxUC thisrichtextbox = GetCurrentTextBox(); thisrichtextbox.TextBox.Font.SizeInPoints = new Font (thisrichtextbox.Font, TextSizeCombo.SelectedItem); but I get 2 erros with the thisrichtextbox.TextBox.Font.SizeInPoints = new Font (thisrichtextbox.Font, TextSizeCombo.SelectedItem); 1:The best overloaded method match for 'System.Drawing.Font.Font(System.Drawing.Font, System.Drawing.FontStyle)' has some invalid arguments2:cannot convert from 'object' to 'System.Drawing.FontStyle' Thanks :) thisrichtextbox.TextBox.Font.SizeInPoints = new Font (thisrichtextbox.Font, Convert . ToSingle ( TextSizeCombo.SelectedItem)); ...Show All

  • Windows Forms Xpander controls license

    Hello, I am trying to use Xpander controls in my project. Do they have licnese to buy from somewhere or free to use it Thanks. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Text on 3D surface

    Hi, I am showing a couple of boxes and need to write a readable text on the side of a box. By "readable" I mean it should not get blurry when you move the camera close to it. Can anyone give me an example of how to accomplish that or point me to an tutorial The Text3D tutorial does not really fit my needs as I do not want to render the font as a real 3D text, something like a "plate on the box" would be perfect. Maybe even a separate rectangle that contains the text so that I can hide it when the camera is too far away. The boxes itself are drawn as triangle lists. And one additional question before I search for my old school books ;) There is a BoxBoundProbe method that I use to check if a mouse click hit ...Show All

©2008 Software Development Network