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

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

Atiz

Member List

Flamin
Daftspaniel
AdityaC
Mehmet Metin Altuntas
techuser08
CalinMac
Will Merydith
vijayalakshmi
Danny Tuppeny
Marco Paci
roadresident
p.cosmos
marebear12
MagedSalah
KevinBurton
goldmine
ftamminga
John_Wesley
eldiener
leshan
Only Title

Atiz's Q&A profile

  • Visual Studio This page cannot be displayed blah, blah, blah.

    Why does Document Explorer bark up a lung when trying to display a page that it supposedly found in SQL BOL The search term is very complex: "sysobjects" in Technology = "TransactSQL" Having spent a little time now with the new system I gotta tell you, when looking for documentation I am NOT looking for an experience, I am looking for information specific to my question. In this case, Document Explorer successfully wastes my time by forcing me come here to find out why it doesn't do the most simple and mundane task I could request of it: Display content stored in the default location on my local harddrive. Even when it is successful it releases a torrent of information of negligible value and questionable appli ...Show All

  • Smart Device Development question on ListView, need help

    Hi, My ListView control contain a "quantity" column and i need to do the calculation on the total of the "quantity", does ListView control allow me to do it Does anyone know how to write the codes to read the rows which contains the data on ListView control Any recommendation on it This forum is dedicated to device emulator. Since your question is not related to device emulator, it's off topic here. If you’re having a hardware issue, please contact hardware manufacturer or reseller. If you having an issue with 3rd party software, please contact respective software manufacturer or reseller. Otherwise please post to relevant forum or news group: http://support.microsoft.com/newsgroups/default.aspx ...Show All

  • Smart Device Development Whether it supports all

    Does application created with Visual Studio .NET Compact Framework supports all kind of smart devices available in market which able to run WindowsCE Answer is YES but You should however keep the following in mind: The device must have a version of Compact Framework installed. An application built with higher version of Compact Framework won't work on a lower version of Compact Framework e.g. NETCF 2.0 app won't work on NETCF 1.0. Vice-versa is not true. Manav ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. C# Lack of pointer confusion

    My lights are kept in the main Game class. I register my light sources with my render manager so all of the shaders know which light sources to use. I want to be able to update a light source in the Game class (like sunlight) and it be updated for my shaders. I'm passing the source in by ref, but when it gets added to the Dictionary (which holds the name of the light and the light vector itself) it seems to be adding a copy. When I update the light in Game, it is not being updated in that Dictionary. I am pretty much new to C# but have been programming in C++ for years. In C++, I'd just store a pointer. Thanks // This code is from the shader class m_LightSources = new Dictionary<String, Vector3>(); public void AddLightSource(S ...Show All

  • .NET Development Stroing generic object in xml element defined with type xs:anyType

    Hi, We are developing a Service Broker component with one web method, which accepts generic request. We have multiple schemas and classes generated from these schemas. Now we want to wrap this schema classes in one schema of this generic request which is used in our component. The xsd is as follows: <xs:element name="RequestData" minOccurs="0" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:element name="RequestDataXML" type="xs:anyType " minOccurs="0"> </xs:element> </xs:sequence> <xs:attribute name="Standard" type="xs:string" /> </xs:complexType> </xs:element> Now when a class is cr ...Show All

  • Visual Basic How can we make any drive Read Only in windows

    Hi All, I want to make any drive in windows read only. The basic aim is to restrict copy between Hard Disk and Removable disk. Thanks, Dinesh You can go to the drivename ---> properties -->click on the security tab. From here you can configure the permissions for aprropriate groups. You need to be logged on as an administrator to do this. ...Show All

  • Visual Studio 2008 (Pre-release) Dialog Window

    I am wanting to create a pseudo modal dialog window. Rather than using ShowDialog I want to display a xaml page in a panel that hovers over the calling window. I figure the best way to do it is to add a frame to the page and make it invisible. Then when it is required just make it visible and position it in the centre of the window. How do I go about positioning it though I want it to be centred in the window but have no idea how to do this. Any ideas Thanks Drew. I have got it working and am now trying to wrap it all into a reusable control. Will post back with the control once it is all done. Cheers. ...Show All

  • Visual C++ Interaction with an application running in CMD

    Hi all, I have written code for an appliation which needs to interact with another application which runs in CMD. I want to receive all the information produced by the application running in CMD so that I can manipulate them and at the same time I should be able to provide input to that application. Please suggest me somehting regarding this. Thanks, Hi, I ma sorry for late reply. Actually, I am using Microsoft Visual C++ 2003 edition. I am using ShellExecute() to execute other application which runs in CMD.exe. I will try all the options available. But if you have something specific to tell, please do so. Thanks, ...Show All

  • SQL Server Report footer?

    Is it possible to have both page footer and report footer in SSRS. If so, how To add to Teos reply. You can set the visible attribute of a report object based on the page count global variables. So you could add a new group or row to an existing group, and set it's visible attrib via an expression, like so =(Globals!PageNumber = Globals!TotalPages) ...Show All

  • Visual Basic launch windows form directly underneath toolstripcombobox.

    Private Sub frm_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Me.Top = MainForm.ToolStripComboBoxDirectoryHistory. bottom        'however there is no  ' bottom' property for the  combobox. End Sub do I use a new point(x,y) something or other to achieve this positioning of a form with respect to some existing control on the mainform Thank you, -greg The bottom of the object is equal to the top of the object plus the height of the object. Therefore.... Me.Top = MainForm.ToolStripComboBoxDirectoryHistory.Top + MainForm.ToolStripComboBoxDirectoryHistory.Height Dustin ...Show All

  • Software Development for Windows Vista MFC Project(C++) vs compilation error with IDI_SHIELD, BCM_SETSHIELD, Button_SetElevationRequired and friends

    Probably you guys already solved this trouble in your project but I'm still looking for the appropriate .h to be able to add the shield icon to my buttons. Is there an VS update to install or something Thanks in advance! Hi, I just found it in header CommCtrl.h of the Vista platform SDK . Wolfgang ...Show All

  • Software Development for Windows Vista Task Scheduler: How to get the trigger strings from TaskScheduler 2.0 Interfaces

    The Task Scheduler 2.0 Interfaces no longer appear to have the ITask interface. The ITask interface used to have a function called GetTriggerString() that returned a formatted text string of the start time of the task (for example: Every Tuesday at 10:00am starting on Wed, January 14, 2008). I created a dispatch interface in Visual Studio 6 by using Class Wizard to add a new class from typlib, and used the taskschd.dll found on Vista as the input. The generated classes do not contain the ITask interface that used to provide this function, and none of the trigger interfaces seem to provide this. The closest is the trigger's GetStartBoundary() function, but this just returns a date, not a formatted string. Is there a way to get this f ...Show All

  • Visual Basic how can i open a text document to a text box and how can i save text from the text box to text document?

    i am only new in VB. I want to learn how to open a text document to a textbox, and also how to save texts from my textbox to a text document just using 1 textbox and 2 command buttons(open and save buttons) . please post the simplest code as possible. thank you so much! If the text file in question happens to be a Rich Text Format file (.rtf) then you can do this really really easily using an instance of the RichTextBox class since that class has LoadFile and SaveFile methods. Private Sub Button6_Click( . .. ) Handles Button6.Click    RichTextBox1.LoadFile( "C:\foo.rtf" ) End Sub Private Sub Button7_Click( ... ) Handles Button7.Click    RichTextBox1.SaveFile( "C:\foo.rtf" ) E ...Show All

  • Visual Studio Tools for Office Windows application, integration with Word

    I'll try to give some application goals. I'm pretty unclear as to which technologies I need to use. I have Visual Studio 2005 Standard, and I was thinking that C# would probably be the easiest for my programming style. The application needs to be a local Windows application. There will be two main components of the application. The first one will be to create a new document, or load an existing document and edit it. Creating a document will be a wizard-type of tool where the user will answer a series of questions about the document, including typing some text at various points. The end result of this will be that the user will choose a template, such as a Word template, and the application will insert the data that the user filled ou ...Show All

  • SQL Server Jump to Report Without Parameters

    Hi, Is there any way in Rs2000 "Jump to Report" Action, to pass only some off the target report parameters, and when the report opens fill the rest from the target report parameter area I can make this work in VS2003 but not in Report Manager. In Report Manager when you click the link it just clear the screen and stays like that. Thank you for your help Rgranada i do have a crude way of doing it and i still looking out for the best way to do it. for example, lets take @Empno is the parameter and u want to make it optional so declare another variable like @ES when u r passing employee number , then pass @ES = 'S' ( means selected) when u do not want to use @EmpNO , then pass @ES = 'A' (mean ...Show All

©2008 Software Development Network