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

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

SoopahMan

Member List

Hassan Ayoub
GaV56
Bilal Haidar - MVP
Souti
vgrigor
Andrew Stanford
shihad
ringerxyz
microsoft_programmer
KlausLeth
christophw
espinosa
Scott Boyd
Lawrence 007
Behrooz PB
xRuntime
Wayne Sepega
leonreet
Alexander72
Santosh A H
Only Title

SoopahMan's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Errors in Linking Direct x9 SDK .h &.lib

    Good Day I want to ask this question that many forums cann't answer it... I installed the Direct x 9 SDK ,and I use Visual Studio.net 2005 ..When I run any Tutorial(Like Tutorial 2: Vertices ) the following Errors occurs : ------------------------------------------------- Error 1 error LNK2019: unresolved external symbol _Direct3DCreate9@4 referenced in function "long __cdecl InitD3D(struct HWND__ *)" ( InitD3D@@YAJPAUHWND__@@@Z ) Vertices2.obj Error 2 fatal error LNK1120: 1 unresolved externals Debug/Vertices2.exe ----------------------------------------------------------------- and the out put is: ----------------------------------------------------------------- 1>------ Build started: Project: Ve ...Show All

  • Software Development for Windows Vista Where is the WWF download needed for WSS 2007?

    I am having a real issue here trying to get either WSS or SPS 2007 up and running in my VMWare enviroment, I have everything configured, IIS, .NET, ect execpt for one major piece of the puzzle, Workflow Foundation Beta 2 or greater! I have been googleing and searching M$ site now for 3 days and no luck....can someone help me out I have downloaded the extensions for .NET but that is not what I need as the installer says the same thing everytime. Setup is unable to proceede due to the following errors: This product requires Windows Workflow Foundation Beta 2 (build 3.0.3807 or later) Please refer to the readme file for instructions on how to obtain these pre-reqs. The readme has no helpful information for this issue. Thanks! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Crazy Hiccups

    Any general guidelines for looking into and dealing with crazy hiccups on X360 Every minute or so there'll be a good 0.5 - 1.0 second lockup followed by business as normal. Garbage collection runs a lot faster than that, like several times per second, right Thanks. Thanks! Now, I'm trying to run the remote performance monitor, but here's the problem evidently (from the log): XNARPM.exe Error: 0 : RemoteDeviceManager.LoadPluginAssembly Exception: Could not load file or assembly 'RemoteToolsFramework.LocalPackage' or one of its dependencies. The system cannot find the file specified. XNARPM.exe Error: 0 : RemoteDeviceManager.LoadPluginAssembly Exception: Could not load file or assembly 'RemoteToolsFramework.RAPIPackage' or one of its ...Show All

  • Visual Studio 2008 (Pre-release) XamlWriter, MarkupObject How to ?

    I'm trying to serialize a tree of object in xaml in some designer app. some node of this tree refers to the same reference that i added to a resource dictionnary. XamlWriter won't serialize the reference to the dictionnary resources as a StaticResource + ResourceKey but i understand reading this post : http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286265&SiteID=1 that this should be possible using MarkupObject and modifying the ouput for some node. let say : Transform3DGroup TG1 = new Transform3DGroup (); Transform3DGroup TG2 = new Transform3DGroup (); TranslateTransform3D ts2 = new TranslateTransform3D (); TG1.Children.Add( new TranslateTransform3D ()); ...Show All

  • SQL Server Replicating Schema Changes

    Hi there, I'm using Sql 2005 merge replication and I have noticed something, I'm not sure if this is true or not:... My publication is set to replicate schema changes (replicate_ddl = 1). Now, I have noticed that schema changes are only replicated if the current snapshot is valid. Is this right If so why My next question carries on from the first. If I'm about to run a TSQL script on my publisher that will add a column or two to a published table, how do I ensure my snapshot is valid inorder for the ddl changes to be replcated Should I be using: EXEC sp_mergearticlecolumn @publication = <publicationname> , @article = <article name> , @force_invalidate_snapshot = 1 , @force_reinit_subscriptio ...Show All

  • Visual Studio 2008 (Pre-release) WPF job exchange forum/community anywhere?

    Does anyone have any recommendations as to how to go about recruiting developers for work (and finding jobs) on WPF I have tried to seek candidates the usual routes (users' groups, local advertising, etc.), without much luck. Is anyone aware of a forum or community for exchange of jobs/resumes that is specific/related to WPF. I haven't seen any posts around here on the subject, so while I haven't found any forum guidelines stating that job postings aren't welcome, I presume there's an unwritten rule that keeps this subject off the forum. Anyhow, the Windows Presentation Foundation is still an early technology, and I presume many of the "early adopter" developers frequent this forum. I would think an exchange of jobs and res ...Show All

  • Visual C++ Calculation of power by means of Recursion

    hi, i calculated the power of a number with the help of a recursion: [code] double power(double x, int n) { double product; int count; if (x==0) assert(n>0); if(n >= 0) { product = 1; for (count = 1; count <= n; ++count) product = product * x; return product; } else return 1/power(x, -n); } [/code] But now i want to rewrite this function in order to ensure that the time to computer power(x,n) is only log(n). I think i need to use this formula: x^2n = x^n x^n. But i do not exactly understand how do i have to redefine this function, has anybody here some hints for that... :( matti   mattii wrote: hi, i calculated the power of a number with the hel ...Show All

  • Visual Studio 2008 (Pre-release) Creating custom PenLineCaps

    Hello, I want to create pen line caps of Arrow shape (which unfortunately is not provided in the PenLineCap Enumeration). The LineCap will be put on the Lines that I draw by either using System.Windows.Media.Drawing or System.Windows.Media.Shapes.Line class. How do I go about it Any suggestions... Thanks in advance. Best Regards, Rohit ...Show All

  • .NET Development Find a folder's location problem

    I try to find a folder located on my C: which maches a specific name using: Directory.GetDirectories(@"C://", "folders name", SearchOption.AllDirectories); but when it checks a folder that has no access I got an interruption. System.UnauthorizedAccessException was unhandled How to solve this problem use this event to handle unhandled exception AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler( CurrentDomain_UnhandledException ); -Thanks Mahesh ...Show All

  • Visual C# Byte Array size.

    I'm sending a video frame from a server to a client. Now I know what size Byte array I should declare on the server side in which I'll store the picture and send it, however, I dont know what size array I should declare on the client side. Is there any way of finding out exactly how much data is coming in before i declare the array in which data will be stored It proving impossible to display that picture. One more thing, should i worry about the picture/frame header No Header is not a problem as far as you send complete bytes of image. Try this: Byte [] countbytes = new Byte [ 8]; int noofbytes = s.Read(countbytes, 0, countbytes.Length); long size = BitConverter .ToInt64(countbytes, 0); Byte ...Show All

  • Software Development for Windows Vista Creating Execution Contexts

    I have a sequential workflow and 3 child activities. Now my goal is to make my workflow execute again from activity 1 when I'm finishin to execute the second activity (return back). What I'm doing to achieve that is overriding the Execute method on my workflow to provide some custom behavior and bind to the Closed event of each workflow. Like this: protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext) { foreach (Activity activity in this.EnabledActivities) { if (activity is ControlFlow.ControlActivity) { ControlActivity controlActivity = (ControlActivity)activity; controlActivity.Closed += new EventHandler<ActivityExecutionStatusChangedEventArgs>(controlActiv ...Show All

  • Visual Studio Express Editions Will this app work with C# 2005

    http://sourceforge.net/projects/dotnetcommlib/ Downloaded it, the wizard "upgraded" it. I'm so now to C# Exp... How do I actually produce something I can run I've tried F5 and F6, and get a "build succeeded", but can't seem to go any further. Not sure what you want me to conclude from that listing. I don't see a Program.cs so there's almost surely no application. Just the library code. ...Show All

  • Visual Studio Get Project Reference Sample Code

    Hello... I need a Sample Code for get a Project reference of a Web Service Project... Thanks CarlosMag Hi Carlos, Unfortunately, the DteHelper provided with GAT won't work against Web Services or Applications; without being able to use this helper you would need to write your own, iterating over all projects found in the solution and checking its Kind property to discover if you're handling with a Web Service or Web App. HTH, -Victor. ...Show All

  • Visual Studio Express Editions CSV as Program Structure Recipe?

    Sorry I am quite new to VB. I have gone through, what seams like tons of postings, but I am still having a hard time with this one. I am creating a Conversion / Common Math Equasions program. I was able to get it to work pretty good, but the problem I have is that for one it is fairly slow, and a couple of friends like it but they requested different interfaces from what I like, and adding additional equasions and things is a real pain in the but because everything is coded. I thought that perhaps I could use a CSV file (or somthing simular) rather than having to run SQL. Doing it this way I figure when I need to add additional things (equasions, factors, ect), I just have to add it to the CSV file, or even the end users can add thier o ...Show All

  • Visual Studio Getting "EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'"

    Hi, We just migrated to VS.Net 2005 and running into this issue during debugging. The problem is that when I run our app in debug mode, we get an error that says "EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'". We never had this issue before when we worked with VS.Net 2003. I did some research about the issue. There are people believe that this is caused by having "Enable SQL Server debug" checked in the project property. But I double checked and none of our projects has that set. What's more strange is that when I go to the "master" table of the database I am accessing, there is no stored procedure named 'sp_sdidebug' in there at all! So I can't even add user/permissions ...Show All

©2008 Software Development Network