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

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

su45937

Member List

cosmmm
tampa_dba
ONEWORKNGRL
NetPochi
Martin Mason
dagfari
India_2007
leleu
Dark Pontiac
Trevor E Hilder
mspinder
thomas_schmidt
BillyB
pankaj sharma103086
mobigital
oaix
jerrykur
Kendal Walton
gkostel
jiggs
Only Title

su45937's Q&A profile

  • Gadgets created gadget. not in list.

    I built a BASIC gadget from the step by step process on the MS site...it is in the directory and all files are in place, however, it is not on the gadget list when I go to add gadget... Do I have to go through an install process for the gadget and if so how would I do that Not sure what I missed. Thanks, Chris I spent an hour trying to make that example gadget.xml work from the technet site and it was fruitless. Modifying one in the C:\Program Files\windows sidebar\Gadgets\ folder worked like a charm. Thanks for the fix! ...Show All

  • Visual Basic IDE adds decimals

    Hi! This odd behavior started the other day and I can't seem to find why this is happening. Let's say I have a "dim myVar as single" When I type : myVar = 0.8F The IDE changes it to : myVar = 0.800000012F Any idea why this happens Thx! Ha ! I just went through the Add-In manager and found out that there was an entry for Rational Rose. I unchecked it, restarted the IDE and there you go ! 0.01 stays 0.01 ! Strange stuff ! Thank you so much for the tip ! ...Show All

  • Windows Forms Cell value while in edit mode datagridview

    Is there a way to get the curent value of the cell while in edit mode Example, I am typing a letter in a DataGridViewTextBoxCell, and I would like to get current value Also, is there an event for the DataGridViewTextBoxCell, which is fired when the user changes its value, also while in edit mode Goran Noone responds Is it that difficult to achieve such thing This scenario is a common one, not something that is very rare. I have managed to find some way to raise KeyUp event for the editing contol. Private Sub DataGridView1_EditingControlShowing(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewEditingControlShowingEventArgs) Handles Me.EditingControlShowing      & ...Show All

  • Visual C# User Control Parameters

    Hi, i want to build a user control for "Menu Navigation Bar". The parameters for the User control should be in a form of item list. For exsample : <menuitem text="About" address="about.aspx"> <menuitem text="Contact US" address="contact.aspx"> ...etc ho do i expose such Parameters in the user control Thanks Basically, you just create public properties: private string _text; public string text { get { return _text; } set { _text = value; } } private string _address public string address { get { return _address; } set { _address = value; } } ...Show All

  • Visual C# Copying Files

    Hi Everyone, I needed a little help with copying a certain file type from one folder into another. For instance copying all the .dll files from one folder into another . All help is appreciated I know i can use the System.IO.File.Copy to do it but how do i specify just a certain file type not a file Agent00 wrote: Hi, Does anybody know why I can't copy/move files from "Temporary Internet Files", but I can for other folder Thanks in advance Jason This thread was marked as complete, you might want to post your own thread with that question ...Show All

  • Visual Basic Is there any way to create DXF files from within VB?

    I am developing some general purpose engineering programs with Visual Basic and they make heavy use of GDI+ for printed output. Nevertheless, the capability to export graphical data in DXF format would be a very welcome addition. Is there any resource, books or white papers, where I can learn about DXF creation http://www.google.com/search sourceid=navclient&ie=UTF-8&rls=GGLD,GGLD:2005-07,GGLD:en&q=dxf+file+specifications DXF - Autodesk Drawing eXchange Format Users are required to pay $4000US for a license to AutoCAD in to obtain the specs for this newest release of DXF file format. The official specification for ... www.faqs.org/faqs/graphics/ file formats-faq/part3/se ...Show All

  • Visual Studio Express Editions Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance.

    when i tried running personal web page, starter kit provided in Visual Web Developer, I am getting this error : Server Error in '/WebSite6' Application. You can download SQL Server Express (required to run this application) here: http://msdn.microsoft.com/vstudio/express/sql/download/ ...Show All

  • Software Development for Windows Vista Digital Signature.

    How can we obtain digital signature for the existing application Is it neccessary for running it on Windows Vista Hi Oliver , I have this confusion because of what I had read in compatibility CookBook ,there it is said "All 64-bit drivers have to be digitally signed for Windows Vista 64-bit editions. Unsigned drivers are not supported and cannot be installed on 64-bit Windows Vista" in the Windows Vista 64-Bit section. And is the siginig process is done by the Verisign during Vista Logo Certification or we are provided with some files to sign it ourselfs Please clarify me on the above mentioned doubts. Regards Vikas. ...Show All

  • SQL Server Stored Procedures

    SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO What are these used for Also, the procs I've seen in the past always dropped the procs before creating them. From what I'm reading, it looks like you should use the 'Alter' stmt. instead so you don't have to re-do permissions. Is this correct Unlike ALTER , DROP/CREATE will clear permissions. You typically use drop/recreate for script robustness i.e. : the script will work regardless of whether or not the objects exist. Conversely, an alter script will fail if the proc does not exist. The 'best' method is a drop/recreate with an explicit permissions grant afterwards, however, if you know all the objects already exist, then an alter script is the easist as you do not need to wor ...Show All

  • Visual Studio Report Viewer Distribution

    I have done some searching through various places on MSDN and the internet in general. I am trying to find the best way to distribute the Report Viewer controls automatically to the end user's of my application. I have found the following link on MSDN. http://msdn2.microsoft.com/en-us/library/ms251723(VS.80).aspx However, in my Prerequisites dialog box, I have the following entries: .NET Framework 2.0 Microsoft Visual J# .NET Redistributable Package 2.0 Windows Installer 3.1 SQL Server 205 Express Edition Currently, the .NET Framework 2.0 is checked. But there is not an instance of the Report Viewer Redistributable package as the MSDN link refers to. I also found a link on the internet "Hacking the Report Vi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Jerky sprite movement, too much keyboard sampling?

    Hi all, A question if i may, i have installed XNA and all the necessary gubbins, and have walked through the tutorial on learnxna.com I am just trying out the basics at the moment and am attempting to get a user controlled sprite move across the bottom of the screen, on the x axis, responding to left and right keys. This works fine. When a space bar press is detected, a projectile object is created, in the same place as the bottom sprite and is added to a class scoped arraylist (for storing projectile objects). In the update method, the array list is looped and any projectiles created have their position updated (so they move up they axis). The array list is looped and draw in the relevant positions in the draw method. This rea ...Show All

  • Visual Studio Express Editions error??

    I can't find that error in my code. Can anyone tell where to look ArgumentException was unhandled Cannot bind to the property or column Data on the DataSource. Parameter name: dataMember thats what I'm inserting in my database: Dim datasave As New MaintenanceDatabaseDataSetTableAdapters.MaintenanceTableTableAdapter If ComboBox1.SelectedValue <> 0 Then datasave.Insert(HoursWorkedTextBox1.Text, HoursWorkedTextBox11.Text, ComboBox1.SelectedValue, DateTimePicker1.Value.Month, DateTimePicker1.Value.Day, DateTimePicker1.Value.Year , FirstNameTextBox.Text, LastNameTextBox.Text, DescriptionTextBox1.Text, ComboBox1.Text) ...Show All

  • SQL Server load files

    the connection string in my application daynamic ..changed by changing the development environmet ..how can i load a data from file to sql server destination without hard coded the connection thx Begin here: http://msdn2.microsoft.com/en-us/library/ms137592.aspx ...Show All

  • Visual Studio Express Editions image with grid coordinates?

    Hi, Is there any way to define an image with grid coordinates in order to use the mouse over event Ken A small box like area on the image say 20 x 20. Using the same units that are use in e.Graphics.FillRectangle(Brushes.LawnGreen, 21, 66, 13, 7) . I think the units are pixels. ...Show All

  • Visual Basic converting web page to MSWord doc

    I am using Word 2002 with Visual Basic 6.3 and attempting to write a macro to convert web page to Word doc, format text and delete forum "Reply" links. would like to take web page source and manipulate text or copy/paste then run macro. having a problem identifying hypertext links to delete from page. What is the best approach and what are possible keywords in order to leave a nicely formatted Word doc I would rather code in VB.NET but this is the version that comes with the Macro Edit in Word 2002. I assume that VB.NET will run on an installed dotNET CLR with Word 2002 but how do I substitute VB Express to edit the macro code And does the VB Express IDE know to call the code in the open web page ...Show All

©2008 Software Development Network