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

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

developer00x

Member List

ardmark
SolarWind
John.Doe
Abhishek bhadouria
TommieJ
RHolt
titote
museicon
gafferuk
coconut113651
BS.Chen
hellomcv
Dottj
apolon_vn
adorer
PedroCGD
CACUser
Marie-Thérèse
daydreamsy2k
R Raghu
Only Title

developer00x's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Blender

    Can blender be used with XNA GSE Just wondering b4 i go and get my new comp this week because my desktop crashed... I am quite sure in blender you have to apply transformations and scaling, there is an option somewhere to do this. ...Show All

  • Visual Basic Math Integration/Derivation function?

    Hi, does VB.NET include the Mathematical Integration/Derivation functions in the Library If so where are they, I couldn't find them If not, any third-party libraries you would recommend Thanks in advance. The system.Math class p rovides constants and static methods for trigonometric, logarithmic, and other common mathematical functions. To get the integration and derivation functionallity you will have to program that yourself or get readymade 3rd party classes: http://www.extremeoptimization.com/QuickStart/AdvancedIntegrationVB.aspx http://sharptoolbox.com/categories/math-logic-ai-rules Or google for the thousands of others out there...you may wish to search codeproject http://www. ...Show All

  • Windows Forms Year calendar control to select months

    I was rathered surprised I could not easily find a control that displayed an annual view to allow users to select time periods by _month_, rather than specific day dates. The regular DateTimePicker or Infragistics UltraCalendarCombo just extend off the regular month view showing specific days, and there is no mode out of that granular a selection. Has anybody seen a higher-level time control to let users just select month/year periods thanks We simply just use a Two ComboBoxes . You could put this into a Usercontrol in itself. But it is then very simple for the use to select a month and year. James ...Show All

  • Visual Studio bing handle error

    heya im making a appoitnment booking system as part of my college project however i made the first version at home, then copied it to a usb key, then transferred it to the school system then back again, and now it doesnt work. i get an error stating: error while trying to run project: unable to start debugging the binging handle is invalid can anyone help ! See this post for the answer. This is also covered in the FAQ http://blogs.msdn.com/habibh/archive/2005/11/10/491572.aspx John ...Show All

  • Visual Basic How to customize Commands through code

    Hi , 1) Go to Tools->Customize. 2) Click on the Commands tab. 3) Select File from the Categories, and New File from the Commands. 4) Drag “New File” onto the File menu. I want customize the VS IDE commands using code....i need above functionality using code. pls help me how to do this .............. You can extend the IDE environment two ways...one is creating an add-in and the other is using the macro environment...both of which you will need to take a look at these namespaces: EnvDTE, EnvDTE80 and Microsoft.VisualStudio One of the best ways to learn the enviroment is toake a look at the Utility samples provided.... Sub ListProj() Dim project A ...Show All

  • Visual Studio Team System Code Analysis Check-in failed. The Code Analysis Policy requires you to check in through Visual Studio with an open solution.

    Hi I have implemented Code Analysis on my Team Project. I am getting the below policy error when i try to check in ".sql" files. Code Analysis Check-in failed. The Code Analysis Policy requires you to check in through Visual Studio with an open solution. Work Around I found: Open any solution in VS IDE eventhough it is not related to .sql file and try to check-in the .sql file. Result No policy warning thrown and succesfully check-ins. Can i know is there any direct solution where i can check-in .sql file just whithout opening unnecessarily any unrelated solution. Thanks Murali When you have the policy configured, it will check any checkin you make, I don't know more direct ...Show All

  • Visual Basic World clock

    Hi, I am busy making a world clock program showing 5 clocks from around the world. I have a coupel of problems: 1. How do I substract hours from the system time Or is there a way to take GMT and substract/add to that time 2. If I run the program it will show my local time, but if someone from an other part of the world runs the program it will show his local time, and so the offset for other countries might be wrong... How to correct independent of location Thx for any tips you might have These forums are for .NET prograsmming questions only. VB6 is offtopic for these forums. Please see any of the following links for further help: Useful Links Visual Basic 6.0 on MSDN Library V ...Show All

  • Audio and Video Development DMOs Operability in Media Foundation ?

    I thought I remembered hearing somewhere that DirectX Media Objects could be directly used by Media Foundation. However reading the current docs for Media Foundataion Transforms ( http://windowssdk.msdn.microsoft.com/en-us/library/ms703138.aspx ), it sounds as if you can implement IMediaObject on an object that implements IMFTransform but one cannot directly use DMOs in Media Foundation. Is this correct Thanks! Scott Hi Scott, You're right: The Media Foundation pipeline is prepared to handle Media Foundation Transforms (MFTs), not DMOs. And you're also right that if you write a wrapper for the DMO that you want to use that translates IMFTransform calls to IMediaObject calls, you should be good to ...Show All

  • Visual Basic The Basics about SQL Server: JUST the Basics

    For now I don't anticipate needing large database storage from SQL Server (Express 2005), and based on my programming aspirations I doubt I will ever need a large database. All I need SQL Server for is to store a few settings. As of now I want to store just a few text items in SQL Server. (I've already done .txt files but that seems to take extra work and is less unorganized, and I need several txt files). What command would I use to write one piece of text and retrieve that same piece of text Is there anything else thats important that I should know before going about this I'm guessing something like this: My.Computer.FileSystem.Writealltext(database.mdf, "textbox1.text", False) But I would need to refer to a specific row and ...Show All

  • Visual Studio 2008 (Pre-release) InlineUIContainers not firing any events in the RichTextBox

    Hi, Up until the June CTP, I was able to trap events from elements inside a InlineUIContainer, e.g. // Wherever you create the InlineUIContainer Canvas can = new Canvas(); can.Width = 80.0; can.Height = 20.0; can.Background = Brushes.Blue; can.PrevewMouseMove += ........ InlineUIContainer uiCon = new InlineUIContainer(can); This used to work find as any delegate added to the elements (even though the InlineUIContainer was "Disabled") would fire. Now it doesn't. Can someone please help me Thank you very much, Jaco That is very strange, so is there any reason why the control inside the InlineUIContainer can't be disabled, but still fire events (I know its a b ...Show All

  • SQL Server creating a user stored proc

    I'm running mssql 2005. And any stored procedure I create in the master database gets created as system procedures since recently. I have created procs in the master database as user procs previously. As sp_MS_upd_sysobj_category is not supported in mssql 2005, does anyone know why this is happening.. or how I can rectify it Thanks I don't actually want to create system procs.. I want to create this proc in the master database and do not want it to be a system proc.. just a normal user proc.. I was able to do so since recently..But I think some thing has gone wrong and now when ever I create a proc, it gets created as a system proc... I did run the sp_MS_upd_sysobj_category with 2 but I understand that it's obsolete now...Any idea ...Show All

  • Visual Basic SetWindowsHookEx Always returns Zero

    I am using VS 2005 8.0 I do not know why the following code is always returning zero for the SetWindowsHookEx. I have unchecked the "Enable the visual studio hosting process" in the projects debug properties but it always passes the If _mouseHook.Equals(0) condition and the Hook is not initiated. Can anyone tell me why Below is all the code on the form. Thanks. Imports System.Runtime.InteropServices Public Class Form1 Inherits System.Windows.Forms.Form Private _mouseHook As Int32 = 0 Private _mouseHookProc As CallBack Private _appThreadID As Int32 Private Const WH_MOUSE As Int32 = 7 Private Delegate Function CallBack( ByVal nCode As Int32, ByVal wParam As ...Show All

  • .NET Development Regarding Two Way SMS

    Hi All, I Thulasi and studying final B.Tech.During the my Final Year Acedamic project I need some stuff regarding Two Way SMS can any one give me some stuff. Q) I would like to develop a application with SMS Allerts.How to send SMS from cell phone to servers and How to send SMS from server to cell phone irrespective of cell network. Can any one tell me detailled information. My email id 's : thulasi.thota@hotmail.com,thulasi.thota@gmail.com Thankyou. ...Show All

  • Visual Studio Is database necessary to generate report

    Hello, Members I want to generate a REPORT when user click the submit button.Clearly... I will place two textboxes with Name Ph No when I click SUBMIT button It must generate a report displaying two fields. Is database necessary to generate report Help me..please... Sincerely, bharath. If you do not want data from a database you do not need one when creating the report. You can just choose a blank report, and cancel the database part. ...Show All

  • Windows Forms Adding a ComboBox to a bound DataGridView

    Hi, How can you add a ComboBox to a bound DataGridView I know how to add a ComboBox if the DataGridView is NOT bound using something like: cbo = new DataGridViewComboBoxCell (); and then populating the ComboBox, construct other row columns and finally perfrom a dataGridViewx . Rows . Add ( dataGridRow ); This does not work if the DataGrid is bound - Hence my question. Thanks for your help. Hi, So, what exact you need, could you describe it in details P.S. To add a ComboBoxColumn into or ouside seems to be feasible anyway, just as I mentioned before. Thank you ...Show All

©2008 Software Development Network