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

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

dclements

Member List

ALFKI
fripper
Josibe
Info-Minister
ZopoStyle
ti_m
ZardoS42
db_guy
Paulustrious
ROLIVIER
heavenlycharmus
Renis Cerga
Vladimir Chtepa
GeorgeMohr
FH WANG
rajendra patel
Arjun B
ROBSR
hr0nix
Gerrit L
Only Title

dclements's Q&A profile

  • SQL Server INSERT command question

    I am working from C# VS2005 environment. My databases are in SQLEXPRESS. All tables have a unique Primary Key field. The key is just one field of int value that has seed 1 and autoIncrement 1. My question concerns a Stored Procedure that I just created. If "executed" fine. I did not get any compillation errors My question is: if I called this procedure from C# code with paramaters I specified will it create a NEW record for me which is my intent I did not specify the Primary Key field value: it is not among parameters. I hope that when the first record is created it will be seeded with value = 1 and the subsequent records will be autoincremented by 1 each time. Am I right If not then how shall I specify the Primary Key val ...Show All

  • SQL Server Sql Script

    hello I need to script my Db, tables and storedprocedures. so i can create another same DB Dim con As New SqlConnection(DBClass.Config.DBString) Dim cmdName As String = File.OpenText("pro.sql").ReadToEnd() Dim cmd As New SqlCommand(cmdName, con) cmd.CommandType = CommandType.Text con.Open() Try cmd.ExecuteNonQuery() MessageBox.Show("DB Created") Catch ex As Exception MessageBox.Show(ex.Message) End Try con.Close() Any suggestions No NameSpace called System.Data.Sql Second I told u im using vb.net 2003, and sqlserver 2000 any help ...Show All

  • Visual C++ Comiple Options?

    Can Some one give a discription or point to a artical that discribes about compile options normally I just use build(F6) and all works, but it won't anymore. I have a C++.NET project and I am trying to import a dll in it using syntex #using "mydll.dll" however I get an error that I need to complie my C++ Main.cpp file with comiple option /clr. but when i right click on main.cpp and edit the property to comiple with /clr option i get an error /RTC1 and /clr are incompatible. I disable /RTC1 and i get error for /GM and it goes on without ending...... wut do i need to know to figure out how i compile this any useful links thx Sameep There is a reply at http://forums.microsoft.com/MSDN/S ...Show All

  • .NET Development Sending SMS

    how do i send SMS using asp.net, if there is any way to write an application on sending SMS to mobile using ASP.NET code. if any one know pls. send me concept atleast. i have to submit it as project in my coolege. thank u Regards manoj you need to subscribe to some web service which will be an sms gateway. There maybe free ones but usually there is a charge on sending sms messages/subscription to their services. Once this has been achieved, you then simply read their API documents on how to use it, as its their webservice. ...Show All

  • Visual Studio Team System Error with TFS build, but not when I manually build with Visual Studio

    I created a solution and included two projects into it which build just fine using Visual Studio. These projects were created under my TFS Project. I then created a build task for that solution and the build task fails with the following: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(0,0): warning MSB3245: Could not resolve this reference. Could not locate the assembly "ABS.Common". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. BusinessClasses\EngineExecutionEnumHelper.cs(21,11): error CS0234: The type or namespace name 'Common' does not exist in the namespace 'ABS' (are you missing an assembly reference ) Busin ...Show All

  • Windows Forms Need advice designing Navigation system.

    Hello all, We currently have an old Access app that I am currently planning to convert to a VB.NET windows forms app. The navigation design of this Access "Switch Board" form is way too drawn out. It is made up of nothing but buttons in the middle of the form to show more buttons (if sub-drilling) or to open a form. Well, sometimes it takes 5 or 6 click throughs to get to the form I want to display. About 10 employees here use this system and are semi-happy with the existing navigation. Well I hate it. I look at it as if a new person came on-board, could they easily navigate through all those buttons. So now I wanna redesign the navigation to suit the existing users and be simple enough for new comers to navigate with ease. Are t ...Show All

  • Visual Studio Questions on Visual Studio 2003/2005

    Hello, I'd like to know which version is included of Crystal Reports in Visual Studio 2003 and 2005 I know in the 2002 (and 2003 ) it's version 9 (or equivalence) Also I would like to know which full Crystal Reports versions we can use with the .NET studios I've tested CR10 with 2003 and it fits but could XI work with 2003 for instance A list of compatibilities would be advantageous Thanks Sperin, I was having the same problem. I don't remember BO sending out an email on this update. And i didn't see it on there service packs / hotfixes page. I know there are quite a few developers that will run into this issue. Thanks Rick ...Show All

  • Software Development for Windows Vista psdk feb 2003 installation problem

    when i downloaded psdk feb 2003 from http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm , and followed the instruction to extract these cab files, an error message will show in the console: Error: Cabinet file PSDK_FULL.2.cab is corrupted. I downloaded this specific file again and again, still with this error when extract. you may suggest me to order a CD version, but i'm in China, how am i supposed to do that. anyone have chance could solve this annoying corrupted cab file, please help me out. thanks in advanced. Ayman Shoukry - MSFT wrote: Moving tothe windows folks since they might have more details. sorry, i post in the wrong forum. i have goo ...Show All

  • Windows Forms Steam, Runtime error

    --------------------------- Microsoft Visual C++ Runtime Library --------------------------- Runtime Error! Program: C:\Program Files\Steam\steam.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. --------------------------- OK --------------------------- Can anyone explain this to me and maybe give me a solution please Thanks Ken I don't know what else to say. Steam are the one's that should be resolving this issue for you, making you do the runaround is the most appalling service, but frankly nothing surprises me when it comes to that lot. I'm afraid to say that your only hope is to keep asking Steam to ...Show All

  • Windows Forms Form Load

    Hi, How can I confirm that a specific form was loaded I have some ComboBox events controls that are fired when I fill the combo (SelectedIndexChanged), and I want o prevent this. Thanks, Pedro You could register the events for your controls in the Form.Shown event. private void Form_Shown( object sender, EventArgs e) { // Your code here. } ...Show All

  • Visual Studio Is it possible to create Master Detail report with Drilldown(+/-) in asp.net 2.0 using Reportviewer

    Is it possible to create Master Detail report with Drilldown(+/-) in asp.net 2.0 using Reportviewer All Demos available on sites are for Windows App. ...Show All

  • SQL Server Saving a package to the package store vs. SQL Server?

    There must be a difference, but I don't know what it is. Can someone please explain the advantages and disadvantages of each method Thanks in advance.   Sean Schade wrote: Also, packages stored within MSDB are not managed by the Integration Services service.  Is this correct No, this isn't correct. They are both managed by the Integration Services service. Ok.  I just discovered that I was correct and you're incorrect. Packages stored within MSDB are not managed by the SSIS service.  I stopped and disabled the SSIS service, and was still able to store a package within MSDB.  However, it isn't possible to manage packages stored within MSDB through SQL Server Mangement Studio ...Show All

  • Smart Device Development MSDN Visual Studio 2005

    Has anyone encountered the following problem: I have installed Visual Studio 2005 MSDN version. I have the habit of creating a ghost image in case I screw up the machine during my development work. However, I noticed that once you have this version of VS installed, you can never create an image using Ghost 8.0. The strange thing is in the process of creating the image, there is no error and nothing but at the end of it, you just don't see the .gho file. Did anyone encounter this before ...Show All

  • Windows Forms Arbitrary child controls of DataGridViewRow

    Hi, I've been customising the DataGridView in order to make it work like the ones in the WSUS admin pages where a row can be expanded to show a completely new control. Only I'm trying to make it work in Windows Forms. I'm most of the way there, but I've hit a problem. As neither DataGridViewRow or DataGridViewCell inherit from Control, I have to make the DataGridView the parent of each child control and update the control bounds every time the rows paint. This causes a lot of sluggish movements when scrolling and also a problem when scrolling the row off either end of the window. I think what I need to do is somehow create a row that can be assigned as a parent to a control but as I can only inherit from one class I'm kind of stuck and don ...Show All

  • Windows Forms How to add ContextMenuStrip to menu item?

    Hi! How can I add a ContextMenuStrip to a menu item Matt Do this: menuItem1ToolStripMenuItem.DropDown.Show(); That should make it drop down the list again, mabee put it int he click event you amde that shows the context menustrip or somthin... Hope this helps :) ...Show All

©2008 Software Development Network