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

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

Faraz_Ahmed

Member List

CarlBateman
ramsk
ellen_89
bbop1322
Rob Smith
mcdonaldn
AlexDcosta
Gurpreet Singh Gill
Ronbb
PerseP
Vijay Guru Prasadh
Jiju
Michael Hansen
6SC
Hila123
errolian
mahima
Gravy
Lux-
Xancholy
Only Title

Faraz_Ahmed's Q&A profile

  • Internet Explorer Development Sharing data between different instances of BHO

    Hi I work in a single sign on system that uses a BHO to complete logins in IE. In IE6 everything worked fine, but now doesn't It seems that the data used to complete the fields isn't beign received. The data is passed throught a shared data memory area inside the BHO's DLL. The question is, with the new security changes, could be that IE7 doesn't allow sharing data between different BHO instances and a controlling app Each tab haves a BHO instance A BHO can send messages via PostMessage to applications I'm testing the BHO in a XP SP2 so no protected mode is involved. And I'm coding in VC++ Thanks a lot Sebastian To answer some of your questions: Yes, Each tab does have its own instance of the BHO. ...Show All

  • SQL Server Suspect mode ... cant even attach mdf file using sp_attach_db

    Hi, In sql server 2005... I am trying to take a backup, When i was trying one of my database is marked as suspect, I tried lot of ways finall i tried stopping the service , and copy mdf,ldf files of that database ...and again started the service ... pasted it in other server and tired to attach using sp_attach_db it shows database cannot open, I/O error occured..i also tried sp_singlefile_attach_db Can any one tell me how to bring suspect mode database to normal mode... also how to solve the I/O error when attaching mdl , ldf files. Sorry i actually tried this query only , Since there are security reasons we were not able to copy and paste from query analyser. Exec sp_attach_db @dbname = N'TfsworkitemTracking', ...Show All

  • Visual C++ Problem with char *

    How can I copy 2 char * in a third one, so it seems like this char *one = "This"; char *two = "is a text."; char *three = ... And it has to be native C++. For pointers, you need to allocate memory first. I would recommend reading more about pointers and memory allocation. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual Studio Express Editions Copy files from 1 dir to another

    Hello: i know how to Copy files from 1 dir to another but how would I display messagbox like 'Finished' when it has copied all the files over Btw its because im making an installer :) Thanks! :) That's true. Another, probably in effecient way would be to go through each directory and each file and copy them over, but as suggested either use the "My" name space of the moveTo method ...Show All

  • Visual C++ resource browser problem to define an *.rc file

    hello, I have Windows XP with VS .NET 2003 Pro. I have a problem with the resource browser. It's not possible to define over than 255 entities (text, input box, etc ....) inside a *.rc file (copy and paste or even manually). I found on the microsoft web site a support inside the article n°141345 or Q141345 "You may encounter resource ID collisions when you try to rename duplicated resources by using Visual C++". But it seems that it doens't resolve my problem. Do you have an idea to go over this limitations thanks SLSH Maybe this is caused by a limitation of dialog functions in Windows 95/98 They accept a maximum of 255 controls per dialog box template. I think Visual Studio believes your ...Show All

  • Windows Forms Typed Dataset set issue.

    I have set up a typed dataset(dataset1) in my project. (so it point to the test server using my windows login) Here is the connectionstring < add name = " LADS.Properties.Settings.LoanApplicationConnectionString2 " connectionString = " Data Source=TESTSERVER1;Initial Catalog=MyApplication;Integrated Security=True " providerName = " System.Data.SqlClient " /> At run time, user will type in there username and password, I want to override the design time connectionstring and use their password and username to login. However, I am using tableadaptor like this, so my question is how to override the connectionstring //-------------------------------------------------------- // ...Show All

  • SQL Server Change "Output Alias" on synchronous component programatically

    Wanted to enquire how this is done. Tried doing it in the setUsageType method I have overwritten but only allows description to be changed. Basically need to change "Name". Best option would be to change it instantly when a user selects a column from the inputs in the custom component, ie. it changes the Output Alias to a desired value. (Input tab in advanced editor) All this is being done in a custom component which I would like to be synchronous, can achieve a similar result asynchronously. Thanks If you change the name is setUsageType you see a change in debug mode but eventually it does not change the column name (strangely description can be changed however), basically cha ...Show All

  • .NET Development satellite assemblies

    Hi, Is there any application block which is used to build multi lingual application If not can any one give me sample program to create and use satellite asseblies used to support multiple languages. Thanks Deepa Hi, There is currently no application block that does localization. Here is a good example on creating satellite assemblies: http://www.codeguru.com/csharp/.net/net_general/tipstricks/article.php/c11367/ Greetz, Geert Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All

  • Audio and Video Development Taking Screen Snapshots

    Is anyone aware of a way to take screen captures of the video and save those to the player storage for later viewing The p-stor directory is automatically created when you write to the content directory. When using the simulator, I believe these directories will be created in your C:\Archivos de programa\HD DVD Interactivity Jumpstart\HD_DVD folder (if not, do a search for the HD_DVD folder on your hard drive). Xavier - sounds like you are new enough to HDi that you would benefit from playing around with the sample applications from Microsoft more: http://www.microsoft.com/downloads/details.aspx FamilyId=E19C869B-EF37-4E5E-91ED-32D059E3775B&displaylang=en You will find examples of how to listen for key press events and t ...Show All

  • .NET Development errors adding a web service with sockets to a C++ project

    Hi everyone, I have a web service which communicates via TCP to a C# program. When I invoke it's methods through a browser, they work fine and can communicate perfectly with the C# program. However, when I attempt to add the web service to a C++ MFC DLL I've created, I get multiple warnings, but with only 2 unique: 1) Warning 3 warning SDL4008 : skipping unrecognized extensibility element, with c:\Documents and Settings\*******\My Documents\Visual Studio 2005\Projects\Extend\Extend\CalcSvc\CalcWS.wsdl 84 2) Warning 9 warning SDL4001 : only one SOAP port will be processed. c:\Documents and Settings\cpappas\My Documents\Visual Studio 2005\Projects\Extend\Extend\CalcSvc\CalcWS.wsdl 104 I am assuming it is because the web service opens a s ...Show All

  • Windows Forms executing SQL query in C#

    hi, suppose we have some text boxes already binded with BindingNavigator how to execute an SQL query using the code so the binded data can be specified with this SQL statement using C#. Hi Sculptor I often use code as follow to add databinding to a bindingNavigator if I think we can cheng Datasource for the BindingSource to get any table you want to bind to the Navigator DBAccess DB = new DBAccess (); DataTable TB= DB.getData().Tables[0]; BindingSource bs = new BindingSource (); bs.DataSource = TB.DefaultView; this .dataGridView1.DataSource = bs; this .bindingNavigator1.BindingSource = bs; I am not sure if it meet your question best Regards! ...Show All

  • Visual Studio Team System How do I add a CheckID to the FXCop view

    I want to add the Check ID column to the view of FXCop 1.35 view.Can it be done.When I clkick on indiviual warning I can get the check Ids from the Rule details but is it possible to add check id to the view itself.Configure columns options doesnt allow me to add this column currently. ...Show All

  • Smart Device Development How to use a context menu on DataGrid?? Can't get row.

    If you hold-click on a Data Grid to pop-up the Context menu you're obviously wanting options based on the item that was clicked on. I've found no way what-so-ever to determine what row was clicked on since the Mouse Down event doesn't fire on a hold-click. How in the world can you do provide Context specific menus on a Data Grid Something simple like Delete Row in a context menu. There's the DataGrid.HitTest method that you can use. Get the screen coordinates using Control.MousePosition. HTH.. Alex ...Show All

  • Software Development for Windows Vista performance suddenly slowed!

    I am running WF under Vista. Everthing was fine until I reinstalled VS2005 to get access to SQL express.Now when I create a workflow (eg code below) the system pauses for about 1 minute workflowInstance = workflowRuntime.CreateWorkflow( GetType (Workflow1)) Then, everything starts back up again, running fine. Any ideas BTW I installed the SQL Server Management Studio express as well... Thanks Given what you have just installed plese share the WF Runtime Services that you are using in this program. It may be that you have a DB connection string which has issues or a poor use of the DTC. Try using SQL Profiler to identify where the delay is if it is occuring in a runtime service that uses SQL Server. Regar ...Show All

  • SQL Server sql server 2000 OPENXML to insert

    Hi, Trying to use OpenXML to insert the xml data into table. As you can see in the sql code I am first trying to see if the select * works but nothing is returned. The idea is to eventually get this to do the insert into the table. can you please see what i am doing wrong Here is the xml sample. Next you will see the SQL Thanks declare @doc varchar (1000) declare @idoc int SET @doc = ' <marketData> <date>21-Feb-2007 11:26:39</date> <producedBy>Dominic Harris</producedBy> <isDifferential>True</isDifferential> <forwardCurves> <forwardCurve code="CU LME_FUT"> <maturities> <maturity> <contractMonth /> <date>30-Dec-1899</date ...Show All

©2008 Software Development Network