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

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

nhd

Member List

programmingisfun
BobInIndy
Bill Gates II
myoungbl
Amadrias
Mega_x
laurin1
Principher
Chris Doull
gabriel_333
hrubesh
Hussain Saffar
dap5079
Gordopolis
averge joe
James_Steven
scuudz
Nelk
MAwais
S10n
Only Title

nhd's Q&A profile

  • Audio and Video Development Focused Buttons and State not working.

    Code sample below. My buttons are acting kinda screwy. I can activate them by clicking, but they exhibit the focus and active states only when I click. Focus is not happening when I mouse over. Also the buttons quickly get out of sync or something. I wonder if I am not dealing with state properly. < xml version="1.0" > <root xml:lang="en" xmlns="http://www.dvdforum.org/2005/ihd" xmlns:style="http://www.dvdforum.org/2005/ihd#style" xmlns:state="http://www.dvdforum.org/2005/ihd#state"> <head> <styling> <style id="BTNSTYLE" style:position="absolute" style:backgroundFrame="0" style:width="137px" style:height=" ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. error directX plugin

    Hi! I'm programming a game and I have a problem when I try to install the exporter plugin in Maya 7. I follow the instructions to install the plugin correctly and in Maya when I go to plugin manager I check D3DExport.mll and then a messagebox appears and says: error x3539: ps_1_x is not supported in this version of the compiler memory(125,23): ID·DXEffectCompiler::CompileEffect: there was an error compiling expression ID3DXEffectCompiler: Compilation failed And in directxViewer I have the same message when I try to load a 3d object Please help thanks a lot Here is a solution I applied based on what I found on the forums - didn't really see a step-by-step solution so this is for those that ...Show All

  • SQL Server Full Text Researching

    Hi everyone, I can not use Full Text Researching in my local server. I create a database inwhich I also create a table. And then, when I go to the enterprise manager in order to adjust my table for full text searching, I see that I am not able to do it since the the label for this is unabled for pressing. So what should I do so as to make this property enabled for my table Thanks here's a link to fulltext search whitepaper http://download.microsoft.com/download/f/b/6/fb62b4bb-6509-41a8-907e-bf0f79f6aa43/Full-TextSearch_Publish.exe The Microsoft Search service is not available on: § Microsoft Windows NT Workstation § Microsoft Windows 2000 Professional § Microsoft Windows Mille ...Show All

  • SQL Server Deploy application that uses TraceReplay and TraceFile TMO classes

    Hi, I have a .NET 2. 0 application that references SMO and uses TMO classes such as TraceReplay and TraceFile. I was under the impression that for this application to work, if SMO is installed (which means MSXML 6.0 and SQL Native Client is also installed), the application should work. But I have started to see errors like: ....Could not load file or assembly 'file:///C:\Program Files\Microsoft SQL Server\90\Tools\Binn\pfclnt90.dll' or one of its dependencies. The system cannot find the file specified. File name: 'file:///C:\Program Files\Microsoft SQL Server\90\Tools\Binn\pfclnt90.dll'..... and ....Could not load file or assembly 'Microsoft.SqlServer.Instapi, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' ...Show All

  • Visual C# simulating hardware

    Hi All I want to know if there is any useful links that can help in building a hardware simulator using C#, if you know a place where I can get information, plz help thx Hi, thx for your quick response, I am interested here in simulating a many simple CPU's that works in parallel, you can think of it as multi processors Thank you ...Show All

  • SQL Server creating and scheduling job for SSIS

    Hi All I want to create and schedule job for my SSIS packages. But I have no idea how to do that. Hi All SSIS packages works fine in BIDS but when we started testing on our Dev server, we are unable to run the SSIS. Error:System.Data.OleDb.OleDbExecption:ORA:01017:invalid username/password logn denied............... we are unable to connect to Oracle source. Do we again need to specify the connection managers. ...Show All

  • SQL Server Check condition and wait

    Hi, I have a data-flow-task that imports data to sqlserver. Now I want to check, if a special column of an imported record is null. If yes, I have to wait 10 minutes and jump to the data-flow-task again. (Cjeck and wait). How can I do this with the integration services Thanks Gerd You can do timer style loops, so this could be extended for your loop on the 10 minute, and maybe use some extra variables to keep track. For Loop Container Samples ( http://www.sqlis.com/310.aspx ) You could have an Exec SQL Task inside your loop as the first task. Query the column and assign a variable value using the query result to indicate if the column is true. Then have a Data Flow Task linke ...Show All

  • Visual C# obtain windows username information

    hi is it possible to obtain the windows logged on user information (username, name,...) programmatically System.Security.Principal. WindowsIdentity winId =      System.Security.Principal. WindowsIdentity .GetCurrent(); ...Show All

  • Windows Forms validating edit box(very urgent)

    hi, I have an editbox...........which will be accepting.........string to create a folder in tree........but wen user doesnt give any name ..or.......just gives spaces...........i should not allow him to create a folder............can anyone give logic for this. Thnx in advance, bye, Sudhakar. Hi, when reading/validating this editbox, check for trimmed text length, like in the following example: string folderName = folderNameEditBox.Text.Trim(); if (folderName.Length == 0) { MessageBox .Show( "You should enter a valid name." ); } Hope this helps, Andrej ...Show All

  • SharePoint Products and Technologies Modify Left Navigation Bar in MOSS 2007

    Hi I am using MOSS 2007. In that i create an website and create site collections. then lands an home page with PressRrelease. Now my requirment was to create many site like AboutUS(top level site)      New Letter(sub site)      Press Release(sub site) Software     Microsfot(subsite)        Microfot Office (pages0        Microsoft .net(pages)        Microsfot VB(pages)   Adobe(subsite)      Photoshop      Aldus   Sun Microsystem(subsite)      Java Version1.1      java Version 1.2 hardware   &nb ...Show All

  • .NET Development file upload to https server not working

    i am sending a file to a https server and i am not getting back the same results as iexplorer is, or the same page. my page has an error that its displays, which is "Error: Cannot find bean: "UploadBean" in any scope" i captured the stream from iexplorer and my app and its the same thing being sent. any ideas here is the file that i am sending using multipart-form content type StringBuilder^ sData = gcnew StringBuilder(); sData->Append("--" + sBoundary); sData->Append("\r\n"); sData->Append("Content-Disposition: form-data; name=\"firstTime\""); sData->Append("\r\n\r\n"); sData->Append("F"); sData->Append("\r\n"); sData->Append("--" + sBoundary); sData->Append("\r\n"); sData->Append("Content-D ...Show All

  • Windows Forms DataGridView AutoFilter whitepaper and sample

    Are you spoiled by the AutoFilter feature in Excel Do you want the same functionality in the DataGridView control Then my new whitepaper and sample are for you. See: http://msdn.microsoft.com/netframework/windowsforms/default.aspx pull=/library/en-us/dnwinforms/html/DtGrdVwAF.asp The DataGridViewAutoFilter library provides a custom DataGridViewColumnHeaderCell with a drop-down filter list that displays each unique value in a column, and updates the filter of the bound data source when a value is selected from the list. A custom DataGridViewColumn is also provided to make using the AutoFilter header cell easier, particularly in the Windows Forms Designer. Customizing DataGridView column header cells is not as easy as customizi ...Show All

  • Visual Studio How to make a Domain Relationship visible in a class's shape on DSL designer surface

    Hi, I whant to add a reference from Relationship to Domain class. As I undestand to to that I have to see my Domain Relationship in a class's shape on a DSL designer surface. Could somebody help me Evgeny I found some way: open .dsldefinition file in Xml Editor add <BaseRelationship> to Domain Relationship and after that it will appear as a class. So I guess I could add a reference in Xml editor and affect will be the same. The problem is: designer does not support making relationship for Domain Relationship when it's shown like link between Domain Classes and also does not allow you to make inheritance on a designer. So when you jhave done it manually and designer try to show it, it has to s ...Show All

  • .NET Development passing parameter from parent to popup

    I am having trouble passing a parameter from a label control in a popup window to a textbox in the parent window. i have tried post and get methods and queries as well but none work.am i missing something here pleasze help i found a solution. http://aspalliance.com/87 ...Show All

  • Visual Studio Team System "In Progress" state on Tasks and Risks

    Hi I am newbie to Team System but is there any reason why "In Progress" has been removed or filtered out from Task while it exists in Bug. My problem is that I have a task which can either be active or closed but what if I want to know if the task is "In Progress". I could use "In Progress" to know if somebody is working on the task Kind regards, Ayman Well, actually it doesn't exist, but you can modify the work Item type, and add the new state to the possible values, check out articles about personalization of work items template on MSDN and also on process template forums, I would recommend you download the latest Visual Studio SDK from MSDN where you have a l ...Show All

©2008 Software Development Network