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

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

Ceres629

Member List

Edmundas
enric vives
Sinsaru
Reza Bemanian
Frank Miller
stswordman
huysmans
forrestcupp
gafferuk
NetPochi
Randal Greene
simmons
Larry Smith53314
wolf777
Alex Farber
Dave Dumas
Izzz
Zia Khan
Natee
shawn957376
Only Title

Ceres629's Q&A profile

  • SQL Server problem useing Stored Procedure form vb.net

    i have created a stored prcedure but is always give error : and please check the ways is correct using stored procedure "Procedure or Function 'Add_Cb_Entry' expects parameter '@Date' , which was not supplied." Dim SqlPrm As SqlParameter Dim SqlCmd As New SqlCommand With SqlCmd .Connection = SqlConnection 'this is my connection setting .CommandText = "Dbo.Add_Cb_Entry" .CommandType = CommandType.StoredProcedure End With SqlPrm = SqlCmd.Parameters.Add( "@Cashbook_Id" , Nothing ) SqlPrm.Direction = ParameterDirection.Output SqlPrm = SqlCmd.Parameters.Add( "@Date" , SqlDbType.DateTime, 8, TxtDate.Text) SqlPrm.Direction = ParameterDirection.Input ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA certification exam

    I apologize if this is not the right place to ask, but I've seen some requests for DirectX certification, for which there were(/are) no plans, and I've been wondering this about XNA since I first noticed it on the Startpage of VB express: Is there going to be an XNA certification exam, as part of a current development cert, or a MCGD cert for example (covering Net2.0 framework + C# + XNA ) It would justify spending some more time on learning all the ins-and-outs rather than 'just' what I need, and I'd love to see some MS Training Kits on XNA... If there is, can we expect to see a beta around the holidays or is this something for on the long term  I'm sure there will be a demand for such a cert from students, professi ...Show All

  • Windows Live Developer Forums Dynamically load API JS file kills IE6

    I'm trying to load the veapi.ashx file dynamically, but I'm having a big problem with IE6, please test the following code out in IE6, you will need to clean your cookies and cache, to do that in IE6 you need to go to Tools --> Internet Options -->Delete Cookies & Delete Files.. and close all your IE, and start IE6 with these code.. <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script> var map=null; function include_js(file) { var html_doc = document.getElementsByTagName('head').item(0); var js = document.createElement('script'); js.setAttribute('type', 'text/javascript'); js.setAttribute('src', file); html_doc.appendChild(js); js.onre ...Show All

  • Visual Studio 2008 (Pre-release) WPF Data Binding and Threading - Repost

    I am data binding XML (XmlDataProvider) to the Content Property on a Label. When the XML changes the Label is updated. This works if the Xml is updated on the UI thread(I used DispatchTimer). If I use a worker thread (Thread.Timer), the label content does not update and I do not get any exceptions. I can get things to work if I use Dispatcher.Invoke and update the Xml in the delegate. Is ther a way to update the Xml on a worker thread without having to invoke I will post my code below. Steve < Window.Resources > < XmlDataProvider Source = " ..\..\Items.Xml " IsAsynchronous = " True " x:Key = " ItemsXml " /> </ Window.Resources > < Grid > < Grid.ColumnDefi ...Show All

  • Visual Studio 2008 (Pre-release) Working with an XMLDocument(LINQ)

    Hello, I want to work on an XMLDocument using LINQ. Let me to explain the scenario briefly. I have an XML file like that: <cities> <city name="Sivas"> <date value="01.06.2006"> <time id="0">some value</time> <time id="4"></time> <time id="5"></time> </date> <date value="02.06.2006"> <time id="0"></time> <time id="1"></time> <time id="4"></time> <time id="5"></time> </date> </city> <city name="Aachen"> <date value="01.05.2006"> ...Show All

  • Visual Studio Team System TFS works with local machine accounts but not with domain accounts

    Currently In order to create a team project and add files view reports in report manager etc. I need to have a local user account created. My domain account which I use to get into the physical server does not work and when I try to add this account to a project with permissions it throws an error that says something about not being in domain. Can somebody help steer me in the right direction on what to look for and maybe reconfigure to get this working. Thanks Aaron Thanks for the hlep Luis. At this point since it is a local user account and the installation has been done. What can be done to move forward to allow domain users access. Can a TFSService account be created in our domain. Do we need to ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Need a Mentor

    Hey I was wondering if anyone would be able to help me make a game with XNA I want to make just a simple little top down move car around game. But I can't figure out how to start (I did the tutorials) So I was hoping one of you fine gentlmen and women would be able to help me on msn or aim or somthing That way its live instead of continually posting back and forth on the forums. Thanks Very Much James Hi James, Until the beginner XNA books start to hit the shelves (probably in the May - June timeframe would be my guess), I would look to a lot of the websites that have online tutorials posted. XNATutorials.com any many others have either text or video tutorials that really do a pretty good job of intro ...Show All

  • SQL Server Does Drill Through work fine in AS2005?

    Hi,     I had designed several cube in AS2005. And I counfused by some problem of drill through.   1. The large amount of dimensions makes drill through broken Drill Through works fine in the cube that includes 20 dimensions. But, In the same cube, the amount of dimensions is increase to 25. The drill through works no response...   2. In some case, the drill through do not response correct row data. A MDX syntax that response measure is 8 (In my project, that means there would be 8 row data in the fact table.). And I use the same mdx syntax to drill through, that only response 1 row data! Any idea or it's the bug thanks, D ...Show All

  • Audio and Video Development Using IMFMixerBitmap

    I have a DirectShow application that uses the VMR's IVMRMixerBitmap interface to blend a bitmap with a video. Before using it I understand you have to call IVMRFilterConfig's SetNumberOfStreams method to put the VMR into the correct state, and so far it works fine :) So now I'm trying to use Media Foundation and I've found corresponding interfaces such as IEVRFilterConfig and IMFMixerBitmap. Is the operation of these fairly similar ie. do I need to call IEVRFilterConfig's SetNumberOfStreams() before I can use IMFMixerBitmap I've been trying to do this and using IMFGetService's GetService() to try and get the IMFMixerBitmap interface afterwards but without much success - I keep getting a return code of 0xc00d36ba.. Is there anythin ...Show All

  • Visual Studio 2008 (Pre-release) Binding Lost after changing Image.Source

    In my code, I have a WPF Image control bound to a property of an entity class. The binding is configured so that source updates are explicit: <Image Source="{Binding Path=ImageData, UpdateSourceTrigger=Explicit}" ... /> The application allows the user to change the image displayed by displaying a file dialog, then setting the Image.Source property to the selected image file like this: this.imageControl.Source = new BitmapImage(new Uri(selectedFileName)); When the user selects to save the current info, the code calls the following to explicitly update the binding source of the Image control: this.imageControl.GetBindingExpression(Image.SourceProperty).UpdateSource(); an exception is thrown because the GetBindingExpress ...Show All

  • Visual C# compile incompatibility: "/mt" and "clr"

    I am trying to write a C++ wrapper for my Csharp code -- essentially to go from "unmanaged" to "managed" code. I used some samples on the internet as a basis but have hit some issues when compiling in Release mode v. Debug mode.... It works fine in Debug mode ! It fails in Release mode : " D8016 " /clr and /mt are incompatible (etc.) I am using VS2005 and it seems like some things have changed with respect to the "clr" compile switch. It's frustrating because it works when compiled in debug mode. I have tried everything to resolve the compatibility issue, but it seems like VS2005 just overrides the options at run time and forces "/mt" on me (even though I change it to "/md&q ...Show All

  • Visual Studio Express Editions MYSQL and C++

    int yb(){ MYSQL *conn; conn = mysql_init(NULL); mysql_real_connect(conn,"*****","*****","*****","*****",0,NULL,0); mysql_query(conn,"SELECT * FROM *****"); // Need the Help to get the data from the query mysql_close(conn); return 0; } I have that code and it works great, it runs though the .exe and shows nothing, a blank cmd. I need to know how to get the results, i searched mysql.com and got this: mysql_store_result(); and mysql_use_result(); They told me nothing on how to use those. Any help would be great! Thanks Player 11 wrote: int yb(){ MYSQL *conn; conn = mysql_init(NULL); mysql_real_connect(conn,"*****","* ...Show All

  • .NET Development XML databinding to a comboBox in windows forms

    Is it possible to bind information from an XML or app.config file to a comboBox in a windows application If so can someone point me in the right direction I have tried everything I can find but maybe I am just looking for the wrong thing. You don't need dateabase to create and fill up DataTable. You can create DataSet -- sort of in memory database. ( http://msdn2.microsoft.com/en-us/library/system.data.dataset.readxml.aspx ) In general if you have any data structure that you can bind to comboBox you can read information from XML and put it to this structure/class. ...Show All

  • Visual Studio Express Editions Passing Variables to Shell command

    Hi, I would like to start a program, but also pass a variable to that program. For an example System.Diagnostics.Process.Start("c:\prog\test.exe"); But I dont know how to give test.exe the extra info For an example: c:\prog\test.exe test.txt Can anyone help with this Sure. you can: System.Diagnostics.Process.Start (@"C:\prog\test.exe test.txt"); or System.Diagnostics.ProcessStartInfo theProcess = new System.Diagnostics.ProcessStartInfo(@"C:\prog\test.txt"); theProcess.Arguments = "test.txt"; System.Diagnostics.Process.Start(theProcess); does this help ...Show All

  • Windows Forms Mouse Leaving/Entering Bounds of Panel Covered in Other Controls?

    I have a panel on a form that is completely covered in other controls (and it isn't determined until runtime which and where those controls are on the panel). There is absolutely 0 space of the panel which is exposed. I need to find out when the mouse enters and leaves the bounds of this control. The MouseEnter and MouseLeave events don't work because for those to fire, the mouse has to be directly over the panel (and instead it is directly over the panel's controls). I've printed out the WndProc messages, and I noticed that sometimes WM_NOTIFY or WM_SETCURSOR messages are fired, but it is sporadic. It seems like if I move the mouse fast, those events don't ever get fired. Does anyone have a tip for how to handle som ...Show All

©2008 Software Development Network