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

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

droid

Member List

Ewino
vbstar
Erwin van Hunen
eisebs
ARASKAS
sara8dev
Hardascii
rlarno
redflux
Vasanths R
anand singh
Alberto Grasso
YoungjaeKim
Alain L
Homiczek
Nato72
um_au
Ravengbc
carabasha
Jimmy 123
Only Title

droid's Q&A profile

  • Windows Forms Databinding to a combobox... strange

    Hey, I want to bind some data from my sqldatabase to a combobox in my form. When i try this, it doens't work; i get this exception: System.NullReferenceException: Object reference not set to an instance of an object It's strange, because I use the same code for a toolstripcombobox (other names, other table) but the code works. This is my code, if someone can tell me what wrong... thanks! query = "EXECUTE getToBeSolvedIn" ; IDataAdapter ida = dat.GetAdapter(query); ida.TableMappings.Add( "Table" , "ToBeSolved" ); ida.Fill(ds); //gives me the correct number of columns and rows, so the table i ...Show All

  • Visual Studio Team System Additional files in .testrunconfig file

    Hi,   Is it possible to add file in .testrunconfigfile->Deployment->Additional files with reference to environment variable. Something like %TEMP%\myFile.txt Thanks,   Dmitry Berkovich As a work-around you could try adding a Post-Build step to copy the files you need to the local solution folder. From there they can be added as deployment items using a hard-coded path. ~ Michael ...Show All

  • Visual C# Need Help Learning C# after Java

    I would like to learn about C# and .NET. I'm coming from a Java background. I know this question has been asked many times, but I couldn't find anything with the search. What sites can help a Java developer learn C# and how to use the .NET framework I'm not interested in Windows GUI programming, just Web programming. Also, I'd like to know more than the syntax difference between Java and C# and some discussion about .NET and the available libraries. Any help would be appreciated. Feel free to point me to a different forum if needed. Welcome! When it comes to learning about the main syntactical differen ...Show All

  • Visual Studio Team System conflict in extracting data

    Hi, I am unable to extract the data from hidden field. It is giving result in the details tab as "No HTML tag was found that satisfies the criteria". I'm also conflict with the fields in the 'ExtractAttributeValues'. Will you please elaborate it with an example Also as in opensta we can extract data into a variable and then that variable can be used anywhere in the code, can we use same technique for accessing hidden values And how can we access data in VSTS The following page in the online help walks you through using ExtractAttributeValue: http://msdn2.microsoft.com/en-us/library/ms243183(en-US,VS.80). ...Show All

  • .NET Development Best Practice Architecture Question (Distribued Application Cache)

    Hi, Im in the process of developing a distributed application that has dynamic web menus and other components that are stored in my sql database. the menu is set at load time on the master page, and as you can imagine this will become a big problem having to query the db everytime I load the page. So I have created a cache to store the menu to save on db access. The question I have is: In which of my application layers should I place the cache query code basic overview of my app is as follows:         ---------User Interface---------------------     Web App     SoapProxies   ...Show All

  • Visual Studio Tools for Office Access to the contents of ThisDocument

    I apologize for another newbie question, but I've been searching everywhere for this... How to I get the bytes of the current document (Globals.ThisDocument) I was going to use Globals.ThisDocument.FullName to read the file from the filesystem, but quickly discovered that when editing in IE, that actually contains the URL of the doc, not the physical path (I thought it might contain the IE temp file path). I'd rather not save to disk but if I can't get at the content in the running VSTO app, maybe I'll have to. Another thing I'd like to do is a SaveAs (to save doc in different format) without the user knowing. But I can't figure out how ...Show All

  • Software Development for Windows Vista Sharing same workflow instance with two different WWF Runtimes

    Hi, is it possible to share the same workflow with two different workflow runtimes on two different hosts. This means both runtimes can listen to events for the same workfow instance, however each will listen to different events within the workflow instance not the same event. Akram, This does work but you'll need to use a persistence service that can be shared between the runtimes (e.g. the SQL persistence runtime). You will need a way to resume the instance into your host on receipt of the event. I've implemented something like this that allows a host to manage long running processes across a web farm - the events in this sc ...Show All

  • Visual Studio Load report failed.

    Hi, I am using the Bundled Version of Crystal Reports in Asp.net Web application. The version is 9.I got the "Load Report Failed" exception when i deployed the apppication on the client machine. Can you please help me out of this issue Hello, The 2 main reasons for this error with Crystal Reprots in ASP.NET web applications are deployment and permissions. For deployment check out: http://support.businessobjects.com/communityCS/TechnicalPapers/crnet_deployment.pdf.asp For permissions here is an article: http://support.businessobjects.com/library/kbase/articles/c2011621.asp You can also search in the kbase further: http://support.bu ...Show All

  • Windows Forms MultiColumn Combo

    I would like to see a multi-column combo in thewindowsforms 2.0 I have used them heavily in access and I'm really missing them now that I do most of my developmenn in .net. ...Show All

  • Visual Studio Tools for Office How to add Top Level Folder in Outlook

    Hi everbody, Can any body knows how to add a top level folder like "Personal folder" in outlook 2005 through VSTO 2005. thanks Hi, You need to create new PST file: this.Session.AddStore ("My New Store"); Hope this helps ...Show All

  • Visual Studio Specifying non-attribute data to a Task

    I understand how to write tasks for "simple" definitions (i.e. all necessary data encoded in node attributes), but I've done a fair amount of research and testing and I can't figure out how to write a "complex" task. What I'd like to be able to do is parse the following: <MyCustomTask x="x" y="y"> <MyItem a="a1" b="b1" /> <MyItem a="a2" b="b2" /> </MyCustomTask> Where there are a variable number of SubItems. I've tried writing a MyItem task (that extends Task) and making an array of them a property of MyCustomTask, but still get th ...Show All

  • Visual FoxPro Grid headers default mouse pointers etc...

    Hi all; I am creating grids in my forms by dropping a table into the form. The default header's mouse icon is a down arrow which misleads the user into thinking that the column can be sorted. Is there a way to change this default so it doesn't have the down arrow Thx. Change the Grid.column.header.MousePointer Property to 1 thisform .grdMyGrid.column1.header1. MousePointer = 1 Dave M. ...Show All

  • Visual C++ determining application path in VS 8, C++ MFC

    I am migrating a Pocket PC application from eVC++ 3 to VS 2005 . The eVC++ 3 application used AfxGetApp()->m_pszHelpFilePath from which I parsed out a path to the application startup directory. In VS 2005 , the m_pszHelpFilePath is not supported and m_pszExeName , and m_pszAppName both return the program name without any path information. How do I get the actual path GetModuleFileName Gerald Perry wrote: I am migrating a Pocket PC application from eVC++ 3 to VS 2005 . The eVC++ 3 application used AfxGetApp()->m_pszHelpFilePath from which I parsed out a path to the application startup ...Show All

  • Windows Forms Customizing tab order

    I have 40 textboxes on a form and I want to use alt&right to move through the first 20 textboxes only and then when tabindex 20 is reached it returns to tabindex 0, hopefully in a button event. I would prefer not to do seperate keydown, keypress and keyup events for each textbox. This is what I tried so far but it doesn't work, when it reaches tabindex 20 it goes to tabindex 21. private void Form_KeyPress( object sender, KeyPressEventArgs e) { if (e.KeyChar == ( char ) Keys .Tab){ Control ctrlNext; ctrlNext = this .ActiveControl; if (ctrlNext.TabIndex < 20) {ctrlNext = this .GetNextControl(ctrlN ...Show All

  • Visual Studio Express Editions MSDN Express Library on ISO images

    Hello, Is MSDN Express Library included with downloadable ISO images Thanks in advance. Yes the library is included on each of the ISO's, but remember that each of the Express products is intergrate with it's own MSDN Lib. If you download or install the MSDN Lib for VB Express you will not have the C# parts. ...Show All

©2008 Software Development Network