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

Software Development Network >> Namio Evangelista's Q&A profile

Namio Evangelista

Member List

daschneller
Christopher Schick
rsd_za
Michael Lambrinov
MRLehmann
Colin-Angus-Mackay
Bartjes
Brian_12
Pajesz
W S Jones
stevenelaw
mech55
Chitu Alin
Ömer KUŞCU
Bovril2006
Donald Farmer
JimKennelly
subir.talukder
A L
dcohen
Only Title

Namio Evangelista's Q&A profile

  • Visual Studio Team System How to customize ManualTest.mht for our organization

    We need to customize the ManualTest.mht file to our standard test case format. I found the thread about modifying the file in ItemTemplatesCache or ItemTemplates, but this did not do anything. Anyway, if this had worked, it would have only applied to my local machine and not for the entire organization. So, how does one modify ManualTest.mht and add it to team system on the server so that when testers create new manual tests, they will get the modified template without having to update their local machines Thanks, Steve Hi Steve We do not support the scenario that you are looking for, where VSTS would try to grab the templa ...Show All

  • SQL Server Why I cant not attach the database to the database engine?

    Hi, all here, Thanks for your attention. I got a problem when I tried to attach my database to the database engine tho. The problem is as the follows: I have downloaded the Adventure works DW sample database, Now I need to attach this database to the SQL Server 2005 database engine (both mdf and ldg files are available), but the error occured as: could not find row in sysindexes for database ID 21, object ID 1, index ID 1, Run DBCC CHECKTABLE on sysindexes. Thanks a lot in advance for any guidance and help. Hi, Jayaram, thanks a lot. Yes, I used both ways to attach the database to the SQL Server 2005 database engine. One ...Show All

  • Visual Basic Help me converting simple VB6 code to VB.net

    Hi! This code is obviously VB6 code. Im desperately trying to get the width and height of an AVI file, and i found this code. This is the errors i getting. Maybe it will make things easier: error BC30802: 'Type' statements are no longer supported; use 'Structure' statements instead. error BC30678: 'End' statement not valid. error BC30828: 'As Any' is not supported in 'Declare' statements. error BC30002: Type 'AVIFILEINFO' is not defined. Can anyone help me out Private Const OF_SHARE_DENY_WRITE As Long = &H20 Private Type AVIFILEINFO     dwMaxBytesPerSec As Long     dwFlags As Long  &nbs ...Show All

  • Visual Studio Team System Collectibles example in extensibility kit beta 2.

    Hi, I want to study the collectibles example in Team Foundation Extensibility Kit beta 2, and I could not find CollectiblesDB.sql to initilize the db in data tier. Can anyone help me ...Show All

  • Smart Device Development Junk characters when display in pocket pc through web service

            I have made a small program in which there is a web service which reads an xml data and returns a dataset of it. At the same time I made a pocket pc application that consumes the web service and displays the values of the dataset on a text box of pocket pc. but problem is when it displays the data on text box the data have some junk character. I am a beginner of using this please help me this is code of web service:-   <WebMethod()> Public Function BuildDataSet() As DataSet         Dim DataSetObj As New DataSet        ...Show All

  • Visual C# richtextbox not keeping font when form is minimized

    I have a form with a richtextbox in it. I have a thread that is running seperate from the main thread. This thread invokes a method in the main thread, sending it a string and a color. This method takes the string, changes the selection font color to the color that was passed in and appends the string to the text box. Here is the code: delegate void printToTextBox(String data, Color color); private void setText(String data, Color color) { richTextBoxLogs.SelectionColor = color; richTextBoxLogs.SelectionFont = new Font(richTextBoxLogs.SelectionFont, FontStyle.Bold); richTextBoxLogs.AppendText(data); } private void myThread() { //C ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. render to menual allocated buffer ??

    It may be my crazy thought, but am I able to let DirectX render images to the system buffer i created I do not know if you can, but I can tell you why it could be bad. Getting data from the card to the system memory is slow (i learned) and on most scenes you will have a fair amount of overdraw, unless you manually sort the objects and only render faces which are the closest in a particular direction. If you for example have on average four overdraws for every pixel in the display, then you will transfer four times the visible data to system memory. If you let the card render locally and do its overdrawing there, then you can ...Show All

  • Visual C# redirect input (c# and network)

    hello how i can set server input device to input on clinet computer (i.e when server's mouse move , client's mouse implements it ). and how i can redirect server output to client display If you want to redirect the Input, you can use existing software like Remote Desktop: Windows XP: Get Started Using Remote Desktop . If you want to use a VNC implementation, you can use: VncSharp: A .NET VNC Client Library or you can take a look at VNC-Client for .NET using the RFB Protocol . The protocol is really easy, the server sends the framebuffer content to the client, the client informs the server about events ...Show All

  • Visual C# Application in C# to pull info from XBOX live

    Hi guys, I have a question regarding Xbox live. I would like to develop an application that allows me to sign into xbox live using my live passport credentials and be able to view my friends list. I would like to use C# as this is what I am most familiar with. What I need to know is how can I log into Xbox live via a Windows Application Form Any ideas Any help would be very helpful. Cheers, Sten ...Show All

  • Visual Studio Express Editions Visual Basic 2005 Express Format Painter

      Hi, Does Visual Basic 2005 Express have a Format Painter function like Word, Access, Excel... I would like to be able to make all of the buttons on a form the same colour, without having to manually change the background in each button's properties box. I realise I could copy and paste the buttons. I have tried a search for format painter and read throughmany pages of these threads. Cheers, Phil Format painter makes perfect sense. You would copy all attributes from the source control along with their attribute names as the keys. Then when painting on a new control, you use refle ...Show All

  • Visual Basic OleDBAdapter Update Method

    I have created/binded a datagrid to a table in Access and manged to get the data to be copied from Access into the datagrid table.  I also created a button that can update information in the datagrid when the button is press.  All of this seems to work fine up until the point were I try to get that change I made to the data grid to update the table in the Access database. I am using .Net and have the following code written to try and update the Access database... myDataSet.AcceptChanges() myAdapter.Update(myDataSet, "Test_Table") Like I said everything is smooth until this point and I can see where I am messing it up.  Also ...Show All

  • Visual Studio Express Editions Database Creation thru C# IDE

    Why is it that when I right click Data Base Explorer from the C# IDE, the "Create New SQL Server Database" is greyed out I am logged in thru an account with administrative priveledges. I can create a database thru the command line utilities and then attach it via Database Explorer but I can't create the database directly thru the explorer. Go to the solution view and add a new item to the project, from there you should be able to add the new database file. ...Show All

  • Visual C++ Project : error PRJ0002

    hello i'm a complete novice in visual studio 2005 and was wondering if i could get some help from the pro's i have Visual Studio 2005 Professional Edition and was trying out some basic (and i mean really simple) code to get to grips with it and then work up, i'm not new to c++ as such so i'm pretty sure the code is ok i was trying to build a simple hello world program in a win32 console application project but when i try to build it throws an error Project : error PRJ0002 : Error result -1073741515 returned from 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\cl.exe'. and for the life of me i wouldnt know where to begin guessing at w ...Show All

  • Windows Forms Binding Comboboxes to custom lists

    I am running .NET Framework 2.0 B2 I am missing something when it comes to implementing databinding in custom classes. I have a view class that acts as my main data source. The view class basically just loads up the data and returns via properties and BindingLists of NameValuePairs (which is just a replacement for KeyValuePair so that databinding will work) The view class also maintains current properties that tell me what the current selected id is for my state, city and street. However when I run the form the databinding seems to get behind. If I choose a new state, the cities refresh, but the text in the state box stays the same. Then whe ...Show All

  • .NET Development Using shared (static) members

    Hi! Is anybody aware of any drawbacks when using shared (static) members inside classes. Apart from design issues and braking some of OOP rules, are there any performance issues, like bad memory usage or increased overhead when calling them ps 1. I think My.Brain would be better than Me.Brain. I would make it easier to find! ps 2. I some times think that Brain should implement the IDisposable interface. Just in case! ...Show All

©2008 Software Development Network