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

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

BilalShouman

Member List

killfr0g
bharath-k
XBTester
Rups11
2162
Thomas2054
Sal T
Vishnuprasadh
avalancheseah
nobb
WV John
bob yoplait
leclerc9
ngaisteve1
Ralfeus
PatOvens
ahmad.nazmi
.net sukbir
JonathanAramburo
Arkcann
Only Title

BilalShouman's Q&A profile

  • Visual C# Including Panels defined in another file

    I'm developing a Compact Framework 2.0 Windows CE application. It has a number of panels stacked on top of each other and a menu to navigate between the different panels. To be able to design each panel in the GUI editor of VS2005 I have one form per panel + one form where I put it all together and stack all panels on top of each other. So every time I redesign a panel I have to: 1. delete all panels from the form where I put it all together 2. paste all new panels back in to the form where I put it all together 3. edit the designer file of the form where I put it all together to remove any lines where one panel is added into another panel. 4. edit the designer file of the form where I put it all together to make each panel be added ...Show All

  • Audio and Video Development Problem in Accessing the element by using their IDs.

    Hello to Everybody, It's really good to be here. Got to know so many things One question is troubling me a lot, it is : Can't we access an element by using their id to set some values to it's attributes through script twice in an application Scenario : I made a markup page and filled some values to some of element's attribute using script on markup page loading. First time, it went well and all values were filled, but when I linked this page from some other page, the values didn't get filled and in some application it gave an error that the element ( whose attribute I tried to access ) is null. The clock in the markup page is 'page' clock. So please tell whether this action of mine is valid or there is some problem with the simulator. Tha ...Show All

  • .NET Development Calling managed function from unmanaged DLL

    Hi there ! I need your help. I'm trying to write program, that is doing something in unmanaged part and sometimes it updates progressbar. First calls are ok, but after third i've exception: Callback with value 1 Callback with value 2 Callback with value 3 Callback with value 1648628252 Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. at DelegateForUnmanaged.MainClass.DelegateTest(IntPtr callbackFunction) at DelegateForUnmanaged.MainClass.Main(String[] args) in g:\Eksperymenty\Dele gateForUnmanaged\Main.cs:line 32 What is wrong C# Code (.NET 2.0): using System; using System.Collections.Generic; using System.Runtime.InteropServi ...Show All

  • Visual Studio 2008 (Pre-release) Need advice on how to sign request's soap body using WCF

    Hello. Please skip to the questions at the bottom of this post if you don't think you'll need all this introductory info. I need to write a client using WCF that will consume a non-.NET web service that uses SOAP 1.1 and WS-Security 1.0 over SSL. The only requirement is that the request's soap body is signed. The reply, on the other hand, is not signed. It doesn't have any soap headers, in fact. So, I went and created the proxy class using svcutil. The binding used in the generated config was basicHttpBinding and the security mode was Transport (because it was an https url). The effect was that it would send the soap request over https without a digital signature. I tried making all sorts of changes to hopefully make it sign the ...Show All

  • Visual C# Console App: sending a series of commands

    I wonder if anyone can help me in building a console app to run a 3rd party app's console interface I have an application which can be executed from a console interface. Firstly I have to navigate to its parent folder, then I have to enter a command with switches. Something like this: C:\Parent_Folder>ConsApp.exe -a TestFile.doc -b TestOut.doc I've tried building this by implementing the Process class but I'm not having much success, though I atleast think I know where the problem is. My code is as follows: static void Main( string [] args) { ProcessStartInfo startinfo; Process process = null ; string stdoutline; StreamReader stdoutreader; try { startinfo = new ProcessStartInfo (); // use ...Show All

  • Visual Studio Team System Unable to delete workspaces for moved users

    Hi, We have had some misfortune in our active directory domain. Some users where moved by accident to a sub-domain and after discvovering that moved back to the originating domain. This caused of course an update of all SID's of the moved user accounts. The apptier recovered wunderful well with one glitch. The existing workspaces of the users still remain leading to the strange effect that they cannot map a new workspace to the same folder and some users had still checkouts in that workspace. Listing the workspaces shows the troubled workspaces with usernames postfixed with a number (unhappyuser:13) where there also exists workspaces for unhappyuser. I tried the tf workspace /delete option and /tf workspaces /updateUsername:unh ...Show All

  • Visual Studio MRefBuilder is failing with an exception when it tries to parse one of my assemblies

    MRefBuilder is failing with an exception when it tries to parse one of my assemblies. Here is the error information : Unhandled Exception: System.ArgumentNullException: Value cannot be null. Parameter name: type at Microsoft.Ddue.Tools.Reflection .ExternalDocumentedFilter .IsExposedType(TypeNode type) at Microsoft.Ddue.Tools.Reflection .ApiFilter.IsExposedExpression(Expression expression) at Microsoft.Ddue.Tools.Reflection .ApiFilter.IsExposedAttribute(AttributeNode attribute) at Microsoft.Ddue.Tools.ManagedRef lectionWriter.GetExposedAttribu tes(AttributeList attributes, SecurityAttributeList securityAttributes) at Microsoft.Ddue.Tools.ManagedRef lectionWriter.WriteAttributes(AttributeList attributes, SecurityAttributeList secur ...Show All

  • Windows Live Developer Forums GetMapView() TopLeftLatLong/BottomRightLatLong oddity

    Im using GetMapView () with TopLeftLatLong and BottomRightLatLong to display a set of pushpins in the visible area of the map and i am seeing some weirdness with the values being returned for BottomRightLatLong. On page load i obtain the values i need using var v = map.GetMapView(); alert( "Vis cTOP LEFT" + v.TopLeftLatLong); alert( "Vis cBOTTOM RIGHT" + v.BottomRightLatLong); The values returned by BottomRightLatLong show as: 42.488966 -83.102903 I also have an event attached to a mouse click which uses the same exact code: var v = map.GetMapView(); alert( "Click cTOP LEFT" + v.TopLeftLatLong); alert( "Click cBOTTOM RIGHT" + v.BottomRightLatLong); The values returned by BottomRightLatLong for the click function show as: ...Show All

  • Visual C++ problem when implementing IPersistStream

    hi when i implement IPersistStream interface for a class and build the project without adding any code the following error is displayed in .NET 2003 e:\VC Samples\Persistence\PersistentServer\PersistentServer\Debug\comsvcs.tlh(684) : error C2011: 'tagBLOB' : 'struct' type redefinition d:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include\WTypes.h(1096) : see declaration of 'tagBLOB' thanks rakesh You use #import on comsvcs.dll, correct By default the definitions go into a namespace, did you disable that by no_namespace or did you add use namespace ComSvcNamespace (don't know the real name) -- SvenC ...Show All

  • SQL Server Tsql script to connect to another database

    Hi. I am in database db1. in the middle of a stored procedure i want to connect to database @db2 (it is a variable) and i want to execute some commands in it. How is it possible to do that in t-sql Thanks Use something like this; but dynamic sql isn't the best way to go or just execute from databasename..tablename declare @db varchar ( 100 ) declare @fv nvarchar ( 100 ) sp_executesql ( 'use ' + @db '; insert into mytable where mycolumn = '' + @fv + ''' ) ...Show All

  • Visual Basic handling rdlc componentI want start Mobile phone programming. Can some tell me about

    hi all can i access rldc's component using my code. actually i have a chart in rdlc file and i want to change it run time. is it possible.if yes pls send me code thank u I want start Mobile phone programming. Can some tell me about Operating sytem of mobile phone. Avalaible development tools. How we could setup of project that have to deploy on mobile phone ...Show All

  • SQL Server Inserting manually vs. Bulk Insert

    Hi Andrea, I have made a table which contain data inserted manually and also data that w as inserted by using bulk insertion. I have no problems using the table with Grid View. But when I try to use a query like the following: SELECT * FROM dbo . last WHERE VMake = 'Honda' AND VType = 'sedan' AND VColor = 'Red' ; I would only get the data that were inserted manually. When I use the same query to filter data from a table that the data was inserted by using bulk insert, I get column names but no data. Any help please. Juvan hi, as long as you do not "flag" somehow the data that has been bulk inserted someway, there's ...Show All

  • Visual Studio Specifying output path for CHM documents

    I have integrated msbuild with sandcastle to generate chm documentation. I need specify the output path for these chm files. What is the parameter to specify the output path Thanks, Srikanth Srikanth, Did you resolve your issue The msBuild scripts at http://codeplex.com/Project/ProjectDirectory.aspx ProjectSearchText=sandcastle should help you. Anand.. ...Show All

  • Visual C# Run application as a Service

    What type of project it should be to run as a service Say if I create something and want to run it as a service how to do it and some of my other application has to use that service how does that work Sean Hederman wrote: Perhaps we were talking about WCF because he asked specifically about it and .NET 3.0 Ooops, Sorry, I did read his only first post and then the solutions you people provided and ignored the post in which he wrote about WCF. In first post he didnot specify anything specific to .Net 3.0 so it was m y mistake. Best Regards, Rizwan aka RizwanSharp ...Show All

  • Smart Device Development pda and datagrid

    Developing a simple pda app using a datagrid(MsFlexGrid would have been better but not supported by vb 2005 correct ). I need to populate the grid with a simple table the user selects a number from. 1. it appears i need to create a database to do that correct 2 will Excel work for the data base if so how please and what format do i save it in 3. how do i import it 4. how do i get the numnber the user double clicked on Thanks Mitch lets make this simpler on second thought ... the table will be static and never change so why don't we just initialize it in the form load statement everytime the user sstarts the pda app. How do I insert data in the data grid during program initializat ...Show All

©2008 Software Development Network