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

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

BKRIS

Member List

Joao Marques
Jase555
Neil Danson
Jeremy_Long
sklett
pjwhams
Oguz
Manuel L.
vlatiyan
BarendJ
MohamedHanif
ScrappyDoo
Parker Whittle
Mr_D
pierz
David Keaveny
Hans-Jochen
Martin Rajotte
Shishir_Vaidya
OL56814
Only Title

BKRIS's Q&A profile

  • Visual C++ difference between SDI and MDI

    Plz tell me the diff between SDI and MDI   Diff between Modal and Modeless Dialogs The full answer is available in MSDN , but in a nutshell SDI or a single document interface is a window that can only handle one document at a time per window. An example of an SDI is Notepad (you can only edit one text file per Notepad window. If you want to edit two files, you need two Notepad windows). An MDI or multiple document interface is a window that can handle more than one document at a time (usually by creating subwindows). An example of an MDI is Visual Studio. You can have multiple Cpp files ...Show All

  • Visual Studio LineChanged Event

    I am developing Visual Studio add-in by using VS2003 C# I am trying to handle bookmarks by name , filename , line in XML document. Projects works fine . I can get bookmark name , filename and line number when user add a bookmark on a file. But if user delete a line or add a line  , my bookmark lines are going wrong. How can i get how many lines added  , deleted in _LineChanged event  Any document , link, comments about _LineChanged(TextPoint StartPoint,TextPoint EndPoint, int Hint) event My experiences : private EnvDTE.TextEditorEvents x_textEditorEvents = null ; EnvDTE.Events events; events = applicationObject.Event ...Show All

  • Visual Studio Team System New to TeamSystem & need to share a document library to another site

    Good morning all. This may be more of a Sharepoint related question, but I couldn't find any MSDN forums related to Sharepoint problems. The question I have does relate to Team System so I thought I'd start by posting here. If anyone can help with this problem I'm facing or knows of a great Sharepoint forum I'd appreciate it! First, some background information...My company supports multiple Sharepoint servers. Some of these servers are on different domains. One server, for instance, and all the WSS sites hosted on it, are dedicated to our clients. Whenever we create a new client project, a WSS site on this server (I'll call it ServerA for ...Show All

  • Visual Basic OTP: How can i get the Status...........

    Hi, Can anyone tell me that How can I get the Status of services. Its Running or not or Start / Stop / Paused / Hanged etc..... I am using Visual Basic 6.0 I also have tried EnumServiceStatus, but its just cont the no. of services....     Please Help me..............   * I'm sorry, VB6 is three iterations old, and is no longer supported. As such, VB6 questions are off topic on these forums. You could try www.vbcity.com or www.codeproject.com ...Show All

  • SQL Server Package Configurations not so portable?

    I'm still struggling with finding a sound approach to creating configurations that are truly portable.  For instance if you use XML files to store configuration information, the path to the XML file that stores the configuration is baked into the package.  This would require the same file system structure on all machines that could host the package. Store in SQL server - one key thing that is valuable to configure is Data Sources - but how can you configure a data source at runtime by storing it as a config in SQLServer, when the data source itself is used to specify the server that stores the config information Environment varia ...Show All

  • Visual Studio Express Editions Inheriting Form Issue in VB2005

    Hello All, As usual, I think I'm doing something that's not "Kosher" in trying to inherit a form to a new Item. I get a ton of errors including data connection, etc. The solution works and builds, publishes and all that, but there seems to be settins somewhere that are pointing the inherit function somewhere else. Please Help...I don't want to redo all of those controls and buttons again on the new pages. Thanks, Elgee... PS...Any ideas on how to map the numeric keypad to a masked textbox I can't figure out how to advance the digit after a mouse click...I can only get one digit to enter ...Show All

  • .NET Development TableAdapter Update problem

    Hello, i have problem in my application. I create dataset with single table. In MainForm i have 2 texboxes and update button. This is code for update button: [CODE] Klient klient = new Klient(); klient.ShowDialog(); KlientDataSet dataSet = new KlientDataSet(); Serwis.KlientDataSet.KlienciRow klientRow = dataSet.Klienci.NewKlienciRow(); klientRow[0] = Guid.NewGuid(); klientRow[1] = klient.Imie; klientRow[2] = klient.Nazwisko; dataSet.Klienci.AddKlienciRow( klientRow ); int result = this.klienciTableAdapter1.Update( dataSet.Klienci ); [/CODE] I got 1 in result variable so i think that database was updated. No my dat ...Show All

  • Visual C# Crystal Reports Report Document

    I am a newbie to C# I ' m developing a windows application which has some reports. I used crystal reports for that and use the following code to load the report dinamically. But it always give me the Error "Invalid Report Source". I have done all the things which are in the MSDN for the dynamic loading. Any body have an Idea ////////////////////////////////////////////////////////////////////// oRpt = new ReportDocument(); oRpt.Load(reportFileName); crystalReportViewer1.ReportSource = oRpt; ////////////////////////////////////////////////////////////////////// Did reportFileName is correct f ...Show All

  • Smart Device Development WM5 .NET 2.0?

    Hi! Sorry, title maybe misleading....   Basically in the UK the next version of the smartphone (SPV) is C600 (after the successor C500) and it will be launching at the end of the month now, I know it has WM5 (hurray!!) BUT would like to know, if anyone knows (esp the MSFT guys)... will it have .NET CF 2.0 I know it was in beta etc... for the past few months but now for MSDN subscribers VS.NET 2005 has been officially launched but the official launch will be next week and will ship in December   Question is - will WM5 have .NET CF 2.0 If not, then I guess the only way you can have .NET CF 2.0 is on the other smartdevices (M500 ...Show All

  • Visual Studio Express Editions TextFile online

    is there any better and faster way to get the content of an "Online-Textfile" then: You will have to consider what is actually taking time. There is some thing you are not able to control in this case. The time it takes to establish a connection to the server The time it takes to request the file from the server The time it takes to transfer the contents of the file This is probably what takes 20 seconds and you should be able to measure it by taking the time it takes to step from the DL.DownloadFile() line to the next. If it is about 20 seconds than that is where your bottleneck is. If this is the case your application can most li ...Show All

  • SQL Server What Data Mining tasks can be automated and scheduled via Integration Services Packages?

    Hi, all here, Would please any expert here give me any guidance about what Data Mining tasks can be automated and scheduled via Integration Services Packages Also, If we automated the tasks, can we also automatically save the results of the tasks somewhere Like if we automate assessing the accuracy of a mining model, then we wanna know the mining model accuracy later, therefore, we need to save all these results from the automated actions. Is it possible to realize this Thanks a lot in advance for any guidance and help for this. With best regards, Yours sincerely, Hello, Helen An Integration Services package may contain va ...Show All

  • SQL Server SQL Server 2005 with 2000

    Hi I have SQL Server 2000 installed on one of my servers, I installed SQL Server 2005 as a named instance on the same server .... its giving me problems now , whenever I start going to the any component of SQL Server I get the following error :- sqlmangr.exe - Application Error The instruction at "0x780104ac" referenced memory at "0x1083e7b7" .The memory could not be read Click Ok to terminate the program Click on Cancel to debug the program Please help...... Installing and using SQL Server 2000 & 2005 on the same box is definitely supported. There's something special ...Show All

  • Software Development for Windows Vista WWP GUI design

    Hi I was wondering how the GUI design in the new Windows Workflow tool looks like. Does anyone have a screenshot of the GUI Thanks Pioter Arjun, Thanks alot for the help Pioter ...Show All

  • Software Development for Windows Vista dinamic SQL Server Database Activity connection string

    I've a small issue with the ConnectionString parameter passed to an SQL Server Database Activity If in a Visual Studio 2005 WWF beta2 project insert in the designer, in the ServerDatabaseActivity ConnectionString parameter the entire string, like "Server=localhost;Integrated Security=True;Database=MyDB", then the designer let me to insert the workflow parameter for the SQLParameters of my stored procedure. This is very time-save because it let to automatically generate the parmeterbinding and the activitybind in the designer.cs If I try to parametrize this ConnectionString property and try to insert the value of a local variable of ...Show All

  • Visual Studio Team System WSS templates into TFS??

    I am new to Team Foundation Server. Before we were running WSS and to install custom templates I used the stsadmin tool. I would like to take some of the templates from our WSS and use them on the Team Foundation Server. Can I use the stsadmin tool or is there another command line tool I need for Team Foundation Server If you want to use a different site template when creating a team project portal, you need to customize the process template used to create the associated team project. As far as uploading the SharePoint site template goes you can use the same process you use for any other SharePoint site. ...Show All

©2008 Software Development Network