Henrik Goldman's Q&A profile
Visual Studio Database Prompt When Loading Reports
Hello EveryOne I am using Crystal Reports .Net 2003. I am connecting my report with three tables and as soon as i loads my report it prompts me for a database login asking for 1. Server Name 2. Database Name 3. UserName 4. Password No matter whether you are passing right information or wrong information it is not allowing you to login. So please Someone help me out in solving this problem. I am really facing hell of a problem due to this screen. . Will wait for r ...Show All
SQL Server Sql server 2005 trial edition
Hi , i am trying to install Sql server 2005 trial edition , There were 3 types of files for download Self-extracting executables: X86 Executable X64 Executable IA64 Executable Didnt know for which they are applicable , i have a windows xp professional SP2 I downloaded "X86 Executable" . Then tried to run the setup.exe file . It says installing Sql Server 2000 but i want Sql SERver 2005. I have checked couple of times and am pretty sure that i have downloaded sql server 2005 trial version and not the 2000 version. can some one help me Thanks red If you run the downloaded package it will instal SQL Server 2005. X64 and IA64 packages are SQL Server 2005 for 64-bit platforms x64 for AMD ...Show All
Gadgets This is not a valid gadget package!! grr!
hey, So i finished creating my gadget, i use winzip to zip it up to mygadget.gadget and then double click to install... However it just says: This is not a valid gadget package The gadget works if i move the folder to the windows gadget directory! Does anyone know how to fix this problem Regards gadget.xml < xml version="1.0" encoding="utf-8" > <gadget> <name>The Bay Radio Player</name> <namespace>The Bay Radio</namespace> <version>1.0</version> <author name="Nicholas Williams"> <info url="www.thebuild.org" text="Build.org" /> <logo src="logo.png" /& ...Show All
Windows Forms Query in MessageBoxDefaultButton.. Very important
Hi, I have a code like "MessageBox.Show(this,errorMessageAdaptor.ErrorMessage, SapphireConstants.WARNING_MSGBOX_HEADER, MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1)" implemented in a menu item click event and this menu has a key board shortcut as CTRL + S. On clicking the menu, the OK button in the MessageBox doesnt have the dotted rectangle indicating that it has the default focus. But while using the keyboard shortcut i am able to see the dotted lines around the OK button in the MessageBox. Could someone please explain on why this is happening and how to resolve this Hey, Thanks for the reply. I do have a fix. What i thought is that i can create a form similiar t ...Show All
Visual Studio Express Editions Integrating command prompt into coding of VB program
I know taht you can intregrate command prompt into a visual basic program - at the coding level, however I've forgoten what the prefix for this is - can anyone help Cheers In VB 2005, you can also get the command line parameters through the use of the following property My.Application.CommandLineArgs http://msdn2.microsoft.com/en-us/library/z2d603cy.aspx The My implementation is just a helper class which actually calls other methods in the .NET frtamework . ...Show All
Visual Studio Express Editions I can't connect with SQL Server 2000
I am using visual basic express edition. in the data sourse there is no driver displayed for sql server 2000 rather sqlserver 2005 express edition. how can use sql server 2000. Imports System.IO Imports System.Data Imports System.Data.Common '' The sqlnet class with the KN2 Project Imports System.Data.SqlClient Public Class SqlNET 'This class is a class of I/O routines that knows nothing about the application. It knows only about I/O. 'It can be considered the bottom layer. All through the code, this class is instantiated as instance ioEngine Protected m_ConnectionString ...Show All
Windows Forms Calling a Dialog Button Control
I have a dialog box that has an OK and Cancel button. The OK button returns an OK dialogresult to the calling program. I want the Doubleclick on the datagrid to send the same result the OK button. How can I call have the Doubleclick event do this I would like to use the same code as the OK Clicked event if possible. Thanks Hi, I guess in this case it might be best to invoke OK button's Click event by calling it's PerformClick() method [e.g. okButton.PerformClick();] from your DG's DoubleClick event. Andrej ...Show All
Smart Device Development How to remove the Ok button on a Form?
hi, guys,, We know when we creat a form in CF, and there is a little Ok button on the right top corner. Clicking it will close the whole application. I need to remove it or hide it. I will have a Close or Exit button on my form. Does anyone know how to remove that ok button Thanks. DeamonX wrote: What does "CF" mean Uhmm, we are in the C ompact F ramework section... To get rid of the 'X' and/or 'OK' from the top-right corner of the Forms set the 'Minimize' and 'Control Box' properties on the Form designer to 'False' for the Form you want to do this to. Thanks ...Show All
Visual Studio Express Editions Visual Studio Express 2005 - Multiple Projects
Hi , I have trouble figuring out adding projects to the existing project in ASP.NET using express edition. Here is what something I intend to do : --Main (Project) ---DBHelper(Project) ----Class1.vb ---Business Layer(Project) ----Class1.vb --Default.aspx --Welcome.aspx I did thing many times in 2003 version, but not in 2005 express edition. has somebody done it Is it possible Thanks in advance. ~RCandy I'm Sorry rmscandy. This forum is for posting questions concerning the express version of Visual Basic only...Pleas see the following forum for questions regarding asp.net http://forums.asp.net/ ...Show All
Audio and Video Development Tools and Resources for Authors
I'm a professional web developer interested in iHD/DVD authoring. At this point it is pretty difficult to get going due to lack of tools and resources and documentation. I am proficient in xml and javascript, but this is a slightly different bird for sure. What I am trying to figure out is - are the lack of resources a symptom of being early to the process, or is it a symptom of the content authoring industry (proprietary thinking) Please use HDDVD Validator on this sample ; you are likely to find plenty of errors and lots of warning.Also it seems HDDVD Validator does not recognises .xts extension file.So for that try pasting Jump.xts code in the file where Jump.xts is being included that is in T1.xmu. For rest proceed as shown in v ...Show All
Visual Basic Passing a Structure
I am attempting to pass a structure from one DLL to another. The Structures are identically define in each DLL (Cut-and-Paste), but compiler complains it cannot convert types. I've tried the usual 'fixes' -- moving code around, changing ByVal to ByRef, etc., etc., etc. No Help. Any ideas ERROR: Value of type 'LPM.Menu.User_Data' cannot be converted to 'SS.clsUpdates.User_Data' <CODE> ' ' In One DLL ' Public Class Menu #Region "Structures" Public Structure User_Data Dim ID As Integer Dim Role As String Dim Preferences As String End Structure #End Region #Region "Variables" Public UserData As User_Data #End Region #Region "Update" Priv ...Show All
.NET Development Some how the update command is not working.
Hi, im using Web Forms Im trying to update the database but the query is executed correctly and th database is not updated but the returned message is 1, I really dont know whats causing this here is my code. private void UpdatetheDatabase( string connection) { SqlConnection connect = new SqlConnection (connection); SqlCommand update_customer_details = new SqlCommand ( "UPDATE [app_CustomerDetails] " + " SET [Name]=@Name,[City]=@City, " + " WHERE [ID]=@ID" , connect); update_customer_details.Parameters.Add( "@Name" , SqlDbType .NVarChar, 50).Value = txtCustomerName.Text; update_customer_details.Parameters.Add( "@City" , SqlDbType .NVarChar, 50).Value = txtCi ...Show All
Audio and Video Development Production Method for Released HD-DVDs
I'm curious, have all the currently released HD-DVDs been produced using SACA (Sonic) If not then what are the other tools That depends on your encoding tools... some are better than others, and it has nothing to do with how efficient the codec itself is. Remember, pretty much every released HD DVD title is in VC-1, and for good reason. VC-1 is not only easier to encode , it is also easier to decode , so will work better on lower-end PCs. ...Show All
Windows Forms Combo Box In DataGridView
Hello All, I'm facing some problem while using a combo box in a datagrid view cell. Let me discuss what i'm trying to implement... Suppose i've a datagrid which have some rows. I want that one of the column of that datagrid will be a combo box. But couldn't implement finally as i am very novice in C#. Like, i've 3 columns,like... Booking Id ---- Description ---- Status 1 Test1 "Accept" 2 Test2 "Deny" 3 Test3 "Pending" **** I want that the "Status" column will be a combo box so that i can choose the status("Accept","Deny","Pending" in the above example) from a drop-down list and set ...Show All
Visual Studio Team System Can't browse work items
hi we are having a strange problem and i think its related to our environment as i didnt found anything similar to it on the net. The problem is few(particular) of our team users can't browse the work items at all i.e. none of the query returns any workitems, wat we have to do is to remove them from the project and add again then they can view the work items. It started happening quite frequently now like 4-5 times in a day. Any hint, clue why its happening regards faraz Hi, Check on the permissions. Work Item Tracking Area-Level Permissions Area-level permissions are specific to a single project's users and groups. You can set these permissions by right-clicking the project in Team Explorer ...Show All
