Software Development Network Logo
  • SQL Server
  • Visual FoxPro
  • VS Express Editions
  • Visual C++
  • Visual C#
  • Smart Device
  • VS Team System
  • Visual J#
  • Windows Vista
  • .NET Development
  • Architecture
  • Visual Basic
  • Windows Live
  • Game Technologies
  • Visual Studio

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

mam282

Member List

ozan celikada
_Ben_
Triumph69
PKetteringham
Wayne Gibson
jimmybon
Bill Bickford
KrisLa_MS
Manotas
Qwavel
TheJet
Ted Eiles
Michael R
Harini
Shane O
IrenaP
sachin210682
trggr_happy_jack
lucone
Peter Cwik
Only Title

mam282's Q&A profile

  • SQL Server If in current month

    I need to do this but can't find the syntax: IIf(Fields!EnteredDate.Value is in current month , Cint(Fields!PC.Value), CInt(0)) solved my second question: =IIF(Month(Fields!EnteredDate.Value) & Year(Fields!EnteredDate.Value) <> Month(Today) & Year(Today),Cint(Fields!PDC.Value),0) ...Show All

  • Visual Studio Express Editions Data access problems

    Hi all ~ just tried to build my first winforms app with data access. Using the Datasource Configuration Wizard, I selected MDFs, browsed for a MDF and tested the connection - so far so good. I selected one of the tables from it, clicked on it in the Datasources tab and dragged it over onto my form where it created all the necessary components for me (bindingsource, tableadapter, dataset & bindingnavigator) - still all looked really good. I ran it and it still appeared to be all fine, I made same changes to the data using my freshly written app (deletes, inserts & edits) but they did not persist. When I re-ran my app, all my data chan ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem installing Directx 9.0c Failed due to cabinet file

    So it installed everything and then after downloading the runtime components and is ready to install it says: a cabinet file necessary for installation cannot be trusted.  What in the world does that mean and how can I fix it   I would really appreciate your help thanx. Two things. 1) Download the runtime components again (just to be sure) 2) Make sure you're running with administrator level permission ...Show All

  • Smart Device Development eVC3 and eVC4 bomb when loading projects

    I'm trying to get eVC and eVC4 working on my main Win2K box. (Everything works fine on another machine). The IDEs each start properly. However, when I open any workspace, I get the following: eVC4: Instruction at "0x780104ac" referenced memory at "0x0000000". Opening the debugger gets "Unhandled exception in Evc.exe (MSVCRT.DLL): 0xC0000005: Access Violation" eVC3:Instruction at "0x510b2daa" referenced memory "0x00000004". Opening the debugger gets "UNhandled exception in EVC.EXE (DEVBLD,PKG): 0xC0000005: Access Violation". I tried doing a fresh install of eVC3, eVC4 SP4 and all the ...Show All

  • Visual Basic Program File Access

    I have associated all .jpg files with my application I made. So when I click the file, windows starts my application.    How do I have my application recieve information about the file so that I can load it    Thanks, I don't know what this process is called, so I have had a hard time trying to find tutorials for it. I think your talking about the command line parameters http://www.vbaccelerator.com/home/VB/Code/Libraries/Shell_Projects/Registering_File_Associations/article.asp ...Show All

  • .NET Development doesn't actually set the value...

    I was given the following code to set a value in an object from a string like "Header.field.str".  It seems to function correctly but never sets the value.  Any help is much appreciated... public static void SetValue( object baseObj, string fieldName, object value) { MemberInfo member = null ; //The current field/property matched Type typeCurr = baseObj.GetType(); //The current type of the field/property matched object data = baseObj; //The previous object/property that matched string [] names = fieldName.Split( '.' ); foreach ( string name in names) { //We are still going so get ...Show All

  • Windows Forms Deploying to Windows 2000 - Gets Open/Save Dialog from web link

    I have a clickOnce application at the following url. http://www.myserver.com/clickonce/myapp.appliction  when I click on the link from a Windows 2000 PC. I get a "File DownLoad, Open/Save Dialog", but when I click the same link from my Windows XP, the clickonce application installs without problems any help to resolve this would be great! Patrick I found the answer! Here's the starting reference. http://msdn2.microsoft.com/en-us/library/ms229001.aspx and here's the answer. http://msdn2.microsoft.com/en-us/library/ms228998.aspx The problem was the mime types on the server. I added the mime type for the ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Button Masking and Custom Cameras in the DXUT Framework

    I'm currently going through the DXUT framework to try and learn how things are actually done, but I've got stuck on the two topics in my thread title. The Mouse Button Masking in the DXUT has some strange things i don't understand the reason for. rotateModelButtonMask = ( int ) MouseButtonMask .Left; zoomButtonMask = ( int ) MouseButtonMask .Wheel; rotateCameraButtonMask = ( int ) MouseButtonMask .Right; ... public override bool HandleMessages( IntPtr hWnd, NativeMethods . WindowMessage msg, IntPtr wParam, IntPtr lParam) { // Call base first base .HandleMessages(hWnd, msg, wParam, lParam); if ( ...Show All

  • Visual C# Insert to Access DB from C# webform

    I have a web form, where values are submitted and displayed on a table on a form. What I want the user to be able to do is view these values, and if they are satisfied with them, submit them to a table in an Access database by clicking one submit button. Any suggestions I don't understand what data you are prompting the user to insert, then bulk inserting. You are dynamically creating a table, but what values are in it. What is the underlying source that you want to insert ...Show All

  • SQL Server How to change the chart scale in my desire intervals?

    Hi, all. I am designing a financial report for mutual investment. I have to make the Y-axis scale like the below ------------------------------------------------------------------------- 100k ------------------------------------------------------------------------- 80k ------------------------------------------------------------------------- 60k ------------------------------------------------------------------------- 40k ------------------------------------------------------------------------- 20k ------------------------------------------------------------------------- 10k ---------------------------------------------------------- ...Show All

  • Visual Studio Problem installing .NET Framework 2.0 Beta 2

    Hello: I hope that I'm posting to the correct area... I'm trying to install Visual C++ 2005 Express Beta 2 and the installation process fails.  The failure occurs after the download is complete and the installation of the .NET framework has commenced.  No error information is displayed, other than the notificaton that the error has occurred.  I've turned off Spybot, for what that's worth.  Any ideas on how to proceed Thanks! Hi Dave,   Do you have an old .Net framework already installed on the machine Thanks,   Ayman Shoukry   VC++ ...Show All

  • .NET Development Using Configuration Classes

    Hi, Does anyone has a little peace of code, how to write any key value pair or a value of a control used in a form application into a users roaming profile. All microsoft documentations and news groups threads I read, speach about easy to use configuration classes I have studied hundrets of documents and discussions but I have not found any usable example to simpliy store the windows location in a user based <apps>.config file in the path of the users profile, which will be automatically reused on restart the application. For me, this section of the library is not very easy to use and miss designed, as long as must code more ...Show All

  • Visual Studio Express Editions missing features?

    Hi everyone. Can anyone tell me if features such as the bookmark window, refactoring fields into properties (among other refactoring options), and other similar types of functionality are not availabe in the Express Editions I can't find these options in C# EE, even though I'm looking exactly where they should be. Thanks, John There are a number of features missing from the Express editions (hence the 'Express'). For a comparison between the Express editions and other Visual Studio editions, see: http://lab.msdn.microsoft.com/vs2005/productinfo/productline/default.aspx ...Show All

  • SQL Server Visual studio interface EXTREMELY slow

    Hi folks, I'm working within VS2005/Business Intel studio environment. I've got one master package, which loads about 18 sub-packages as tasks. After openin the master package (and waiting 5-10 minutes for the packages to open and validate), maneuvering within the IDE is nearly impossible, it is so slow. Context menus can take 30 seconds to open. Certian operations, like closing a window, seem to hang the environment. Does anyone have any feedback about this kind of ide performance problem Thanks, Scott Thanks everyone. The Offline trick did it for me, at least made the UI funct ...Show All

  • Visual Basic AnalogTVTuningSpace and MSVidCtl

    I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as described here:  http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/directX/htm/hostingthevideocontrolinavisualbasicform.asp  and here:  http://msdn.micro ...Show All

©2008 Software Development Network