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

Software Development Network >> Nayan Paregi's Q&A profile

Nayan Paregi

Member List

Philippe Cand
chris bax
Berky13
Nfrf
AndrewBadera
Can-Ann
Thiago Tota
bryanedds
Enigma_Mr_E
MikeMinsk
drinkwater
d__i___o
Miguel Rion
twaltz
CSharpShooter
R Raghu
jkushiner
Xancholy
bhmsaad
.net sukbir
Only Title

Nayan Paregi's Q&A profile

  • Visual Studio December 2005 CTP Required

    I have run into a problem where I need a copy of the December 2005 CTP. I uninstalled the version I had (December 2005) and then tried to install the June 2006 version only to get an error about an existing guidance package that is installed and needs to be removed before proceeding. The problem is since it was built with the 2005 CTP I can't build the solution that is required to unistall it. I find myself in a bit of a catch 22. I can't install 2006 because of a 2005 package but I can't uninstall the 2005 package because I have already unistalled the 2005 toolkit and no longer have the install. I beleive I need to re-install the 2005 CTP so that I can uninstall the package and then proceed with the 2006 install. Does anyone h ...Show All

  • Windows Forms C# Web Browser/File Association - all within Windows Application

    Hi, I did search the Windows Forms forums here, and found a lot of file association stuff that pertains to the OS; that's not what I'm looking for. I need the file association to stop while the user is using my windows form, but continue using the OS-recognized file association outside of my app. I'm using MS Office Infopath in a hosted application, but for simplicity's sake, I'll use Word as an example in describing my problem. I have a hosted webbrowser control that defaults to a sharepoint server document library. I want the user to be able to click on a Word document in the library (a document named 'test 555.doc' for example), and when they click on the link, the url of that file, not the webbrowser's statustext field that says & ...Show All

  • Visual C++ Is there any window API which will search for files based on long names ?

    Is there any window API which will search for files based on long names There is API FindFirstFile which is searching for files based on long as well as short names . So i am looking for similer API which will search files based on long names only . Any help is appreciated. Please reserve your use of this forum for C++ language issues. For Windows SDK issues, you can refer to the MSDN discussion groups here: http://msdn.microsoft.com/newsgroups/ OTP. ...Show All

  • .NET Development Visual Studio 2003

    Dear All, I am currently using Visual Studio 2003, with Framework 1.1. I tried to install v2.0 but VS still uses v1.1. Just wondering whether it was possible to use v2.0 with VS2003, and if so how I would do it. Thanks Sukh im afraid its not possible to use it. Each version of VS is married to the .NET Framework version it was released with, with the exception of VS2005 (allows you to use .NET 3.0 with an addin) the only way to use .NET 2.0 is either: purchase VS2005 download the express editions and dev .NET 2.0 apps within it use the vb.NET or C# compiler of .NET Framework 2.0 and manually write out code with notepad for example download the 180 day trial of VS2005 Professiona ...Show All

  • Visual C# Post to the web?

    What would be the best way to go about posting to the web For an example, Commenting someone on Myspace or PMing someone on a forum Any ideas Sorry about the short explanation, Let me try again with a bit more detail. I would like to be able to post topics on forums etc, without even visiting the forum. I believe this is possible by using webresponse part of Webclient Class. So instead of me coming here to write this message in the box, just load up my program and type what I would like and then post it to the web. You understand now ...Show All

  • Visual Studio problem with new software

    I recently bought 2005 Visual Studio Academic version...I installed and all seems smooth...however I click on for new project CLR console application give it a name and then the software closes...when I reopen there is a saved folder of the name of this project but I cannot open ant .h or cpp file I uninstalled and put back on...is this a bum copy I have 2003 with no problems Thanks I solved problem....it was that I had Norton antivirus on....even as I installed I had it shut down...and even when it ran I had it off....However after I uninstalled the Norton software....Visual studio works correctly....I have also found with the Norton updates Outlook no longer worked....obviously I ...Show All

  • .NET Development xml namespaces problem

    I am experiencing a problem with xml namespaces , I would like to to create a document of exactly this format: < xml version='1.0' > < mso-application progid='Excel.Sheet' > <s:Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:s="urn:schemas-microsoft-com:office:spreadsheet"> <o:DocumentProperties> <o:Author>Somebody</o:Author> </o:DocumentProperties> <s:Styles> <s:Style s:ID="style1"> <s:Font s:Bold="1" /> </s:Style> </s:Styles> <s:Worksheet s:Name="SampleSheet"> <s:Table> <s:Row> <s:Cell s:StyleID=& ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can You Move the Backbuffer?

    I'm playing around with shaking the screen when explosions occur and thought the best way to do this would be to randomly move the backbuffer. How can I do this kind of effect! Thanks! You aren't technically updating the sprites any more than necessary unless you code it in an inefficient way. Technically, you need to draw each element on the screen anyway, so adding an offset for the shake isn't any extra work (besides the addition). ...Show All

  • .NET Development how to pack dataTable? zip?

    Hello!! I would like to put data in record size of 100B (name, surname, phone number, id etc). Now there would be about 10 000 records of 100B each. I would put them in the dataTable. My question is : How much this dataTable would take 1 MB or much more Can I zip it or rar or tar, i mean pack somehow to file that i could send it trhough internet It is very important for me, to pack is as much as its possible to improve my application performance in network Please, can anybody help me Best regards, Hi, - For the size of the datatable, it will be a little bit more than 1MB. You will see by your self when u save the table in afile. - Of Course you can save a table in a file and zip it. To save the table in a ...Show All

  • Visual Studio Problem with code highlighting: TokenInfo class - How to calculate StartIndex and EndIndex properties

    Hi there, I'm using MPF to create the package for custom language. I have a problem with code highlighting implementation. The problem is following: Inside the ScanTokenAndProvideInfoAboutIt method I define the token Type, Color, StartIndex and EndIndex. tokenInfo.Color = TokenColor .Text; tokenInfo.Type = TokenType .Text; tokenInfo.StartIndex = startColumn; // int tokenInfo.EndIndex = endColumn; // int My lexer return the position of every token in (row, column) coordinates. All works perfect when I use spaces in my custom language sources. But when I use tabs - the token positions are moved . I guess that is due to difference in column position and char position. Using spaces - column index equals to ch ...Show All

  • Visual C++ Can you tell me how to convert long to BYTE?

    when i upgrading vc6.0 project to vc2005 project it has the following warning: Warning 233 warning C4244: '=' : conversion from 'long' to 'BYTE', possible loss of data e:\ooltip.cpp 1884 the code is as follows: BYTE *iDst ,*posDst; iDst =255*(i%2); //hard Can you tell me how to convert long to BYTE I appreciate your help. What exactly is it you want to do Have a byte pointer to an arbitrary address If so, you can do a cast, like this BYTE* p = reinterpret_cast<BYTE*>(255*(i%2)); I can't quite see what you hope to achieve with this, though, as the pointer will either point to address 0 or 255. ...Show All

  • Visual Basic Timer countdown?

    Hi, Ive looked for like 4 hours and this is only for fun... How do I make a timer countdown to midnight for example. And could there be answers with the time to countdown to as what would be select in a combo box thanks. Nothing to hard don't strain yourself trying to help me... Or instead of using timespan calculate difference in seconds. Something like the following Public Class Form1 Const SecondInHour As Integer = 3600 Const SecondInMinute As Integer = 60 Const MidnightTimeInSeconds = 86400 '24* 3600 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Timer1.Interval = 1000 Me.Timer1.Enabled = True End Sub Private Sub Timer1_Tick(ByVal send ...Show All

  • Visual Studio Team System Microsoft_VSTS_Build_FoundIn issue

    Hello, I have the following question about the Microsoft_VSTS_Build_FoundIn field. We don't use the Microsoft_VSTS_Build_FoundIn field by Team Build, but the field is field by a list of Suggested values by hand when adding a new bug in Team Explorer. Now I want to create a report which shall use that field in a query. But what I see is, that this field is empty in all tables I found in the TfsWarehouse database. What might be the reason efor that or: Where can i find all that FoundIn values, so I can use it in a report. Thank you in Advance regards Rolf Cerff Hello, I have the same problem, and I'm interested in any possible solutions. We do not have our builds running through TFS as ...Show All

  • .NET Development XSLT: search for specific nodes and nodes related to each

    Hi, Sorry this is going to be a long post but I felt it necessary to include source code. Here's a very small portion of my xml document: < xml version="1.0" > <xtvd> <stations> <station id="10436"> <callSign>KERA</callSign> <name>KERA</name> <affiliate>PBS Affiliate</affiliate> </station> <station id="10830"> <callSign>KXAS</callSign> <name>KXAS</name> <affiliate>NBC Affiliate</affiliate> </station> <station id="16123"> <callSign>TVLAND</callSign> <name>TV Land</name> <affiliate>Satellite</affiliate> </station> <sta ...Show All

  • Visual Studio Building a web form programmatically

    I am fairly new to the extensibility realm. I think it is a great tool but I have run into some issues. I am working on an add-in that will generate a basic application based on a database. Currently, the tool has no problem generating the necessary classes and thanks to some of the posts on this forum I have figured out how to add the code to App_Code folder correctly. The problem that I am trying to solve is to create the web form programmatically and then populate it with controls. I can dynamically generate the web form but I can not figure out how to add controls to the page. I would like to have the application write much of the codebehind logic to tie to the classes that the system generates also but until I can figure out the ...Show All

©2008 Software Development Network