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

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

omarmhd

Member List

Closer
QWERTYtech
dwatrous
Duckboy
Soupdragon
Docpro777
JS TCS
david999
Viren Kapadia
brettlee01
chris65
James N
raghava66
bk13
Peto_SVK
swan_sgp
TELII
Chuck Cobb
detzX
mike6271
Only Title

omarmhd's Q&A profile

  • Audio and Video Development MKV

    I have win xp home service pack 2 with win media 11. running on a Intel peniam 4 2.40 gig and 1.25 gig ram The problem im having is i have a file with the extenion .MKV that wont play dose nayone know a plugin for me to use Try this newsgroup: http://www.microsoft.com/windows/windowsmedia/community/newsgroups/WindowsMedia/default.mspx dg=microsoft.public.windowsmedia.player&lang=en&cr=US This forum is for questions on Media Foundation, the new multimedia platform for Windows Vista. ...Show All

  • SQL Server Am using sql server 2005, column data type is varchar, how to write a query to sort

    this data. need help Sort following numbers by asc and desc order Before query sort -1.1 -8.8 -15.5 0.0 +0.5 +0.2 Sort asc +0.5 +0.2 0.0 -1.1 -8.8 Sort Desc -8.8 -1.1 0.0 +0.2 +0.5 Why are you storing numbers in varchar You can do a CAST(varchar_col as decimal( , )) with appropriate precision/scale and sort on the expression. select * from tbl order by cast(varchar_col as decimal(10,4)) -- or select * from tbl order by cast(varchar_col as float) But this is also ugly workaround. If you have data that cannot be converted successfully to decimal/float the query will fail. You can use ISNUMERIC but that checks for more formats and you may still get runtime errors depen ...Show All

  • SQL Server Sql Server Configuration Manager ????

    If you want your database to be available from the Internet by using the ip address, what should the 'Log On As' column show Local System Local Service NT AUTHORITY\NetworkService What do these choices mean I'd advise you to consider whether you really need to expose your database on the Internet. Otherwise all of the above should work (provided that you're using TCP as your protocol). For the differences between those accounts please see: http://www.microsoft.com/technet/security/topics/serversecurity/serviceaccount/sspgch02.mspx Hope that helps. ...Show All

  • Visual C++ Compile Error Report: VC++ 2005 Office Automation using TypeLib

    following the instruction of kb 307473< How to use a type library for Office Automation from Visual C++ .NET > http://support.microsoft.com/kb/307473/ I do following step: 1. Create a new dialog-based application using MFC AppWizard. 2. Add MFC class from typelib, I choose "Microsoft Word 11.0 Object Library<8.3>", because I have Office2003 installed on my machine. Select interface "_Application", then I get a new file "CApplication.h". 3.Add "#include "CApplication.h" into the first line of file "XXXDlg.cpp", compile! Then I get a pile of errors and warnings: Build Log Rebuild started: Project: AutoProject, Configuration: Debug|Win32 Command Lines ...Show All

  • Internet Explorer Development Diana

    Hi: I have a CRM on Internet Explorer (we work distributed) , and I have lo log on with my user name and password to access to CRM. When I click on the username box, appears the list with other usernames: can I deleting them If they were Windows users, the cache have the user and I can set to 0 the cache for delete users through the registry and the kit utility regedit.exe to change the number of previous attempts that a server will cache. But I am in Internet Explorer with this CRM and I don’t want that everybody see wich users were in any PC. Can I delete them ...Show All

  • Visual Basic How can I close all open database connections?

    Hello, I need to loop through all connections to the database I am using in my app (an .mdf file) and close and dispose of them all prior to exiting my application. Could someone please show me how to do this I am primarily using table adapters to access my DB. Thanks. In the closing function of your application is where you would want to initialize it...but that's about all I can help with there :\ Use a For Next method though and set Count = to the number of connections open. Then cycle through them and try the .Close() method I guess I've never dealt with closing of connections, so that's about all I can provide you. ...Show All

  • SQL Server 404 Error On http://localhost/Reports/Pages/Folder.aspx

    Setup: Sql Server 2000 Reporting service installed on separate IIS server on windows 2000 server Current issue is when going to the report manager we currently get the following error: The request failed with HTTP status 404: Not Found. I looked into the threads and check settings that said to check properties of the virtual directory and the coinfiguration and all is looking good. This was working without issue, and then it just stared to act up and not allow anyone to go to the manager. We can go to the //localhost/Reportserver and browse and get the reports to run, but the main report manager does not work. Home.aspx is there in the directory and it appears everything is go ...Show All

  • .NET Development Allocating large array -> out of memory

    Heya, I tried to allocate a large byte array in C#, like this: byte [] buf = new byte [len]; (where len = 1gb) But I get an out of memory exception. I have 2gb of memory in my machine, so it should work Are there alternative/better ways to allocate large amounts of memory /Bo Nope, not besides the possible workaround mentioned above. Hopefully they will make it easier to do in a later version of the CLR framework without jumping through additional hoops. ...Show All

  • Visual Studio 2008 (Pre-release) Creating and animating a TranslateTransform doesn't seem to work

    Hi, I'm trying to animate an element so it slides 300 pixels to the right. This works fine if I set a TranslateTransform to the element via code however doesn't work if I set the transform via a Storyboard. Any ideas why the code below doesn't work Note that to see the difference flip the "createUsingStoryboard" boolean value. When it is false, this code works, when true it doesn't. bool createUsingStoryboard = false; Storyboard storyboard = new Storyboard(); storyboard.FillBehavior = FillBehavior.Stop; if (createUsingStoryboard) { ObjectAnimationUsingKeyFrames renderTransformAnimation = new ObjectAnimationUsingKeyFrames(); Storyboard.SetTargetProperty(renderTransformAnimation, new PropertyPath(UIElement.RenderTransform ...Show All

  • Visual Basic Application Launch Within Another Application's Window

    I am relatively new to this type of coding so please forgive the question if it is simple... Our company is migrating from VB6 to VB .NET (2003 edition). At the same time, we are integrating CTI and several other newish technologies. I know how to call another application to run independently. However, that is not necessarily the route I want to take. I would like to know how (if possible) to launch another application within my VB application. For example, we have a free standing program that just controls interaction between the telephones and computers, all the while receiving input from the user. Rather than trying to redesign a software that I am not the creator of, I figure it should be possible to open an instance of the p ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA framework for non C#

    One of the great advantages of the .NET framework is that developers can work on the same project in different programming languages. As I'm reading about XNA, it seems that this will not be possible with the XNA framework. Will the only programming language that has access to the XNA framework be C# That's correct the XNA Framework is for Managed Code Development and runs on the Common Language Runtime which prevents a programmer from using unmanaged languages (C++) from using the XNA Framework. Managed C++, now called C++/CLI is something that could work with the XNA Framework. All this said I understand where your coming from Mossa and it's good feedback. ...Show All

  • Windows Forms How to create a Wizard with Windows Forms?

    Hi i want to create a simple wizard for an application consisting of a series of windows that take date from the user and store it in a file. I wonder if its possible to create a wizard with Windows Forms I use Visual Studio 2003 and Visual C# standard edition. Thanks in advance Hi Derek, wow, thats great and almost meets what i need. However, there seems to be a bug in the 3rd form. How do i enter phone numbers I have tried several versions of international numbers but the form won't proceed to the next form, that is, the "next" button stays disabled. However, now i know it works and thanks again for the great work. May be this should be posted on MSDN articles or the like. Best reg ...Show All

  • Visual Basic Looping Registry Keys

    I am making an application that allows me to backup my Microsoft Office 2003 settings. To be honest I have two questions if you dont mind.... One question I would like to ask is if anyone can help me think of a way to loop through each set of keys under each Office program key so that I may save each value as seen fit To do this so far I have had to look up each of them with regedit and write about 1700 lines of code, its works but seems to be terribly untidy and a loop I think would be more efficient. Another question would be; On installation of Office, would all of the keys and values be written. Or maybe they are not there until that particular setting or option has been edited within a program I thank any person that can ...Show All

  • Visual Studio Express Editions How to make a search box in an application

    Hi. I have a database that has a table named "Main", this table has 4 elements "ID, Blue Number, Year, Description" . What i need is how can i make a form that has only a search box to search using any given blue number, and once the blue number is entered into the text box the program will search the database for all other elemnts to that blue number. Anyone can help plz This is how i tried to do it : 1: Made a form with a button (Button1), a textbox (TexBox1) & a listbox (ListBox1). 2: Went to Data Sources tab and selected my database and then selected the table i want to use (Table1) and the dataset name is memsDataSet. 3: Inserted the following code into Bu ...Show All

  • Visual Basic Web Browser Popups

    Hello everybody, I have created a successful webbrowser in VB Express Edition 2005, with all controls (back, forward, stop etc..). Yet when a link is clicked which opens a new window on a website, it always opens in internet explorer... how can I prevent this from happening Thankyou Ben hi, I have this problem you said: "you want the link to open within your own webbrowser control instead of in a new window" I am new to this and just making the web browser as a getting started but i am having this problem how do I use the WebBrowser.Navigate event what do i need to type and where please help! Thanks in Advance Luke ...Show All

©2008 Software Development Network