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

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

AnilYu

Member List

zot166249
Voxen
Inkyskin_UK
godfrank
Sphinx06
CharlestonSW.com
Subrat10197
BobSpeaking
Baron Mucki
skycro
curwiler
Bruno Braga
Ahmed-Mahdy
Kalay
ToolmakerSteve
Richard Hardy
ashg657
Zenubis
pablex
TheMaj0r
Only Title

AnilYu's Q&A profile

  • Visual C# Differneces between c++ and c#!?

    I'm quite new in programing and i started learning c++ but i want to know what are the differences between c++ and c#! (because all examples and learning lessons, from msdn Visual Studio 2005, are written in c#) I know this is a stupid question for all of you but i heard about c# only in Visual Studio. I really need an answer to this question because i don't know what lenguage to learn! Thanks  Ok, very good! My fir ...Show All

  • Visual Basic multiple forms

    Lets say i have Form1 as the form that opens up when the .exe is launced. I have another form LoginForm1, how do i make a button that where when you click it on form1 it opens up the LoginForm1 in a seprete window Inside your click handler for the button, create an instance of the form you want to show, and call ShowDialog to show it. Dim f2 as Form2 = new Form2() f2.ShowDialog() ...Show All

  • Visual C++ metodes in template class arn't recognize

    <chen_k@discussions.microsoft.com> wrote in message news:6d6729cb-4918-4f14-a0f2-0cb353723f7b@discussions.microsoft.com > I have in my project a template class. When I try to use a method in > that class, then i get error messages like that: > C:\My Documents\tel_op3\tel_op3\info_dlg.cpp(14) : error C2228: left > of '.setFilename' must have class/struct/union type > What could be the problem ...Show All

  • SQL Server How I can copy object SMO between DB and servers?

    Something following is necessary: Column c1 = srv1 .Databases[“db1”].Tables[“t1”].Columns[“c1”]; Column c 2 = <something which copies c1>   srv2.ConnectionContext.SqlExecutionModes = SqlExecutionModes.CaptureSql; srv2.ConnectionContext.CapturedSql.Clear();   srv2 .Databases[“db1”].Tables[“t1”].Columns.Add( c2 );   foreach( string s in srv2.ConnectionContext.CapturedSql.Text ) { ...Show All

  • Windows Forms Bind DataTable to GridView problem

    Hello all I am using microsoft enterprise libraries for the first time, I wrote code to create database object and command, then I execute the command using Executedataset(command Object), I have no problem till this, then I try to get a datatable for the first item, to asign it to the Gridview I have, I got a null referance exception .. Here is my code: FileConfigurationSource fileSource = new FileConfigurationSource(@"filesource. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Centre text on screen

    I'm using screen coordinates to draw a line of text to the screen. How do I determine the width of the text (based on which font I'm using), so that I can precisely centre it on the screen You are welcome. My problem is always that I never know if I should answer with managed or unmanaged API names and it looks like it hit the wrong most times. The managed font encapsulate the unmanaged ID3DXFont. You have two option ...Show All

  • .NET Development SQL to retrievedata

    Hey Guys: I have seen this done in a program and at one time i did it but not exactly get it right. I have two tables in my data base. The first is a table with the PubID and a number that corresponds with the second table with a list of titles. table1---is PubID----and number of title is 10----so when i enter the number 10 in the column i want the title to appear in column 3. PubID TitleNum Title 1411 10 ...Show All

  • Visual Studio Express Editions Let's go to work on an FAQ for this Forum

      The concerted work that goes on here in really impressive. I'm also thinking about a mass mailed note I received from S. Somesegar, corporate VP of Microsoft development. He said that MS Engineers were not alone in building VS2005. Customers had a lot  to do with it to make it as neat as it is. Continuing in that vein, I though it may be a contribution to see if we can't put together an FAQ that will take care o ...Show All

  • Visual Studio Tools for Office Serious: Update multiples tables of Database through excel without TableAdapter

    Hi All, As I have discussed earlier that I am not binding my list object into excelsheet through dataset/TableAdapter. I am using object option i.e. One class/function that I have created. I have done follwoing to bind my excelsheet through database without creating dataset through wizard. 1. Click on "Add New DataSource" into Datasource configuration wizard. 2. Choose the "Object" from the options. ...Show All

  • SQL Server Simple convert question!

    Hello all! Never did a convert, I been looking for samples but I don't quite get it. I get this error message in my vb.net app, Taking a number value from a textbox, adding it to a table, with a money field. "Implicit conversion from data type money to nvarchar is not allowed. Use the convert function to run this query" Here is the SP it's pulling, CREATE PROCEDURE dbo.AddWg (@UserID NvarChar(50), @Credits Money) AS IF EXIS ...Show All

  • Windows Forms ClickOnce works on .NET2.0 installed clients but not on .NET1.1 installed clients

    Hi.   I have clickonce app uploaded to a IIS5.0 server. If i click in the "install" button on the "publish.htm" website with my .NET2.0 client machine, everything works OK. nothing wrong. But if i do the same on a client machine that has .NET1.1 installed, i get a "file not found" error when i press the "install" buttonm and on the other "link" on the "publish.htm" there it says some kind of "if you have .NET2.0 instal ...Show All

  • Visual Studio About Backgroud thread calls IServiceProvider::QueryService

    Hello, I think I meet a big problem while using IServiceProvider::QueryService . 1. I have a program that has 2 thread, both of them  call IServiceProvider::QueryService to get an object of IVsSolutionBuildManager. In VisualStudio 2003, it works well. 2. When the VisualStudio 2005 beta2 was available, I moved my program to it. Then, a warning is presented when the background thread calls IServiceProvider::QueryService to get the o ...Show All

  • Windows Forms Removing Duplicate Records

    I have a datatable which is the result of the import of some proprietory data. It's a transaction record table for customer purchases. Each transaction is linked to the customer account via their unique account code. In my sample data, i have about 4000 transaction records, which relate to approximately 350 unique customers. I want to filter my transactions table based on a date range (which i can do) and then REMOVE all records that ...Show All

  • Visual Studio Team System Single Server Deployment

    Hi, Is single server deployment gone forever Dean Ahh - the Proxy...  Certainly a good reason to consider looking into the July CTP.  If it's really important to you and you only have one box, the Virtual PC/Virtual Server technology is probably the way to go. If you can afford to wait, I am encouraged by Michael's reply.  Since single server will be supported again, the question is when and can ...Show All

  • Visual Studio Express Editions Question for MSI...?

    I'm currently working on a program to create MSI files. It's kind of my project to create an installer application. I don't know for sure whether I will use C++ or VB (or a combination of the two). I'm trying to find information on how to programmatically program an MSI file (database). If anyone can point me to a white paper or some other resource I would greatly appreciate it. I just need to find out how to access/write an MSI file and the ...Show All

©2008 Software Development Network

powered by phorum