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

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

napilut

Member List

Mark AC
ZHOU Dan
barca_sp
StuartPreston
rex letor
mp5k
Li Wang
Hans Pettersson
kungfusheep
Maths
Harish Krishnan
bdaniel7
Ying Fa
Ryan Taylor
the_apache
Hilarion
Koolkanadia
kvkris
CoreStar2000
1337
Only Title

napilut's Q&A profile

  • Visual Studio Team System UIApp Revisited

    Back to the UIApp hidden field. Apparently, the real issue is that it needs to be grabbed in real time. A user fills out a form and submits it to create a new application. After submission, UIApp is created by the server, supplied with a value and is sent client-side with the next web page. That page is created client-side referencing UIApp. So far during web testing, I have to supply a static value into the test for the first appearance o ...Show All

  • Visual Studio Express Editions Disabling Buttons

    I'm in the proccess of try to create a program that, at log in the user must accept the terms and conditions but I'm having trouble of diabling things like the windows key to stop people for bypassing it, does any one know of any coding I can put it to disable these buttons. Any help would be greatly apreciated Cheers Buttons include: Windows Key Windows Key + .......(e.g "e") Ctrl+Alt+Del any other that I've o ...Show All

  • Visual C++ Express and VS Standard

    Hey, I was thinking about buying vs standard 2005. I develop mostly in c++, so I was wondering what the advantages are of the standard version comparing with the express version It really depends on what technologies or features you will be using. Take a look at http://msdn2.microsoft.com/en-us/library/hs24szh9.aspx that compares the different editions and features supported in each. Hope this helps! Than ...Show All

  • Software Development for Windows Vista Serialization error and SQL persistence service

    Recently, I've been tearing my hair out because of strange serialization errors being reported when I start my workflow which is hosted to use the services of the SQL persistence service. In trying to track down the issue I deleted most of my code but still got the errors - which reported references to deleted code! I tried deleting any cached DLLs, clean rebuilds etc to no avail and then seemed to stumble on the answer - which is unfotuna ...Show All

  • Visual Studio Crystal 8.5 and VB6 runtime error

    Hi, I got two run-time errors when printing two different reports with subreport. The first error is: Run-time error '20544': Error in the File UNKNOWN.RPT: Access to report file denied. Another program may be using it. The second error is: Run-time error '20406': Unknown Subreport name Both report work fine but only fail to print in some cases and return the errors above. I am using Crystal Report 8.5 and Visual Basic 6.0. ...Show All

  • Visual Studio Express Editions Putting a 12 hour clock in a group box

    Hi VB Pros, I was able to put a simple 24 hour clock in a group box as a label. Is it possible to put a 12 hour clock in there Thanks, Is there a book/s that detail this kinda stuff Elgee How did you do the 24 hour clock With DateTime.Now and a timer If so, the 12 hour clock is just a rendering detail - if the hour > 12, subtract 12 and put PM after it. ...Show All

  • Windows Forms Listview problem when modifying a item(or subitem)

    Hi all!! This is the first time that I post here, most of the times I found the answer without posting. Well, I have this listview populate with the contents of the Windows Meida Player library, I also have a dialog form to change the metadata of the media. When I right-click the row of the item I want to change this fomrs comes up with all the info about that item(artist ,album, etc) and I can change it; but it doesn't show inmediatly in the li ...Show All

  • Windows Forms ClickOnce Signing Problem

    I have a problem deploying my ClickOnce application.  I have built my Clickonce application with visual studio 2005 Beta 2 and signed the Manifests with a Verisign Code signing certificate.  I publish it to my IIS server and then run it from my development pc and it installs and runs ok.  I then go to another pc and try to install it (over ClickOnce) and I get the error "the deployment identity at the deployment provider is not th ...Show All

  • Visual Studio Team System Data driven Load testing

    I want to do run load testing, but make it data driven so that each instance uses a different 'user'. From what I see in defining web tests, you can make them data driven, but I don't see how to make each instance use a unique record from the data source. It appears to run for all records in the data source. Suggestions Thanks, Tom Here is the answer copied from out FAQ list. Q: How is load test execution affec ...Show All

  • Smart Device Development C++ DLL for VB smart device app

    Hi everyone! I'm a beginner so please forgive me for asking this... I'm trying to create a c++ dll for a vb app, I'm still learning and following tutorials from the net. While I'm pretty sure I got the C++ writing part, my VB app terminates due to an unhandled exception of type 'System.MissingMethodException' (Can't find PInvoke DLL 'emptydll.dll'.) I don't understand what I did wrong. Some questions I have are: Do I need to place the DLL somewh ...Show All

  • Software Development for Windows Vista WWF Thread Safety on Windows Forms

    I would like to implement all my windows application logic based on workflows. This is, even the actions of showing forms and all possible pre and post actions. This way I could customize an application for a customer without needing to change code... The problem is that, as far as I know, the instance can only run on a different thread than the UI process... this way, for example, I can't open a MDIChild on a workflow... Can I run the workflow ...Show All

  • SQL Server ansi padding issues 64 bit vs 32 bit

    Hi all. I'm using the SQL 2005 partitioning schemes to keep 5 weeks worth of data in a table, swapping in a new week and getting rid of the old week. It works fantastic in a 32 bit environment, when I try it in a 64 bit Itanium cluster, I start having issues with the schema's (specifically the ANSI PADDING) being different between my partitioned table and my "Archive" table, the one that I'm switching the old data out to. When I ...Show All

  • SQL Server Looking for a Web Hosting Company for SQL Server Reporting Services

    I have a fairly large consulting project that I will be working on soon that will involve me building a web application using Vb.Net 2005, ASP.Net 2.0, SQL Server 2005 and SQL Server 2005 Reporting Services. The problem is that I have not been able to find any web hosting sites that support SQL Server 2005. The only company that I found that came close was DiscountASP but they only support SQL Server 2000, which I understand you can’t use with ...Show All

  • Visual C# exception handling

    hi friends am new to c# and am developing a small app. my question is how can i create global exception handler which displays/handles  error messages whenever there is one. what am i trying at the moment is am using try..catch whereever i think the could b an error .for example conn.ConnectionString = @"Application name=myapp.net;data source=myserver;database=mydb;user id=" + cUid+ ";pwd=" +cPwd; try { conn.Open(); // opening a sq ...Show All

  • Windows Forms Setting datagrid column width ??

    Hi, How do I set the datagrid column width such that it fits datagrid column's header text or the length of the cell with maximum length. Thanks, Try this. dataGridView1.Columns(1).AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells ...Show All

©2008 Software Development Network

powered by phorum