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

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

Jassim Rahma

Member List

KeeperMustDie
Ravi K.
BobP - BIM
Pieneer
Deco
Lars Larsson
Filip S
Punch
Eragon.
Xi0N
lufa
041661K
jhidey
pjcozzi
dakota367
pAbLoPiCaSsO
Fire_alive
Banacek
Tarek Ghazali
Batikit
Only Title

Jassim Rahma's Q&A profile

  • Windows Live Developer Forums drag map when you click on a pushpin in Firefox

    In IE if you click on a pushpin and drag, you can move the map around like if you had clicked on the actual map. This function is lost in Firefox but John L Scott has managed to implement it in firefox. I guess it was with the attachEvent function or something, but I can't get it to work. Any ideas Sorry to bring it up again...but is it really not possible I've been trying out several things but nothing. The closest I got to anything similar is by disabling the left click drag and just allowing dragging with the right button, but it's not very useable...but at least the pushpin won't be locked to the cursor when it's clicked and dragged. If anyone could help it'd be great! =) ...Show All

  • Visual Studio Express Editions renclock

    Hi renee I dont know if you are interested in this but I have imported renclock into vb2005.....there are lots of errors which I am not qualified to fix but i,m sure you could do it.... is this of interest to you cheyenne   Renclock is pretty old VB6 and it's really natural that there will be errors. It works well under VB6 and it works well on Vista. So there is an old rule, "If it not broken, don;t fix it and that's Microsoft's recommendation also. I appreciate your effort, but I don't think I want to undertake such a project at this time because I spent a long time, many months on Renclock and she's been good to me and I think she will continue to be. I have KnowledgeNavigator to worry over an ...Show All

  • .NET Development Length of 2D array

    I have a 2D array private string [,] Test = new string [6,4]; if I want to know how many rows are there (e.g. 6) how can I get it because when I use "Test.Length" it return 24 Thank you ...Show All

  • Visual Studio Team System Integrating Installshield with Team Build

    Has anyone done this before I am thinking of building a custom MSBuild task which will build my installshield projects - are there any pre-built options for me to use Thanks for your help. Great, thanks a lot for your help. It seems like the InstallShield task is exactly what I'm looking for. Cheers ...Show All

  • Visual Studio Express Editions toolstripmenuitems

    I got in trouble with dealing items below items.dropdownitems. How do cess the lower levels or how do I use ctype to go beyond 2nd level I can only go about as below to 2nd level Private Sub AddMenuToolStripEventHandlers(ByVal tsToolStrip As ToolStrip, ByVal msMenuStrip As MenuStrip) AddToolStripEventHandlers(tsToolStrip) AddMenuStripEventHandlers(msMenuStrip) End Sub Private Sub AddToolStripEventHandlers(ByVal tsToolStrip As ToolStrip) For Each item As ToolStripMenuItem In tsToolStrip.Items If item.Tag IsNot Nothing Then AddHandler item.MouseEnter, AddressOf MenuItem_MouseEnter AddHandler item.MouseLeave, AddressOf MenuItem_MouseLeave End If ...Show All

  • Visual Studio Team System Code Analysis in Team Build giving error: No Rules Selected

    I've got a Team Build project setup with the <RunCodeAnalysis> set to Always. However, it is giving me an error CA0051: No Rules were selected. How do I inform Team Build which rules to use Do I have to specify this in the build project file I have Code Analysis Rules setup for the Check-In policy in Source Control, I guess I had assumed/hoped it would pull them from there. If I do have to set them up in the proj file for the Team Build, is there a sample somewhere I can look at You are probably right. When I was having the error message the first thing I did was change it to Default, and then I think I noticed that a couple of my projects only had Code Analysis turned on and rules selected for th ...Show All

  • Visual C++ _CRTDBG_MAP_ALLOC and _CrtDumpMemoryLeaks()

    For memory leak detection, I am following the instructions given here: http://www.codeguru.com/forum/showthread.php t=312742 ...but I am finding that even the simplest console app code is shown to have memory leaks, like this: int _tmain( int argc, _TCHAR* argv[]) {    std::string foo("hello");   _CrtDumpMemoryLeaks();   return 0; } The IDE output window says "detected memory leaks" and shows the foo string as leaking.  It should never have identified the "hello" string as leaked.  And it doesn't tell me which line of code has the problem. Then I change the "string foo" into an allocation of an integer from the heap using new.  This time I expect to be informed of a memory leak a ...Show All

  • Software Development for Windows Vista Single ownership transaction problem

    Hi, I have a state machine workflow project, and have recently changed the persistence service to specify single ownership by setting the instanceOwnershipDuration property to Timespan.MaxValue. Since then I've had to change the machine that I'm running the workflow runtime on. When I run on the original machine everything seems OK, but when I try to run the application on the new machine I get the famous "the transaction has alreay been implicitly or explicitly committed ot aborted" error, even if it's a brand-new workflow instance. Surely a new instance should run OK from the new machine And if this is intended behaviour, how can I reset the system (database.. runtime.. ) to allow the new machine to execute its own ins ...Show All

  • Visual Studio Express Editions Visual Basic 6.0

    I have Visual Basic 6.0 Working Model, and am looking for software to upgrade it to the full version (i.e containing Help & etc.). I have tried Visual Basic 2005 Express Edition, but I find it difficult to use. I am 81 years old and so the old brain cells are not too happy with taking in new ideas ! VB6 is easier for me as it has retained lots of QBasic features, with which I am more familiar. I'm sorry but the only Visual Basic really recognized these days is Visual Basic.NET as found in Visual Studio 2002, 2003 and 2005 and in order to upgrade to a higher version of VB6 you'll need to look for a copy through non traditional channels like eBay or garage sales as it is no longer commercially a ...Show All

  • Visual Studio Team System Security on Iteration node maintenance

    Does anyone know the security setting to allow the add/delete/mod of iterations. I have a user that has the ability to do anything needed with areas but cannot change iterations. I'm not sure which security setting I have incorrect. The group to which teh user belonsg is not allowed to edit project information. It seems from the docs that if I set the "DELETE" class="CSS_Node" allow="TRUE" that would apply to areas not to iterations. So... both from the chnages that need to be made in the groupsandpermissions.xml file of the team project template and via tfssecurity how can I set the user to be able to maintenance permissions and what setting must I obviously not have set not that prevents them from doi ...Show All

  • .NET Development How can I save dataset as an xml file???

    Hi I am trying to save the dataset as xml file (one row from the table).Saving xml is fine but it look like the following (the below is flat xml file without root nodes and child node) But I want the data to go under xml Root Node, child node, children node and so on. My question is How can I save the dataset as xml file with Root Node, child node, children node and so on Please help !!! Urgent!! < xml version="1.0" standalone="yes" > <MS> <SDLTID>1</SDLTID> <UTRN>303783jMJ</UTRN> <TransPropertyType>01</TransPropertyType> <TransInterestCreated>FP</TransInterestCreated> <TransEffectiveDate>2006-04-05</TransEffectiveDate> and so on..... ...Show All

  • Visual Studio 2008 (Pre-release) WCF CustomBinding and Http Cookie, any luck?

    Is it possible to hook up HTTP cookie somewhere in the Custom Binding stack Due to the specifications I was given, I have to store some Security Tokens in HTTP cookie. This sounds strange but it is a requirement. Thank you for replying. You can manipulate cookies in WCF by accessing HttpRequestMessageProperty.Headers or the mirror property on HttpResponseMessageProperty. This sample shows how to write a channel that uses cookies (and how to wire up that channel in a custom binding). Cheers, Ed ...Show All

  • SQL Server Accessing dataset with custom code

    Hi, Need a little help on the code here. How can I import values from an RSS dataset I will store them in a hash table and then call the function to check for dups. An example or pointer or article reference would be appreciated. Thanks. Here is an example of using the Xml Data Processing extension using this forum's RSS feed as the source. Connection String: http://forums.microsoft.com/MSDN/rss.aspx ForumID=82&Mode=0&SiteID=1 Query: <Query> <ElementPath IgnoreNamespaces="True">rss{}/channel{title,link, description}/item{title, date, link, description, comments}</ElementPath> </Query> Ian ...Show All

  • Internet Explorer Development IE7 Title bar shows up in Chinese instead of my language

    Hello, Downloaded and installed: IE7-WindowsXP-x86-enu.exe OS: Windows XP Home (legal version) I had IE6 with SP2. I downloaded at first the IE7 RC1 but then I downloaded the file I mentionned above. With both RC1 and IE7-WindowsXP-x86-enu version I got the weird Chinese titles in my Blue Titlebar. The tab-titles tho are correct. I've uploaded a screenshot to be downloaded here . This screenshot gives you the view of my IE7 browser with the blue titlebar. My Language is Dutch and at the Tools - Internet Options - General tab I've set my appearance language at Dutch (screenshot here ). Could somebody please help me out I really really love to have my own language or the english titlebar instead of Chinese. Yours Sincerely ...Show All

  • Visual Basic Missing Default Property

    First I must apologize - I am new to VB5. I come from a VB6 background and thrown into a VB2005 project and I'm looking for something so simple...the default property. I found where you set the Cancel Button option, but I can't find the default property as it was available in VB6. I've even tried to set it in code, but that is unavailable either. Am I missing something here Did they take that away from me Any help is appreciated. Bob http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=845268&SiteID=1 ...Show All

©2008 Software Development Network