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

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

byronfromwesleyan

Member List

Noorul Ahmed
Ghanshyam Singh
C_TO
alpefusk
erikkl2000
Tanzir
project2n5e0o1
imed-deborah
Clein
hansduncan
veXed
Patrick-SURFThru
L O
mykenk
Claudiu Chiorean
cmumford
jhikel
Old Fart
hrubesh
SQL New
Only Title

byronfromwesleyan's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. How can I input multilanguage in Directx?

    I try to use the sample CustomUI, but I found I can't input other language except English in the IMEEditBox,who can tell me what happens and what can I do to achieve that goal ...Show All

  • Visual Studio 2008 (Pre-release) WPF UI Sample

    i am looking for some pictures/video demos to show my boss how good a UI can look using WPF. anybody got any links. our app is not going to do mind boggling 3d stuff. ideally id like an example of a nice clean web style UI to show him. if anybody knows a resource i can show without him having to install .net3.0 please let me know I have to throw another blog article at you :) Tim Sneath - http://blogs.msdn.com/tims/ ...Show All

  • Visual Studio Team System including files fails

    Hi Im trying to add my VC++ include directories, but it won’t work... I had added the following to my tfsbuild.proj < AdditionalVCOverrides > %3CTool Name=%22VCCLCompilerTool%22 AdditionalIncludeDirectories=%22$%28SolutionDir)include%3B$%28VCInstallDir)include%3B$%28VCInstallDir)atlmfc\include%3B$%28VCInstallDir)PlatformSDK\include%3B$%28FrameworkSDKDir)include%3B$%28SolutionDir)tlb%3B$%28SolutionDir)include\wtl%3Bc:\program files\msxml 6.0\inc%22 /%3E%0D%0A </ AdditionalVCOverrides > but on the buildmachine I get an error, that it cannot find a sjvers.rc file, but it’s in the path: c:\testbuild\captia41\test\Sources\13.0x\include. Please help Regards Kim My buildlog on the buildma ...Show All

  • SQL Server BCP host-files must contain at least one column

    Hi, I need to export the output of a stored procedure to file. So I am writing a bcp command as 'bcp "exec myproc" queryout "outputfile" -S server -U user -P pwd -n -t, -r "\r\n" '. But I am getting an error 'BCP host-files must contain at least one column'. I am getting this error even if I use a format file. Do u have any idea of what I am missing in it Thanks. Hi Nathan, Thx for your reply. My stored procedure is having a 'select' stmt at the end of the procedure. In fact when I use 'osql' to execute the procedure and redirected the output to a file, I got the output. But since 'osql' is adding space after the data if it is less than the specified length, the output more or less becomes a ...Show All

  • Visual Basic Trying to use a variable for the name of a file

    I have 30 files that I have to perform the same operation on them. Instead of writing every one of them out I want to be able to substitute a variable that contains the name of the file that I want to look at instead of using the exact file name. Example: Dim DimGoalMethod As String DimGoalMethod = CCADPDataSet._Dimension1_Goal1.Rows(RowX).Item(ItemX).ToString() Want to do something like this instead: Public FileX As String FileX = "_Dimension1_Goal1" Dim DimGoalMethod As String DimGoalMethod = CCADPDataSet.FileX.Rows(RowX).Item(ItemX).ToString() Does anyone know if this is possible and if so HOW Thanks That would be correct....the member after the dataset name should be the ...Show All

  • SQL Server Does the SS Engine cache clr proc execution plans?

    Hi. When I checked the execute plan for a clr proc I wrote: Exec MyCLRProc All it had was one item "T-SQL Exec Proc".... How does Sql 2005 store the execution plan for all the sql, etc. contained in the clr proc itself Does it create a new execution plan every time a clr proc is excecuted Wondering, Thanks, Steve W. It's the same as any other ad hoc/dynamic SQL.  If the plan is parameterized it can be reused for multiple parameter values.  Otherwise, it will only be reused if the same parameter values are used.   -- Adam Machanic Pro SQL Server 2005, available now http://www..apress.com/book/bookDisplay.html bID=457 --     < ...Show All

  • SQL Server reportitems collection in a custom function

    Helo, I tried to use de global coleciton reportitems in a custom function, but it raise the following error: 'reportitems' is not a member of 'Microsoft.ReportingServices.ReportProcessing.ExprHostObjectModel.IReportObjectModelProxyForCustomCode' I can use the parameters collection without any problem in the same function. I saw in documentation that parameters, fields and reportitems can't be used in inatialization (onInit()), but I think that this is not the same situation since parameters works fine. Any idea Tanks J.Aldrin That's right, by default, custom code directly sees only a subset of collections available in report expressions. If you call a function Foo defined in custom code ...Show All

  • Visual Basic Loading a Form

    I am trying to open a form up by clicking a button I added to an existing form. Is there a way that I can add to the button event to open a form. What I am doing is I have a next button on one form - when the user clicks the next button I would like it to open up another form that I have created in the same project. Thanks DMKanz Yes, you can. Project + properties, Application tab, scroll down, Shutdown mode = When last form closes. ...Show All

  • .NET Development Create Image in VC++ 6.0

    This is an out of time question, but I don't know any other way to solve my problem. What I need is a piece of sample code , in old VC++ 6.0 style, which creates an Image from a memory buffer containing image data (as those got from an IP camera). In VisualStudio.NET 2005 and C# this is done in 2 simple lines of code: MemoryStream mstr = new MemoryStream(imageBuffer); Image img = Image.FromStream(mstr); But I don't know how to do it in Visual C++ 6.0 The problem comes from the fact I want to develop an ActiveX control (unmanaged) to show the live video of an IP camera. I already did it in VisualStudio.NET, but this way the control can only be used with IIS, while I must use Apache or Tomcat as web server. Thanks ...Show All

  • Visual Studio Express Editions NotifyIcon shows up double

    Hello, As shown here: http://jorijn.qweet.nl/screenshots/SnapShot-9112006-234734.png The notifyicon shows up double when i call my own class. Below is the code: http://paste.qweet.nl/4 Hope that someone can help me on this. Regards. Jorijn I had the same problem. Also since .NET 1.1 or so. This is also an easy workaround: set the Visible property of the NotifyIcon to false when the application closes (or the Form). ...Show All

  • Windows Networking Development Weird one - Router Death by Vista

    Here's a weird one. It seems that Vista RC2 is routinely killing my ADSL router I have a dual boot system (patched up XP Pro vs Vista RC2). Vista seems to be killing my D-Link DSL-500 like...., several times a day while Vista is running. Has anyone else noticed this I'm thinking.... some sort of weird network plug and play thing (which is disabled - by the way) RickW The symptoms sound similar. I will try disabling IPv6 too. BTW: When I went to reply.... the router had hung and needed to be rebooted . ...Show All

  • Visual Basic retreive connected users to a file on 2000 server

    How would I go about finding out who is connected to a file on a 2000 server Basically I want to know how to gain access or get the same inforamtion, using vb, as I can get in the computer management under administrative tools. The area I am talking about is the open files, or the open sessions. There I can see the users connected. I need to do this in vb so I can disconnect users to certain files as needed. Is there an api for this I would start looking at WMI in the system management classes. With this you should be able to find what you need. also if you drop over to the Scripting Center on TechNet you will find some vbscripts that use wmi, these should be easy to convert. ...Show All

  • SQL Server Stacked column

    Lets say I have a column report with 6 columns per category, e.g. showing 6 product types by month on a report. Is it possible to make 3 of the columns into one stack column and leave the other 3 as normal columns It sounds like you are asking about partially stacked column charts, right The effect you are asking for is not supported in the builtin RS charts. The closest you can get for the builtin charts is to use the stacked column chart mode and then for 3 of the 6 items, set the "plot data as line" option (i n Report Designer, go to the Chart Properties dialog. Click on the Data tab, select the data point you want to make a line, click 'Edit..'. In the chart value dialog, click on the ...Show All

  • Visual Studio Team System Notification for Assigned Persons

    Hi all, I need to have the notification service when the work item is asssigned to somebody......for that i have created the website which plug into the project portal....so..any coding inside the website would be better....so that i can integrate within the ASP.NET website...itself... i checked the following urls...but that is out of the box which is having separate windows forms...which will generate XPath expressions - Naren's Blog... and vertigo software created something like creating the virtual directory and using bissubscribe tool.... http://blogs.vertigosoftware.com/files/AssignedToMailSender-Vertigo.zip Thanks, Kathir Kathir, Sorry for the late response.  The following blo ...Show All

  • SQL Server how do i look through the log to see updates to tables in sql sever 2005?

    hi. changes were made to a dababase and we need to read the log file to see how much exactly was changed and what. how do i read the log file in sql server 2005 with out buying 3rd party software I posted a reply in http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=655927&SiteID=1 ...Show All

©2008 Software Development Network