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

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

nobugz

Member List

devinr
zdrae
Itzhak
sweet_salt
riemerg
laja
Sakil
hgsevinc
Suhaib
SimonS_
Glint
Toad62
Fibaoptix
Azriel Cross
Andrew Buyan
lagu2653
GaryMcC
Ayooya
MarkWHarrison
TaylorMichaelL
Only Title

nobugz's Q&A profile

  • SQL Server Problem to connect Access 2003 to SQL Server 2005 Express

    Hello, after successfully connect Access to the Server I want to add a table. I got an error message: With this version of MS Office Access you are not able to make any drafts because this version of SQL server you are connected to does not support this. Check the MS Office update website for the newest downloads. You habe connected to a version of SQL server which is newer than SQL server 2000. Versions: SQL Server runs on a MS Server 2003 SP1 Access 2003 (11.6566.6568 SP2) on an MS XP Pro SP1 all on actual patch level. Any ideas what's wrong :-) Klaus     I was checking out your solution it fit my problem all the way up until I got to the MS Access ...Show All

  • Software Development for Windows Vista How to use File Writer Filter?

    Hi, I have written a Directshow Filter (derived from CSource) that reads a file using IAsyncReader and gives the same thing as output. Now I want to write this output data in a file using File Writer Filter. I have set the output media Major and sub types as { &MEDIATYPE_Stream, &MEDIASUBTYPE_NULL }; and with this I am able to connects filters in graph edit but when i run the filter graph it runs but nothing is written in the file. Can anybody tell me what could be the reason Thanks, A bit late but some futher info if needed. The main action occurs in CSourceStream (the output pin of the source), CSource is a CoClass in COM terminology just for instantiating the object. If your output pin implements IAsyn ...Show All

  • Visual Studio 2008 (Pre-release) Expression Interactive June CTP

    Is there a know date for the june CTP of expression interactive, working with the june ctp of the .net 3.0 framework. Thanks Paul Hi, Thx for your question. There's actually an even later version of Expression Interactive Designer available now. It's the July CTP of Expression Interactive Designer, that targets the July CTP of Microsoft .NET Framework 3.0 (formerly known as WinFX). http://www.microsoft.com/products/expression/en/interactive_designer/id_free_trial.aspx Here's the link to the download. Hope this helps. Regards, Parimal Deshpande ...Show All

  • Smart Device Development How to hide a DataGrid column that uses SqlCEResultset?

    Hi All, I am assigning a SqlCeResultset to datagrid because it loads much more faster compared to dataset, my problem right now is how do I hide some of the datagrid columns. Here is the sample code that I'm using to hide other fields: commandRoutes = new SqlCeCommand("Select * From Customer", connection); rsCust = commandRoutes.ExecuteResultSet(ResultSetOptions.Updatable | ResultSetOptions.Scrollable); this.datagrid1.DataSource = rsCust; DataGridTableStyle ts = new DataGridTableStyle(); ts.MappingName = "Customer"; DataGridTextBoxColumn colPosition = new DataGridTextBoxColumn(); colPosition.MappingName = "position"; colPosition.HeaderText = "Pos"; ...Show All

  • Visual Studio Team System Needed IIS and NTFS Permissions

    Good day! Knowing me I've probably missed something, but after installing TFS the two admins (myself included) are the only ones who can connect. Being somewhat familiar with IIS and NTFS Permissions (actually just enough to be dangerous) we noticed that <machine-name>\Administrator, <machine-name>\IIS_WPG, and SYSTEM are the only users/groups who have have access to "D:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Web Services" directory. Should a group like <domain>\Domain Users also have access If so, any idea at what level and why the install would not have set this for us Thanks! IIS_WPG should cover normal users as that's what the service account uses to access tha ...Show All

  • Visual Studio Express Editions Cannot Access Free Registration Materials via Thank-You Emails

    Hi everyone. I'm trying to access the free downloads that come with registration, but I only see the Web Developer downloads listed. I don't see the icons, components, or book that come with C#. I assume they would all be listed on one page, but they aren't there. How can I find them Thanks, John Salerno P.S. I don't understand how to download what *is* there either. The link to the Web Developer book says it's a pdf, but when you download it, the file is an aspx file that won't do anything when opened in WD. When opened in an internet browser, it just tries to download itself again. Maybe the site will be updated and fixed tomorrow.   jrothwell9 wrote: I just find my link goes to the Microso ...Show All

  • SQL Server Upgrade from SQL 2005 Standard to Enterprise

    I'm installing SQL 2005 on a cluster. Currently we do not need the features of enterprise edition, but we may need them in the future. Can you upgrade Standard edition to Enterprise edition (on a cluster) This is technical possible: http://msdn2.microsoft.com/en-us/library/ms143393.aspx HTH, Jens Suessmeyer. --- http://msdn2.microsoft.com/en-us/library/ms143393.aspx HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where do I find my Xbox 360's Connection Key?

    Where can the Connection Key be found on my Xbox 360 to get it to connect with XNA n1ce_hat wrote: Yeah yeah, I know there's a whole lot of difference between XNA games and your traditional studio game... Not necessarily. We may not see XNA Half-Life 3, but other than that I think we'll be able to do pretty much anything else. If the video of XNA Racer is any indication you might not know the difference between a native C++ game and an XNA game. ...Show All

  • SQL Server Help with SQL

    Hi, i hope i posted int he appropiated forum. I hope you can help me with an sql sentence i dont know how to do,... The problem is that i have a database with fields like this: name, adress, etc.... , phone number but sometimes, i get them like this: paul, ... street... , etc... , 776509332 paul, ... street... , etc... , 234536445 paul, ... street... , etc... , 567847345 The client si the same, but he has more than one phone number.... I need to do, somehow, another table that makes this kind of duplicates to dissapear, and joins the phone numbers in an unique field for that person, so it will in the end look like this: paul, ... street... , etc... , 776509332 234536445 567847345 Can anybody help me Thanks ...Show All

  • Visual C++ Compilation error in Release mode

    I have a .NET VC++ program and I can compile it perfectly alright in Debug mode. But when I compile it in Release mode, I got the following compilation errors: Error 1 error LNK2019: unresolved external symbol _WSACleanup@0 referenced in function _main lpdsrv.obj Error 2 error LNK2019: unresolved external symbol _closesocket@4 referenced in function _main lpdsrv.obj .. .. I am a newbie. It seems I need to add a library reference somewhere for my winsock library Please kindly explain and enlighten me. Thank you very much. One possible explanation would be that you have different Release and Debug configuration settings leading to this linking problem. For example you made some change to the ...Show All

  • Visual Studio Express Editions Making A Media Player

    Hi. I am making a media player. If sombody could answer these questions, it would be very helpful! 1) Is it possible in VBE 2) What code would I use to... a) Show a dialog to open an MP3 b) Begin to play the selected MP3 c) Stop the MP3 3) Can i show visualations (Spelling wrong, sorry) a) What code can I use Thank you! there was a series of elaborate dialogues on this. Use Search, Look up Cheyenne. Also there is a tutotial based around an MP3 player called How to use the debugger. Those should be very rich resources for you. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Some questions about ground, walls,sky and so on

    I have some questions, because I have not totally understanded how a 3D game can be created. How do I make for example walls and ground(for example a carroad) Should I just make it as Models For example: asfaltvejlille = content.Load< Model >( "Content\\World\\asfaltvejlille" ); ("Asfalt" is danish and means asphalt/asphaltum/bitumen(token from www.ordbogen.com ) on english) Or as a Texture2D.. or How should I do it I have tryed to make a road/"asfalt-vej(road)-lille(small)" as a Model but have some problems with the cameras and where the road is..(See picture http://simon.h-form.dk/gallery2/main.php g2_itemId=968 ) Should I continue to "play"("rode" on danish, do ...Show All

  • .NET Development Web Services Licensing

       Thanks all as I got the solution to it.     hashmi wrote: Now I want to make this webservice priavte ie only licensed users will be able to use it. So how to implement licensing for the webservice so that only those users who have valid license can access the webservice If you simply want to block users out of a service, what you're looking for is called authentication .  If you want to give authenticated uses different levels of access, that's called authorization .  With XML Web Services this can be simple or it can be really complex; depending on your security needs. There's some really good references on Web Service Authentication on the web.  Some of the complex stuff a ...Show All

  • SQL Server A connection could not be made to the report server http://localhost/reportServer..

    hi, I got this error when I was trying to deploy the reporting into IIS.. A connection could not be made to the report server http://localhost/reportServer . ------------------------------ ADDITIONAL INFORMATION: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. (Microsoft.ReportingServices.Designer) ------------------------------ The request failed with HTTP status 404: Not Found. (Microsoft.ReportingServices.Designer) I am not able to solve it please help. Thanks. Yes jbrauer, this was exactly the solution for me too, thankyou. ...Show All

  • Gadgets How to get Market information when add gadget by URL "http://www.live.com/?add=http://xxx/xxx.xml"?

    When I add a gadget by inputing URL for example ' http://www.live.com/ add=http://xxx/xxx.xml ', I can't get the correct market information but it gives me "en-us" all the time as I set the language in live.com is Chinese which's market information is "zh-cn". So is this a bug in the live.com Or is there any other ways to get the correct market information Ps: getLanguage() and getLocal() methods will return null in this situation. Thanks Starlet, I use the M_CultureVariable_Text to retrieve the market information on live.com. It's available for use, just reference it. ...Show All

©2008 Software Development Network