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

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

jodv

Member List

Thilakavathy
AnnNeedsHelp
sunny123
brian_tsim
arkiboys
Dylan Beattie
santosh.kulkarni
HemantKulkarni
Aleksey Nagoga.
Duc Nguyen Minh
fork4k
corblet
Joel Triemstra
MarkD08
Espo4Life
JinMengcheng
John123
Ver Argulla Jr.
Sean D Wright
Advectus
Only Title

jodv's Q&A profile

  • Visual Studio Weird problem when building a project

    Hi, I am trying to build 2 class library projects (I'll call them LibA and LibB) using MSBuild. LibB has a reference to LibA. When I run them through MSBuild using the target code shown below LibA is built without problems but I get the following error when LibB is being built: error BC30002: Type 'LibA' is not defined. The strange thing is that if I build both LibA and LibB from within Visual Studio they both build succcessfully. <Target Name="CoreBuild"> <MSBuild Projects ="@(VBProjectFiles)" ContinueOnError ="false" Properties="Configuration=$(Configuration);ReferencePath=$(ReferencePath)"> </MSBuild> </Target> Any ideas what might be wrong Thanks, dlarkin7 ...Show All

  • Windows Search Technologies How to use WDS versions from Managed Code?

    Hi, I have a .NET application that needs to search from either WDS v2.5, 2.6 and 3.0 on either Windows XP or Windows Vista RTM. It's like this because I don't know what versions my customers will be using. I have handlers inside my code that detects which version/OS is installed and then uses the correct column names and query formats (as these have changed on each version). For Windows XP I can use this approach, but for Windows Vista (as has been noted elsewhere in this forum) I can't do this anymore - as the WDSQuery COM helper DLL (ISearchDesktop) seems to have been deprecated for the "WDS 3.0 Vista" version. Questions: (1) Are the above statements correct, as in the WDS3.0 version API is called differently whe ...Show All

  • SQL Server Use row total in expression...

    I have seen some postings but none answer my question. I have a matrix that looks like the following: Total Morgan Stanley Goldman Sachs Issuance 170 80 90 Discount 12 6 6 Face Value 300 200 100 % of Total FaceValue / TotalIssuance FaceValue / TotalIssuance FaceValue / TotalIssuance My Total is a subtotal on the Column. How do I use that total in the expression for % of Total Thanks Doyen ...Show All

  • SQL Server How do you increase the value for: DTS_I_CHOSENMAXEXECUTABLES

    We are getting the following error on an SSIS package: "54 Diagnostic VirtualSQLName Domain\UserName Load Daily 859CF005-CB7F-47D8-8432-AE7C074B343C 1A986F18-343F-4424-ABAB-AC6575187DF3 2007-02-14 10:05:42.000 2007-02-14 10:05:42.000 0 0x Based on the system configuration, the maximum concurrent executables are set to 4. " Basically it is saying the we have reached the maximum amount of executables. How can we increase this value and where Thanks Set that number at the package level. In the properties, there is a parameter titled: MaxConcurrentExecutables. Set that to your desired number. However, note that using -1 (the default) should result in the best performance based on memory, cpu, etc... ...Show All

  • Visual Studio Team System Moving TFS from one server in one domain to another server in another domain

    Hi, Can any one help me. I need to move a TFS Server install from one PC 1 in Domain A to another PC 2 in Domain B. Am I right in thinking that I will need to 1. Move the TFS Server on PC 1 from Domain A to Domain B 2. Backup the TFS Server on PC1 (Now in DomainB) 3. Install TFS Server on PC2 4. Restore the TFS Server onto PC2 Will this work If not, what can I do Thanks for your time. Peter Tewkesbury That sounds like it should work if you follow the instructions on moving TFS between domains as part of step one. For specific directions, please see the " Moving Team Foundation Server " online documentation, particularly the topics on moving from one hardware configuration ...Show All

  • Software Development for Windows Vista how to restore video

    Hi, everyone When I press Ctrl+Alt+Del or the Screen Saver has been run, the display window will be black. how can i check whether the video is lost or not , if lost, how to restore it thanks. ...Show All

  • Windows Live Developer Forums how change draft folder

    Hi! I don't save my draft and recent post in my documents. I review SDK, but I not find nothing help me. Saludos, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DrawableGameComponent ContentManager Member ?

    I was happy to see a GraphicsDevice member in the DrawableGameComponent class. This saves me from getting it through the GameServiceManager, but mostly GameComponents which can draw itself should also be able to load it's graphic contents. I think it would be a good Idea to make the game's Contentmanager also a DrawableGameComponent member like the GraphicsDevice. Made already a feature request for that: https://connect.microsoft.com/feedback/ViewFeedback.aspx FeedbackID=244332&SiteID=226 How do you think abaout that It's handy but there're scenarios where it's not good. GameComponents should be easily reusable and distributable. Often it needs contents of itself. The component user won't want its cont ...Show All

  • Windows Forms Center label on maximized form and wordwrap text

    Should be fairly simple but because today is Monday I can't seem to see it.... My form is borderless and maximized. I have a single label that I would like to be horiz and vertically centered on the form. I'd like the text in the label to wordwrap and not go off the screen. Can someone please help me with this Thanks ! Set the label's AutoSize property to False. To get its text vertically centered in the form, independent of the amount of text it displays, you'll need to measure the vertical size of the displayed text. Check this thread for code. ...Show All

  • Microsoft ISV Community Center Forums Architecture - what it is and what it will be

    As an initial discussion which can be helpful to all of us I would like to hear opinions of my colleagues regarding the basic question of just what is Architecture and what we would like it to be in the future. Regards, Behzad I we ask 100 architects what architecture is, we will get close to 100 answers. Several well-known architects and organizations defines architecture in the lines of “architecture is about the structure of things that are important and hard to change, their components, and how the components fit and work together to fulfil some purpose” I agree that architecture in some levels is more about business and that it is technology-agnostic. We talk about structural options and selections, their relat ...Show All

  • Visual Basic DataGrid Update Command in Web Application

    I when try to datagrid update get the following error. there are 3 ID columns. So my code And error ' Input string was not in a correct format.' thaks J.13.Leach but again get error. Error: Input string was not in a correct format. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.FormatException: Input string was not in a correct format. Source Error: Line 136: End Sub Line 137: Private Sub DataGrid1_UpdateCommand1(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handl ...Show All

  • Internet Explorer Development Javascript in IE Addon

    Hi, How can I use Javascript in IE Addon What is the best to port a firefox extension to IE7 Addon Thanks in advance. Any idea would be appreciated. Hi, Sample command bar button script.. <script language="javascript"> var win=external.menuArguments; var doc=win.document; alert('Document Title = ' + doc.title); </script> Porting from Firefox..... Try it an see... make coding changes as required... use the external.menuArguments object to reference the browser window. Regards. ...Show All

  • Software Development for Windows Vista help vista home premium upgrade

    i have checked the compatability and it is fine, i have the right amount of space on my hd. i have 1gb or ram, however, when i try to upgrade, the windows files load it then moves to 'gathering files' and at 68% it encounters an error and ends..........no error message, no error code...it just ends all i have is the option to 'ok' the end..........what is going on Hello, This is actually a software developers application forum for Vista application compatability. Try the link below for general Vista installation problems. Thanks. http://windowshelp.microsoft.com/Windows/en-US/techsupport/default.mspx ...Show All

  • SQL Server Sybase connection in xml Config File - Help

    Hi all I'm trying to connect to a Sybase DB using an OLE DB connection. Now, it works fine when I run the project without the package config enabled, but when I add the Sybase connection to the xml config file, & enable it the connection fails. This is the error I see in the progress Tab [Connection manager "AcidPrd.basketUser"] Error: An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "ASE OLE DB Provider" Hresult: 0x80004005 Description: "Login Failed. Check for valid user ID, server name and password.". An OLE DB record is available. Source: "ASE OLE DB Provider" Hresult: 0x80004005 Description: "[Native Error code: 4002] [DataDirect ADO ...Show All

  • Visual Studio Multiple Columns and Page Breaks

    I have a report multiple columns. I set a group to Page break at end . However instead of breaking the page it just continues to the next column. Is this intended behavior, because it is misleading. So, if that's the intended behavior, how does one get true page breaks in a multi-column layout I need to have two columns for data flow, but need the groups to start on new pieces of paper to hand out to different people. ...Show All

©2008 Software Development Network