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

Software Development Network >> Jassim Rahma's Q&A profile

Jassim Rahma

Member List

Prabagarane
bw12117
ferrethouse
KrazyMGA
kirchu
KimberlyL
ks2006
satya999
arkiboys
Jener Garcia Menezes
Triggr
Andrew Clark
Arslan.Ahmed
Oliver 123
Trish
joshlrogers
curiousss
gdwinslow
Random Bill
RayCan
Only Title

Jassim Rahma's Q&A profile

  • Software Development for Windows Vista StateMachine WorkWlow

    Dear sir Can I do sequential task Inside the StateMachine WF. And Which Activities are Support for state WF. We developing An web ased project, So we want to known which things will Support us Regards vijil craftsilicon.com The list of components comes from a list the Visual Studio has. You either need to install the .NET Framework 3.0 extensions for Visual Studio to add System.ServiceModel.dll to the list or find the DLL on your system and add the reference yourself. ...Show All

  • Community Chat Regarding .net or Java

    Hi, I have planned to do one certification exam.But i have a confusion whether i can go to .net or Java or Oracle.But currently i started working in .net. Can anyone guide me which side i will go so that it will be helpful for my carear nice advice by sandyk :P I think both are equally important and have equal oppurtunities in future. .NET is a strongly emerging utility while java is established stalwart.Oracle, as sandyk said, is compatible with both. So, try taking an individual decision based on your personal interest. ...Show All

  • Visual C# Access data from vector from one class to main program class

    I have a C#.Net program that once a button is clicked it goes to a public class(called Tal) and gets data in a vector, then exits the class, and goes back to the main form(program). I will do this task over and over. I want to take the data ,do many(over 20) calculations, and go back to the program. How can I get access to the data array(vector) from the main program I keep getting different errors and have tried so many different ways. Thanks in advance. Code: { Mainfrm tal.talbars(); } Public Class tal // get vector array Price[] closes = row["SETTLE"] == null null : row SETTLE"].PriceVectorValue; int first_element = elements - 5; // to get 5 back for (int i = first_element; i < elements; i++) static void talbar ...Show All

  • Windows Forms Publish ClickOnce project with Team Build?

    Does anyone have any examples of how to create a Team Build BuildType that publishes the project similiar to the way you manually do it in visual studio I already have the BuildType created and working (it gets kicked off on a schedule). I've also created a BeforeDropBuild task that does GenerateApplicationManifest and GenerateDeploymentManifest that also works. This was a bit confusing -- when the BuildType is run not through the GUI many of the properties don't exist and most of the examples appear to assume they would. Anyway, these steps work in that the build does not fail. Somehow I need to publish the manifest I suppose, but I can't find any examples of how to do it. I'm not even sure I know the right questions to ask. Any help w ...Show All

  • Visual Studio Zip task not given required parameter

    Hi, I'm trying to use the zip functionallity of Microsoft.VsSDK to zip my project files directly under VS. Similar to the IronPython project sample. But I'm getting the following error: Error 67 The "Zip" task was not given a value for the required parameter "ZipName". ProjectTest I've added the following to my csproj file: <Import Project="Tools\Build\Microsoft.VsSDK.targets" /> ANd <ItemGroup> <ZipProject Include="Templates\Projects\GameApp\TSApp.vstemplate" /> <ZipProject Include="Templates\Projects\GameApp\__TemplateIcon.ico" /> <ZipProject Include="Templates\Projects\GameApp\Form1.ts" /> <ZipProject Include=" ...Show All

  • Visual Studio 2008 (Pre-release) Databinding to an indexer property

    Is it possible to bind to the value of a indexer property What is the xpath to get the value of following indexer property Ex: string errorTranslation = translations["ErrorMessage"] Regards, Tim lee d wrote: this might help http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1047803&SiteID=1 Thanks. The solution is to write a valueconvertor to display indexer properties: public class IndexedPropertyConvertor : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { object returnValue = null; if (value != null) { PropertyInfo prop = value.GetType().GetProperty(&quo ...Show All

  • SQL Server What wrong with my SP

    I get this error Error 170: Line 2: Incorrect syntax near '@OrderEntryID' . Line 79: Incorrect syntax near ')'. Must declare the variable '@ItemsID' . whats wrong with my Stored Procedure CREATE PROCEDURE [dbo].[InsertItem] AS @OrderEntryID int, @VendorID int, @OutVendorID int, @ShipperStopID int, @ConsigneeStopID int, @CustomerID int, @TypeOfObject int, @TypeOfCrate int, @TdiNo varchar(50), @Artist varchar(50), @Description varchar(50), @InDate datetime, @OutDate datetime, @InTicket varchar(50), @OutTicket varchar(50), @Country varchar(50), @ProjectNo varchar(50), @Length decimal(18, 2), @Width decimal(18, 2), @Height decimal(18, 2), @Cube decimal(18, 2), @StorageCubicCost decimal(18, 2), @SquareStorageCost decimal(18, 2 ...Show All

  • Visual Studio Express Editions Programming a button to directly open a .exe file!

    I am making a program that will open a file when you click a button. I don't need to access the open dialog, I would just like to click the button and the .exe file opens. I am burning a bunch of programs to the same cd so i have to be able to open the one specific program and only that program with that button. I am trying to open this file with the button: "IE7-WindowsXP-x86-enu.exe" So if I had a button and I clicked it and it directly opened that file that is exactly what i am looking for. If anyone could give me a hand that would be great!! you didnt quite do what I had written. you are still referencing D:\ but thats not what it should be. you need to do it exactly as I had written since its taki ...Show All

  • Windows Forms Images do not appear in listview

    Hi all, I am using a listview and have images being shown in the first column, however these images do not show up every time. Every now and then, there is no set pattern, the images do not show and there is an empty space instead. If anyone can help me it would be greatly appreciated. Thanks in advance We need to see some of your code to help you past this point. Try to put a small demo together that exhibits this behavior, then post that code to this forum. ...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 :) cverdon wrote: Hi, You need something like this: Table Questions: QuestionId QuestionText Table Answers: AnswerId QuestionId AnswerText IsCorrectAnswer To display the questionnaire, select all the data from the table questions and show all the answers linked to ...Show All

  • Visual C++ practice programs

    hello guys.. i am new to VC++ 2005 but not to C++.. where can i get practice programs to get the flow. chaman. Start with beginners article from codeproject.com, codeguru.com, MSDN. there are alot of sources to learn vc++ BTW this forum related to ask question related to Language Issues of Visual C++. Please try some news groups instead. ...Show All

  • SQL Server SQL Server vs. XML Configurations

    I have been experimenting with both XML and SQL Server Configurations. Management would really like to go with the SQL Server Configurations, but I seem to be having problems with them. The main goal is to be able to create a configuration for each connection and have every package refer to its specific configuration, therefore in the future we could change say our SA password and only have to update this in a few places rather than for every package. In order to experiment with the problem I am having I developed 2 identical packages, except one uses SQL Server Configurations and the other uses XML. The configurations save the exact same properties. With the XML package I can go into the configuration file and change say the passwor ...Show All

  • .NET Development IIS on Windows Xp Home

    hi,   can any one help me out in installing IIS on Windows XP home edition, I tried a lot but was unable to do so. thanx         Step 1 says: You will need the installation CD of Win2000 Professional or Server ( winXP Pro CD WILL NOT work ) or a trial version of Windows 2000 Server So I think without these cd's you're lost. If had this problem a while ago. I tried several "solutions" on the net but none were satisfying. Reading the newsgroup I found Cassini: http://www.asp.net/Default.aspx tabindex=6&tabid=41 When you install VS 2005 you'll notice that the built-in Web Server looks a lot like the Cassini webserver. ...Show All

  • Visual Studio Express Editions Can "F1" in Visual C# Express use locally-installed Windows SDK documentation?

    I'm successfully using Visual C# Express, but the built-in documentation doesn't contain topics for many Windows SDK classes I'm using. I've downloaded the Windows SDK documentation and can see the topics there, but I can't figure out how to get the Visual C# Express Help menu (and "F1" in particular) to use the Windows SDK documentation. Is it possible I don't want to use Internet help. Thanks very much, -Rick Hi, If you successfully installed VS express edition, it'll auto install the corresponding documentation. You are using the C# express edition, so it is possible that you can't find the whole documentation about topics such as VB, J# and other C# unrelated SDK in local machine ...Show All

  • SQL Server Simple query chooses clustered index scan instead of clustered index seek

    the query: SELECT a . AssetGuid , a . Name , a . LocationGuid FROM Asset a WHERE a . AssociationGuid IN ( SELECT ada . DataAssociationGuid FROM AssociationDataAssociation ada WHERE ada . AssociationGuid = '568B40AD-5133-4237-9F3C-F8EA9D472662' ) takes 30-60 seconds to run on my machine, due to a clustered index scan on our an index on asset [about half a million rows].  For this particular association less than 50 rows are returned.  expanding the inner select into a list of guids the query runs instantly: SELECT a . AssetGuid , a . Name , a . LocationGuid FROM Asset a WHERE a . AssociationGuid IN ( '0F9C1654-9FAC-45FC-9997-5EBDAD21A4B4' , '52C616C0-C4C5-45F4-B691-7FA83462CA3 ...Show All

©2008 Software Development Network