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

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

HavingProblems

Member List

P.Johansson
Fran431916
LeahMM
bslim
JennyMQuinn
R8VI
rmccullough
Thiago Tota
JohnLi
redwood739
CesarDev10
StumblingInTheDark
gharen1234
Amadrias
aspfun
Robert F Pickering
Cool Screen Name
MarcBeuret
Corey Bornmann
AAAchiel
Only Title

HavingProblems's Q&A profile

  • Visual Studio 2008 (Pre-release) XAML Xml Binding

    Is it possible to work a master-detail where the detail gets it's Xml data from a different part of the tree and not a direct child of the original master element. For example, I want to show a category list, and selecting a category will show me the reports in that category. However a report can be in more than one category. Ideally I don't want to duplicate the report information so I want Xml that looks like: <reports> <categories> <category name="cat1"> <reports> <report key="rep1" /> <report key="rep2" /> </reports> </category> <category name="cat2"> <reports> ...Show All

  • Windows Forms WSuS Deployment Problem

    Hi, This is in connection with WSUS installation. Server OS - win2k3 Ent + sp1 Sql - sqol 2000 + sp 4 Once the installation is over , the update is happening the event viewer throws the following error : " Content file download failed. Reason: The server does not support the necessary HTTP protocol. Background Intelligent Transfer Service (BITS) requires that the server support the Range protocol header. Source File: /msdownload/update/v3-19990518/cabpool/windows2000-kb922582-x86-enu_b184762ae6115013bd0e769309ea0b48d64de4df.exe Destination File: c:\WSUS\WsusContent\DF\B184762AE6115013BD0E769309EA0B48D64DE4DF.EXE. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp . " I am ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Why use shaders?

    This is probably a stupid question, but I'm going to ask it anyway. I've been programming computers for almost 20 years, so I'm not new to this, but I am new to 3d game programming. I downloaded RenderMonkey, and Nvidia FX Composer, and I see that really cool effects can be made with shaders...but the gap in my knowledge is...why, and when. I see that ATI has a shader demo where they take a flat disc and mod it into a speaker shape and then make it pulse like a real speaker using shaders. So...here's the question...is it more processor-friendly to make a flat disc and then shader it to the shape I need than to make model in the right shape in the first place In their demo, they take a flat disc and "shader" it to a speaker shape ...Show All

  • SQL Server Can I install MS SQL 2005 Dev on win 2003 web

    Hello to everyone again to get info and support I relay on forums..... I buy Visual studio 2005 professional there is included MS SQL 2005 developer edition I buy Brand new DELL PC ($4750) with Windows server 2003 web edition I can not install MS SQL 2005 developer edition my curently cost to buy all these MS products was $1080CAD + $350CAD for win 2003 I didn't find normal to have no telephone suport and no version capability I am really mad!!!! please if there is step-by-step guide how to install MS SQL 2005 on win 2003 web please let me know mail@bluelabs.ca Thank you in advance Valentin Petkov " But I still wondering about Do Microsoft work over that to can some vers ...Show All

  • Windows Forms Need to remove the enter key value in datagrid view control

    Hi, I 'm getting a description from textbox which has multiple lines. If i display this description in datagridview control every line is accompanied wiht a special symbol of enter key. I dont want to display this special symbol. Please help me in eliminating this. venp--- That is what the cellFormatting event is for Private Sub DataGridView1_CellFormatting( ByVal sender As Object , ByVal e As System.Windows.Forms.DataGridViewCellFormattingEventArgs) Handles DataGridView1.CellFormatting If e.ColumnIndex = 1 Then ' replace 1 with the column with the formatting problem e.Value = e.Value.ToString.Replace(Chr(13), ControlChars.NewLine) e.FormattingApplied = True End If End Sub ...Show All

  • SQL Server Property AnsiNullsStatus is not available for UserDefinedFunction

    I created a table valued function in SQL Server 2000 SP3 using SQL 2005 Management Studio, but when I try to edit it (Right-Click, Modify or Script Function As...) I get the following error: Property AnsiNullsStatus is not available for UserDefinedFunction '[dbo].[fnMyTDF]'. This property may not exist for this object, or may not be retrievable due to insufficient access rights. (Microsoft.SqlServer.Smo) I can edit it in other tools (Sql Query Analyzer) just fine. I'm in the sysadmin role. Versions: Microsoft SQL Server Management Studio 9.00.2047.00 Microsoft Analysis Services Client Tools 2005.090.2047.00 Microsoft Data Access Components (MDAC) 2000.085.1117.00 (xpsp_sp2_rtm.040803-2158) Microsoft MSXML 2.6 3.0 4.0 5.0 6.0 Microsoft ...Show All

  • Visual Basic upgrade VB6 to .Net

    Hi, I am upgrading VB6 to VB.Net. I get an Error message: "Type AxMSComctlLib.AxListView is not defined". How could I solve this problem Thanks in advance. Do you mean you have upgraded a project from vb6 to vb.net it sounds like AxMSComctlLib is a VB6 component (com object ) which cannot be loaded in .net. Do a google search for AxMSComctlLib and you'll find loads of links to the same problem you're having. the upgrade wizard is fairly rubbish, most people seem to reccomend re-writing an app for .net rather than upgrading it ...Show All

  • Smart Device Development Linking with C++ static library in native C++ smart device projet

    I used to have a PocketPC client application communicating with a desktop C++ server. Now, I'm porting the server to PocketPC so the whole thing can work on the PDA without an internet connection. I'm having problems linking with the libraries' .lib files I'm using. For instance, I'm using sockets (Winsock2.h -- WS2_32.Lib). I include the .h, code compiles but doesn't link; then I add the .lib in the additionnal depencies, but still, it doesn't link (error LNK2019: unresolved external symbol ioctlsocket referenced in function "public: void __cdecl OBServer::InitializeServer(int,int)"...) First of all, is a desktop .lib supposed to work right away in a smart device projet Or maybe it need to be recompiled or something like that If ...Show All

  • Windows Forms ContextMenuStrip linked to Control

    Hello, I have a context menu strip linked to a control. So whenever the menu shows, and an item is clicked, how can I determine what control the menu originally showed for Thanks. Find out what control has focus when the menuitem is opened or clicked: toolstripmenuitem is on the context menu and the menu is attached to my textboxes on the form...c.name is the textbox from which the contectmenu was activated Private Sub ToolStripMenuItem7_Click ( ByVal sender As System .Object, ByVal e As System . EventArgs ) Handles ToolStripMenuItem7 . Click For Each c As Control In Me . Controls If c . Focused Then MessageBox . Show ( c . Name ) End I ...Show All

  • Software Development for Windows Vista Using WebService Activities in a Composite Activity (promoting parameters)

    folks, i am trying to use a invokeWebService within a composite activity. the invokeWebService Activity requires the specification of a ProxyClass and a MethodName which is not known when designing the composite activity (but when using the composite activity within another workflow). Hence, I tried to promote the parameters to the composite activity using ActivityBind but the compiler claims that ProxyClass/MethodName are meta properties which are required to be bound at design time. Just to clarify, I want to bind ProxyClass/MethodName at design time, but when designing the workflow using the composite activity and not when designing the composite activity itself. I hope I could explain my problem somewhat clear. any help would be appr ...Show All

  • .NET Development Get Hardware Detail from Drive Letter

    Hi all, May i know how we can get hardware detail from a Drive Letter by using VC++ .Net Hardware Detail are like GUID, Hardware ID, Friendly Name and etc. Regards Sorry, i able to get the device from Win32_DeviceChangeEvent, what kind of information i able get from and how i can determine what kind of message(arrival or removed) message   here is the code that i generate. using System; using System.Management; using System.Windows.Forms; namespace WMISample {     public class WMIReceiveEvent     {         public static void Main()         {           ...Show All

  • .NET Development How do I insert a datetimepicker1 text into sql table in datetime datatype

    If I try to insert a valve of datetimepicker text into SQL table in which datetime is datatype. It taken default value as 01/01/1900 For more plz see below code Dim sa As String sa = "insert into SOFTWAREREQUISITION values(" & st & "," & si & "," & TextBox2.Text & "," & DateTimePicker1.Text & "," & DateTimePicker2.Text & "," & pi & "," & DateTimePicker3.Text & "," & ei & ")" Please help in this regard, Regards, Sreecharan take a look at the overloads for the Parameters.Add() method. it requires a STRI ...Show All

  • Smart Device Development Sound manager on smartphone

    Hi, I want to add a ring type with sound manager. After refering to Windows Mobile 5.0 help, I found sound manager would call appropriate ring tone handler to playback ring tone. The most default handler of rings is XME EventSound Player(XMEEvtSnd.dll). Take example for mp3 ring type or wma ring type, the ring tone handler is also XME EventSound Player. Whether XME EventSound Player uses DShow when it plays media files Whether XME EventSound Player can call my source filter if I writed a DShow source filter as preferred mp3 source filter Could you please tell me where I can find information about the way XME EventSound Player calls DShow source filters I have a problem that I cannot identify with W ...Show All

  • Visual Basic How Can I make a protected sql database file

    I have an access db file with my VB 2005 I want to change it to sql database file with protected by username and password I have sql server 2000 Even with mixed mode authentication, you're still going to have limited access to the SQL sa account and probably your own Windows account - other users will likely not be able to connect to your DB without either their Windows account being given access, or an account being created on the SQL server and granted access. You'll probably get some better responses on the SQL forums Cheers, Menthos ...Show All

  • Windows Forms Collection property in User Control

    Hello. I have a question about the user control. I'm making the user control which have a collection of another control. Even though I marked the attritube [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)], it doesn't write the property of the inner control in the "Form.Designer.cs". My codes are here. ------------------------------- public partial class UserControl1 : UserControl { private TestControlCollection mtxtValueColl; [Category("MyTest"), Editor(typeof(CollectionEditor), typeof(UITypeEditor)), DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public TestControlCollection TestCollections { get { ...Show All

©2008 Software Development Network