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

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

jam281

Member List

RohitAtKA
Ali.Badakhshan
AliciaV
Helen999888
Tall Dude
XeviaN
Pete Orologas
Tony Bater
Fred Bernstein
Whoisit
gdvl
Pritesh Shah
guilhermecvm94558
billqu
Christian Schweizer
Eric Wong
Ayman Osman
Carbond
Anand Prakash
sham_huss
Only Title

jam281's Q&A profile

  • Windows Forms How to access different forms controls properties...?

    Hi… In my C# MDI application, I have a parent form & on click of some parent forms toolstripmenuitems & toolstripbuttons I am popping up some windows(Forms). All these popped forms are not child form of parent form. I want to access some controls & their properties of parent form from all these popped forms & also I want to access some controls & their properties of those popped forms from parent form. So where I should declare object of parent form & those popped forms for both my requirements. I have declared object of parent form in each of these popped forms load event & I have declared object of those popped form in parent forms form load event…but with this my applica ...Show All

  • Smart Device Development How to get clipboard data?

    Hello. I have some troubles with clipboard on smartphone. I need to get clipboard data (CF_TEXT or CF_UNICODETEXT) to a string without using controls. I need to get data, that is already in the clipboard. IDE: MS eMbedded Visual C++; .NET CF 1 Target device: Windows Mobile 2003 Smartphone. So, I'm trying to do something like this: HANDLE _handle = GetClipboardData(CF_UNICODETEXT); But I don't know what to do with the handle, to get text from it. The SDF includes the source code for the Clipboard or you can use the existing class from the SDF: http://www.opennetcf.org/sdf ...Show All

  • SQL Server SQLCE team: Call to Get___ methods entail boxing?

    Greetings - It appears in tests that the calls to the type specific Get___ [e.g. GetInt32()]  methods of the System.Data.SqlCeClient.SqlCeResultSet type result in an internal unboxing from some internal storage of values. I've been calling these methods diligently to avoid the boxing tax... Can you confirm this behavior If this is the case, will you be improving the internals or would it be better for me to wrap the native interface myself to avoid this -rory As Brian pointed out, we've moved from assembly to C, from C to C++ and from C++ to managed code for reasons far from code performance improvements, quite the opposite in fact. However, these languages are not gone. If you your ...Show All

  • .NET Development Try refreshing the table adapter

    It is my understanding that when using a TableAdapter and selecting the proper options, Insert, Delete and Update statements are generated. The Update statement should work just using the following: myTableAdapter.Update(changes); Where changes is the DataSet containing the modified data. This logic works great for one of the tables in the DB but not for another. Learning this new stuff is Confusing at best - Frustrating at worst. Help appreciated, Michael Try this, it worked to me: Go to edit dataset with designer (you can go there from the "Data" menu then "show data sources" and "Edit dataset with designer". Right click the adapter and select "Configure&quo ...Show All

  • Smart Device Development problem in deploying the application on device

    Hi All, I've developed a windows mobile 5.0 application for smartphone in C# and created a CAB file. And I bought a Motorola Q device which has windows mobile 5.0 in it. I was able to deploy the .cab successfully, but when i try to run the application, its saying "Application requires a newer version of .Net compact framework". My assumption is all windows mobile 5.0 phones ships with .Net compact Framework 2.0. Please advice me. Thanks Tan You can download the .NETCF 2.0 Runtime http://www.microsoft.com/downloads/details.aspx FamilyID=9655156b-356b-4a2c-857c-e62f50ae9a55&DisplayLang=en and install on your device. The Windows Mobile 5.0 Devices only ship with 1.0 in ROM Thanks ...Show All

  • Visual Studio Report Viewer Distribution

    I have done some searching through various places on MSDN and the internet in general. I am trying to find the best way to distribute the Report Viewer controls automatically to the end user's of my application. I have found the following link on MSDN. http://msdn2.microsoft.com/en-us/library/ms251723(VS.80).aspx However, in my Prerequisites dialog box, I have the following entries: .NET Framework 2.0 Microsoft Visual J# .NET Redistributable Package 2.0 Windows Installer 3.1 SQL Server 205 Express Edition Currently, the .NET Framework 2.0 is checked. But there is not an instance of the Report Viewer Redistributable package as the MSDN link refers to. I also found a link on the internet "Hacking the Report Vi ...Show All

  • Visual Studio Express Editions Questions / Answers : Evaluation Outlines !!!

    I am developing an ITS System , in the Evaluation Stage , can someone help me with the outlines for developing the evaluation : What is the most approciate way for storing the Questions and Answers : Multiple Choices , TRUE / FALSE , and any other Questions and Answers form and ... What is the best way for Representing the Questions and Answers to the Learner and ... Finally Thank you so much :) If all have access to a SQL server create tables that house the questions and answers - one table for each. The question table should reference the correct answer in the answers table. This way you can have multiple possible answers for the same question. If the users do not have ...Show All

  • Visual Studio 2008 (Pre-release) Vista Beta 2 IIS7 setup

    I've just upgraded to the new Vista Beta 2 build 5384 and am unable to get any of the WCF samples provided with the SDK to run.  I'm pretty sure it's just an IIS7 setup issue. From reading around i've seen a few sites recommending that i add a MIME type mapping for the .svc file... but i cant' work out how to do that.  This ( http://www.iis.net/default.aspx tabid=2&subtabid=25&i=1032) suggests that there should be a MIME Types item in the list of things i can configure for the default web site in inetmgr ... but it's not there Here's what i have done so far. Installed... 1. Vista 2. IIS - added the windows feature 3. Windows SDK 4. WCF (en_windows_communication_foundation_beta2_x86) 5. Visual Studio 2005 6. vse ...Show All

  • Windows Forms Microsoft release policy

    This is the error, which makes me cry. Everytime i work with datagridview, it makes this error in time. I remove every problematic Columns, but it doesnt work. It seems that designer sees something that no longer exists . For instance iDKontaDataGridViewTextBoxColumn was removed from the designer part of the class. ANd designer still says, that it is there. What may be the sollution of this I would like to continue my work without removing whole tab pages of my forms. Please help. Tnanx for every help. The .resx file can be kind of misleading. It defaults the filter to Images, and unless you've got any buttons with images on them you won't see anything initially in the .resx file. Make sure you change the Filter from "Images ...Show All

  • Windows Forms Combo box with treeview

    Are there any sample code how to create a combo box control with treecontrol being dropped down as the combo expanded. WinFormsUser wrote: The following is the method in my control that does the job. Tell me if you want me to send you the code for the entire control. I don't know how to post it on this site yet. Maybe the moderator that reads this will let me know :) you can paste your code in a word ,and then copy the code in the word to paste here,then the code will show more clearly. and this website cannot support upload and download at this moment. ...Show All

  • SQL Server Drill through works eradically

    I've got a report that drills through to itself, passing different parameters when drilling through. The report work flawlessly in development, flawlessly when you call the report server directly via url, but doesn't always drill through correctly when the report is called using the report viewer on web site. I've gone as far as to create a single aspx page web site that only has this report on it and it still doesn't work. The drill through works about 1/2 of the time when viewing through the report viewer. But the other half of the time it takes you back to a previously visited parameter, instead of the parameter you clicked on. So a series of clicks might work like this: Parameter Clicked - Resultant page A - Correct "A ...Show All

  • Visual Basic Ethernet Port Watcher

    I am trying to write an application similar to file watcher, but instead of watching a directory I want to watch a wireless connection, as soon as the computer get connected to that specific connection an application will be automatically launched. any ideas Thanks. A Particluar Wireless network or any wireless network If it is aparticular wireless network for youc can identify the NIC by its Gateway addr then poll the nic for it's status. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. AnimationController

    Hi >> Just a comment: Please forgive my English.   Does any one know how to reset an animation to its original time position without having to recreate it For example if I call AnimationController.AdvanceTime then when I call AnimationController.ResetTime the AnimationController .Time will be reset but the animations wont.   To be more specific:   When I animate a skinned mesh first I call:   AnimationRootFrame.AnimationController.AdvanceTime(ElapsedTime)   Then I update the Frames with my methods just like the Tiny sample will do.   UpdateFrameMatrices   Do all Drawings.   Now suppose I will ...Show All

  • SQL Server How to create a custom tier above msmdpump.dll or create custom msmdpump.dll??

    I want to hit Analysis Services over HTTP but with custom authentication.  Is it possible to intercept the request before it gets to msmdpump and authenticate the user credentials coming from the client app   Or is it even possible to implement some interface or inherit from a base class and create my custom msmdpump.dll I would like to do this in .NET but ISAPI filter can only be written in C or C++. Since all msmdpump does is send the request XMLA to Analysis Server, can I create a simple webpage that does the same thing ...Show All

  • Visual Studio Retrieving "active" data connections

    Greetings everyone (or anyone), I am writing a little add-in and I am trying to figure out how to do something that I think should be simple: I want to retrieve the connections that are listed in the "Data Connections" in the Server Explorer. I can obviously access the UIHierarchy but what I really want is actually the connection(s) itself or the representation for the connection(s). Say the user has already defined a couple of data connections, I would like to get them and have access to the properties of the connection such as the connection string, and then access the field properties (isIdentity, etc). Essentially imagine that I am writing a custom properties form that shows the same information that the "Dat ...Show All

©2008 Software Development Network