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

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

MeAndYou

Member List

bluesky168
Udii
BhuttCrackSpackle
wBob
Zia Khan
George Homorozeanu
ronnniea
fillycream
laiseng
Gerrit L
Alex-MyRpg
Joel Martinez
Delusion7
Kirk Lipscomb
Jive Dadson
SimonOng
Pedro Felix
perstam
Sandro Haupt
Sal1
Only Title

MeAndYou's Q&A profile

  • Visual Basic Where is the Chart class?

    I'm trying to add a chart object to a windows form. Did this once a long time ago (VB6). But I can't find the chart class. I gather I need the Microsoft.Office.Tools.Excel name space, but I can't find that. I am running VS 2005 standard (and I am begining to suspect that the chart class is not available in the standard edition). Hi, If you install vb6 in your computer then I'm quite sure that you can use the Chart control available in VB6 in your .Net form through the COM components. Or you can search for a third party control. Or you can try to find the Ocx that VB6 is using for its chart control then register it through regsvr32 in your computer and add it through the COM components. cheers, ...Show All

  • Visual Studio Express Editions numeric updown

    i was wondering if there was a way to save the numericupdown digits into a variable, so that i can later do math with them The NumericUpDown control tells you what was entered by the user with the Value property. That is a numeric type, System::Decimal specifically. A little heavy-handed, just cast it to an int (or double) to do the math. ...Show All

  • Visual C# VSA

    Hi, I am working on a Windows app and I'd like to add the Macro creation functionality, I mean, something like the VBA in the Excel. I have been looking the MSDN and around Internet and I have worked on VSA but I have seen in the documentation that the VSA is deprecated. Which is the future What can I use to develop this feature Thanks! Possibly you need Visual Studio Tools for Applications http://msdn.microsoft.com/vstudio/extend/vsta/default.aspx ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Questions about using xbox 360 controller on my pc.

    I have a few questions about using the xbox 360 controller on my computer. first of all, on the "how to test the xbox controller for windows" help page, it says when you run "joy.cpl" it should give you a game controllers window that says "xna gamepad", mine just says gamepad (controller), does that matter i want to set my controls so that x = button1 instead of 3, a = button2 instead of 1 and b = button 3 instead of 2. is there a way to do this i've been playing madden 2003 with the gamepad and some issues i've had is that the controls keep resetting and won't stay the way i want them to. it also won't let me configure the right trigger and left trigger in the game, it doesn't respond when i press them. are t ...Show All

  • Visual C++ No compile errors, only have one warning message

    The following code is put in a header file which is called Record.h...... class Record { private: char name ; Record *pNext; public: Record() { pNext = 0; } void setName(char *nm) { strncpy (name,nm,5); name[5] = '\0'; } char * getName() { return name; } void setNext(Record *pC) { pNext = pC; } Record * getNext() { return pNext; } }; The whole programme can be compiled, but only one warning message is shown as follow: Warning 1 warning C4996: 'strncpy' was declared deprecated Can someone tell me more detail, please Thank you!! Dicky The complete warning is: warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_ ...Show All

  • Visual Studio Express Editions VC++ 2005 build error at CMD start up it says MSVCP80D.dll was not found and said to reinstall Visual After I reinstall same...

    VC++ 2005 build error at CMD start up it says MSVCP80D.dll was not found and said to reinstall Visual After I reinstall same error occured. How to fix it or get the dll and put it where it belongs. I have exactly the same problem. In my case it goes through if I have just restarted my computor. Then it works fine. Lets say you want to open a win32 console application. Try to change the _tmain to main by deleting the "_t" from it before you compile. I find that it works after that even if you change it back. ...Show All

  • Microsoft ISV Community Center Forums Unable to set Xvalues property error

    Hello, I have been trying to write a macro in Excel VB for creating scatterplots using sorted data in a worksheet. When I read in this data in the form of x and y arrays and then try to create a plot from this data using the Xvalues/Values properties of the series on a new scatterplot, it gives me error. Funny thing is that for a particular column only this error is present. For other columns, there is no error. I have read past two threads on this problem and have ensured that both x and y arrays contain only plottable data, meaning that there is no element of x/y array which is empty or not defined. Here is the part of the code that causes this problem. dknt = 0 For l = 0 To d_rows - 1 If dta(i, m, 0, j, l) <> &quo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Direct3D Textures

    I am unable to create a Texture from a bitmap, but everything else works correctly. The same code works perfectly in Visual Studio 2003. DX3D = New Device(0, DeviceType.Hardware, MainForm.picDrawArea, CreateFlags.SoftwareVertexProcessing, PP) GetTexture = New Texture(DX3D, bmp, Usage.SoftwareProcessing, Pool.Default) I was wrong about Streams in VBExpress. There is no documentation in VBexpress or Framework 2.0, but all the Stream Classes exist. However, they don't work either. ...Show All

  • Visual Basic Calculations

    This is totally differetent from Access I have got a field's property set to money I need to divide that field by 2(sounds simple) but VB is haven a fit. I am used to me.text1= me.text2 / 2 its saying that / is not defined how do you divide and multiply in VBE Davids Learning Im learning so bear with me here me.textbox2 is an user input, tied to a field with the properties set to money me.textbox1 is what the answer would be. when you use single, what does that mean when you use string, does that change the answer to string would it be better to be something else if you need to take the answer and add me.textbox2 back to it how would you do that and show it as cur ...Show All

  • SQL Server Deployment

    I'm working through Ch 3 of "SQL Server 2005 Reporting Services Step by Step" by Stacia Misner, published by Microsoft Press, but I can't get the example report in Ch3 to deploy. I get a long error message, which says this: TITLE: Microsoft Report Designer ------------------------------ A connection could not be made to the report server http://localhost/ReportServer . ------------------------------ ADDITIONAL INFORMATION: Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'. The request failed with the error message: -- <html> <head> <title> SQL Server Reporting Services </title><meta name="Generator" content="Microsoft SQL Server Repor ...Show All

  • Software Development for Windows Vista WWF Persistance Status

    I have a workflow which having a while loop inside that I have an activity called Handle External Event, which will receives inputs from some windows application. When ever inputs come I used start a workflow and load the workflow for current situations. I have situations like, some time I have to hold the current workflow instance (dehydration) and start new workflow instance. WF internally updates the workflow persistence details into Workflow – DB. When ever workflow executes, I have to store the input values into my application database. So I am calling a database call( call to Data access Layer) from my External activity. The problem I am facing is after updating my application database workflow is not at a ...Show All

  • SQL Server SSMA Migration Tools

    hi all I am Facing problem for using this tools (Migrate from Sybase to SQL Server 2005) when i trying to connect to Sybase on Tools EM, this error apper Error Collecting Data . See the Inner Exception for Details please anyone can help in this issue or advice me what can i do thank's You can choose from two Scenarios -Migrate Using SSMA but you need to restore your database to Sybase v.12 or later I don’t know why!!!!! -Create DTS or Integration Services to do all steps start from create Script (database) till Migrate data good luck ...Show All

  • Smart Device Development how to minimize the form?

    how to minimize the form. and develop platform is c# .net cf hi JR I have tried Form1.Visible = false; Form1.Refresh(); when I type Form1 dot , in the list of the Form1, there are no Visible and Refresh() appeared. Why Thank you ...Show All

  • Visual C# Embed Excel in WebBrowser on DotNet Form

    I am able to embed Excel into a WebBrowser on a dotnet form on my Dev machine but on a client machine an instance of Excel starts in it's own window outside of my form. I have use the MS example from MSDN and get the same result on non-Dev machine ISomeone remarked it maybe due to IE setting Does anyone know what the setting are and if they can be set on client machines to get my Dev and Non-dev machine to act the same Thanks Browser = new WebBrowser(); Browser.Dock = DockStyle.Fill; Browser.Location = new System.Drawing.Point(0, 0); Browser.Name = "Browser"; Browser.Size = new Size(223, 443); Browser.TabIndex = 0; pnlPreview.Controls.Add(Browser); this.ResumeLayout(); Browser.Url = new Uri(sPath + " \\myxls.xls " ...Show All

  • .NET Development Convert image to pure Black and white

    I want to convert a tif or jpg file into pure black and white after searching in internet, I find a way to convert a picture to gray scale http://www.bobpowell.net/grayscale.htm but could I modified it to convert to black and white I have no idea about anyone could me THX This is slow but it works... it's probably not suitable for production code due to the slow speed but should demonstrate the principle. static Bitmap ConvertToGrayscale(Bitmap source) { Bitmap bm = new Bitmap(source.Width, source.Height); for (int y = 0; y < bm.Height; y++) { for (int x = 0; x < bm.Width; x++) { Color c = source.GetPixel(x, y); int luma = (int)(c.R * 0.3 + c.G * 0.59 + ...Show All

©2008 Software Development Network