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

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

NaveenPN

Member List

P. van der Velde
boriss
Ujoshi
torg
SlowBowler
Sri Harsha
Adrian_78787
Aaron77
Prakash Paghdal
SAJU JOHN
shubn
.agony
Raghs123
duderino
Jeff2005
LouAbraham
Les Peabody
BriceIt
igorbaIT
Skaladar
Only Title

NaveenPN's Q&A profile

  • Windows Forms User controls

    I am currently a student on vb.net. I am creating a program that acts as a doughnut shop, the first user control identifies a selected customer id in a drop down box and shows the relevant customer details (name etc). The 2nd control i have is a datagrid that also needs to show the selected customers orders. The problem i have is the coding to get the two controls to communicate with each other, i need the first control to populate the data grid from the selected id. Any help would be great Many thanks Paul The drop down has an event for selected index changed. If you handle that event, you can then read ...Show All

  • .NET Development Collection(Of Thread) - Store Thread objects problem

    Hello, I have been struggeling for days with getting my application to work. It basically allows a user to download a file from a website, stop/resume the download and various other options. My problem is that i create a new thread for each file in the download queue. To keep track of all the threads created i store them in a Collection for later use. Example: dim MyThreads as New Collection(Of Thread) Now let's say MyThreads contains 3 threads. Let's abort the work on thread 1 (0-2) = 3 Dim CurrentThread as Thread = MyThreads(1) CurrentThread.Abort() How can i create a reference to CurrentThread so that it can attach ...Show All

  • SQL Server How to integrate reporting services with ASP.Net

    Hi My current situation is how to integrate my application written in asp.net to link to my report server's report  as by default anonymous user can access my report server's report without any authentication. how to configure to make the report server by using form authentication before access the reports  My Application Configuration Web application (Vb.Net) - http://192.168.1.18/mobiFO   Reporting services - http://192.168.1.19/reportserver/reports/mobiforeport DBMS - MS SQL Server 2005 developer edition + Reporting Services 2005 SP1   Thanks for your help. anything can email me at jack0726 ...Show All

  • Visual Studio Team System Sharepoint creation failed

    I have tried to read all the post on other reports of the same problem but I'm sure what helps. On my box (single server, clean Beta3 refresh install) ordinary Sharepoint site ceration works fine ( http://myserver/sites/test ) and checking the virtual server list shows the following: Name URL Version   Default Web Site http://w2k3server/ 6.0.2.6568   Team Foundation Server http://w2k3server:8080/ Not Installed Extend Could some Sharepoint "expert" tell me what to do before I do too much damage, Thanks Thanks for letting me think loud :-) I took the IIS road - and not it works - I'll create team project ...Show All

  • SQL Server Cannot open database

    My mdf file was deleted. I was able to restore the said file but unfortunately I can no longer open it. I have also noticed that the recovered mdf file was smaller than the file before it was deleted. What can I do to open the database file I have tried the following lines using osql utility. 1> use db1sql1 2> go Msg 946, Level 14, State 1, Server JDI11-31, Line 1 Cannot open database 'db1sql1' version 525. Upgrade the database to the latest version. Hi Paul! I got the following message upon execution of sp_attach_db. Msg 5180, Level 22, State 1, Server JDI11-31, Line 1 Could not open FCB for invalid ...Show All

  • Smart Device Development Detect ActiveSync/Cradle Connection

    Hi all, I need to sync data with a web service runing in my network when connect my device to PC. How can i detect if ActiveSync is runing in my device I'm using .NET CF 2.0 with a PocketPC 2003 device. I try to use OpenNetCF 2.0, but this release not includes "Desktop.ActiveSync" namespace. Thanks. Jose Miguel. In my forms I call this class on the form when a NEW Instance is created.. I found this info at : http://www.devbuzz.com/content/zinc_network_connectivity_pg1.asp In the form class... ---------- Public Sub New () ' This call is required by the Windows Fo ...Show All

  • Architecture Design Patterns

    What is the usage of common GoF design patterns in daily coding I ask this because as a developer I'm constantly trying to improve both my code and my overall design, to create software that's easy to maintain and easy to extend--- hopefully easy to change without effecting the 'client' aspect through the use of interfaces etc--- Is there a more straight forward application of certain design patterns For example, does anyone sit down and actually implement a bridge pattern in their code--- you read about it a lot, but only in academic articles, you equally read of people who find them absolutely useless most of the time... I don't think I ...Show All

  • Visual Basic Debugger is extremely slow

    Has anyone else experiance really slow debugging in VB.Net Beta 2 Yesterday was the first time I used it to step through code line by line and I was shocked. It's a simple project with one form using a datagridview and it was horrible. We are talking a 3 - 5 second delay every time I hit the F10 key to step over... Thanks, Aaron I have found a workaround posted here: Would this be sufficient for your team to try out (or have 1 of them maybe try this out to see if it solves the problem) http://lab.msdn.microsoft.com/ProductFeedback/ViewWorkaround.aspx FeedbackID=FDBK31126#1 The other workaround is to reset y ...Show All

  • Visual C++ Converting Project to Use msvcprt.lib instead of msvcirt.lib

    I am attempting to convert a project to use msvcprt.lib rather than msvcirt.lib.   When I run nmake on the .mak file I am getting an error 'unable to open msvcirt.lib'.   I have removed all references to msvcirt.lib in the .mak file. The error is actually occuring at the linking stage, so it looks like the reference is inside an embedded library. As far as I know I have successfully rebuilt all libraries used by the application with msvcprt.lib in place of msvcirt.lib. I am probably picking up the reference to msvcirt.lib through an include file, which includes an include file, which ....    Any ...Show All

  • Visual C# Custom collection like DataSet architecture

    Hi, I am trying to create a strongly typed collection that holds strongly typed collection of data (as like datatables), that would behave in similar way as DataSet holding multi tables. What would be the best way to implement Thanks.. ...Show All

  • Visual C# Abort sending email

    Hi there, my windows application offers the opportunity to send emails using SMTP_Auth. It works fine. I was just wondering if there is any possibility to abort the process of sending the email, once "System.Web.Mail.SmtpMail.Send(mail)" is executed. Imagine you send 20mb (which taked some time) and you want to abort. How can I do this Thanks, Finch82. As BJohnson said before, aborting the thread will not stop the request on the mail server. There must be a way, since every mailclient offers this possibilty. Thanks for any help, Finch82. ...Show All

  • .NET Development The Undo operation encountered a context that is different...

    This is not specific enough information for me to know what I did wrong and where. Does anyone have any insight to this It appears to have something to do with asynchronous socket I/O completion. System.Transactions Critical: 0 : <TraceRecord xmlns="http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord" Severity="Critical"> <TraceIdentifier>http://msdn.microsoft.com/TraceCodes/System/ActivityTracing/2004/07/Reliability/Exception/Unhandled</TraceIdentifier> <Description>Unhandled exception</Description> <AppDomain>PPSManager.vshost.exe</AppDomain> <Exception> ...Show All

  • Windows Forms Application Icon

    Hello everyone;   I want to specify an icon for my application. To do this I addressed an icon to the application icon path by the project properties. However, it would be preferably to do this at runtime instead of design time. In fact I couldn’t find any property which named as icon derived from Application object. So how can I specify an icon to my application programmatically   A short code example would be truly appreciated. Thanks. Hi; Thanks for your nice reminder, That was helpful. Be Success; ...Show All

  • SQL Server Stored Procedure being saved in System Stored Procedures

    We recently upgraded to SQL Server 2005. We had several stored procedures in the master database and, rather than completely rewriting a lot of code, we just recreated these stored procedures in the new master database. For some reason, some of these stored procedures are getting stored as "System Stored Procedures" rather than just as "Stored Procedures". Queries to sys.Objects and sys.Procedures shows that these procs are being saved with the is_ms_shipped field set to 1, even though they obviously were not shipped with the product. I can't update the sys.Objects or sys.Procedures views in 2005. What effect wi ...Show All

  • Visual C# blocking 2 of the same exe's from runing

    im building a client/server application and I only want to allow the user to run one client per computer, what are some ways to block that 2nd client from starting up on a comp that is already runing a client thanks One of the best ways to do this is for your application to define a mutex that identifies your application to other copies of itself. Below is the code I run for this task: System.Threading.Mutex singleInstance; private bool AmIAlreadyRunning() { singleInstance = new System.Threading.Mutex(false,"MyApplicationNameMutex"); return !singleInstance.WaitOne(1,true); ...Show All

©2008 Software Development Network