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

Software Development Network >> Rory Surname's Q&A profile

Rory Surname

Member List

Tyraslin
mrg209
thames
muelle60
Robert Bell
Takrim Khan
Delphieur
Steve Nelson
KeithS-MS
ozgurbk
Marshes
Leonardo Luduena
Tindy413
Casey S
mnlarsen
Ad Kalaf
david2112
Davide Ling
Pat_ON
Phil Lucido - Microsoft
Only Title

Rory Surname's Q&A profile

  • Smart Device Development Device Emulator and connection to internet

      Environment     vs2005     windows mobile 5.0     ActiveSync 4.0       Question:    how   Device Emulator  connection to internet    thanks      Hi! I have installed the MS VS 2005, and  active Sync 3.7.1, but i cannot connect to the emultator. It says " cannot conenct to device, Error:0x89731304" What can i do ...Show All

  • SQL Server Change product key of SQL Server 2005

    Is there any way to change product key after installation of SQL Server 2005 or must be SQL Server reinstalled. We have used wrong one for our customer because carelessness. Any problem if customer use product with old product key, but have a legal licence for product Hi, see if you can change that: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\90\ProductID HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Web Application and dates

    Right i've been learning VS 2005 and Crystal Reports XI R2. Now i have a simple report running fine on both my machine (i.e. development machine) and on our web server. The only thing is on the web server when i view the page the date is in the american format i.e. mm/dd/yyyy and on my it's the UK format dd/mm/yyyy (i'm in the UK btw) I've checked the region settings on the server and all are set to UK. The report if i run it in Crystal XI R2 comes out as UK date as well. Any ideas Is it down to the IIS Config ...Show All

  • Visual Studio Replace a ProjectItem with another with the same name via DTE

    Hi! I'm having another little problem with DTE... I'm using GAT (Guidance Automation) to execute some code when a project template is completely unfolded. In my project template, there is a link item (a file that appears in the project but that isn't in the directory) but because of some GAT/Project unfolding mixup, the link is not pointing at the right place. I'm attempting to solve the problem via DTE after everything is unfolded. Here's what I do : - Find the containing project - Find the ProjectItem that is the bad link - Use Remove() and Delete() on the ProjectItem to get it out of there - Then use the containing project's .Proj ...Show All

  • Windows Forms Shutdown mode

    I'm lost, I'm using Visual C# 2005 express edition and I can't find shutdown mode so i could change it to When last form closes. I went on My Project properties - Application tab and couldn't find it. I wasn't able to find it in any tab. Could please someone help me, thank you in advance. Take a look in Program.cs as that is where the application starts. Application.Run(new Form1()); As soon as Form1 closes the application is done, you can change this to work differently. I rewrote a sample to run as long as a menu attached to a notifyicon didn't receive to exit the application. http://forum ...Show All

  • Visual Studio Express Editions New to C

    Hello. I was interested in programming in C and of course I bought a book. However the book is a little outdated, so they describe how to use the tools such as the compiler, etc. They teach you how to compile and link everything with Borland and Microsoft Visual C++. This book is C For Dummies, printed in '96. I downloaded Visual C++ and it has WAY more features than the one in the book has. I'm lost. Starting out he teaches you to do the usual "Hello world!" script, I started a new project, created a C file, typed in the code, saved it and... How do I compile I tried the Visual Studio command prompt, placed the C file where they told me ...Show All

  • Visual Studio "The specified share path cannot be accessed by the SourceSafe Web Service."

    Hello! Ok, we tried all possible configurations that we found in this forum and still having problem with access: "The specified share path cannot be accessed by the SourceSafe Web Service." We even created Admin user with all rights and empty password + specified it in the VS plug-in settings (Login ID). Yeah, we do not use SSL. it looks like we connect to the service perfectly, but then we fail somewhere.... could anyone write a detailed guide step by step with all permissions and so on to resolve this problem We would very appreciate it!!! system: server win2003, SP1, VSS from DVD with VS 2005 client: winXP sp2, VS 2005 Beta 2 p.s. Yeah, ...Show All

  • Windows Forms Pass Values from Formview child controls to unbound textbox

    I have created a formview that is bound to a table in an Access database with an AccesDataSource object. How do I pass the values contained in the labels in the formview to unbound textboxes outside of the formview   < asp : FormView ID ="FormView1" runat ="server" DataSourceID ="AccessDataSource2" Width ="519px" Visible =false HeaderText ="Company Address" HeaderStyle-Font-Bold ="true" > < ItemTemplate > < table style ="width: 557px; height: 91px"> < tr > < td style ="width: 100px"> Address: </ td > < td style ="width ...Show All

  • Visual Studio Express Editions 2 windows open when i click F1 in VB code

    when i click F1 in certain code of VB , my library help example( help1.chm) and VB help are opening. actually should open. closing VB help , my library help is also closing , therefore something related to parent relationship. how to hide or remove the VB help when i click F1 on related to certain help(.chm). ...Show All

  • .NET Development Database retrieve value on the same row

    Hey guys, I got a table that contains for example student id and the student name. when the user enter their id, i want to compare their id with the id in the database and then pull out their name on that same row. Say Student id 1 belongs to a student name John Student id 2 belongs to a student name Smith Now this is what i got so far If  studentid = objDataSet.Tables( "Student_Table" ).Rows(0).Item( "StudentID" )) Then PrintoutStudentName = objDataSet.Tables( "Student_Table" ).Rows(0).Item( "Name" ) End If So when i enter 1 for student id it should give out John and Smith for student id 2 rig ...Show All

  • .NET Development IStream.Read documentation

    The msdn documentation for IStream.Read says the following about the pv parameter: When this method returns, contains the data read from the stream. This parameter is passed uninitialized. What does uninitialized mean here As far as I can tell this method does not work as expected unless pv is a byte array with length equal to the cb argument. If I use the interface from C# it wont even compile if I leave pv uninitialized. Instantiation is slightly different than initialization. You instantiate a variable when you create it using new or by simply using a declaration statement. However the initial v ...Show All

  • Visual C# Accessing an Array using Propery

    Hi, I am using properties for Setting and Getting data values, such as, public string ModuleExists{ get{ return moduleExists; } set{ moduleExists = value; } }//end public string ModuleExists How would one use the above concept if the moduleExists is an array of values Thanks Jeff public string[] ModuleExists { get { return moduleExists; } set { moduleExists = value; } // remember this lets them set a whole new array. If this is not desired then remove it } ModuleExists[5] = "some new value"; Your question wasn't very clear so I just posted some pote ...Show All

  • Windows Forms Inside datagridview - filter value of 1 combobox based on 2 combobox selected value

    Hi friends, Please note that both the comboboxes are unbound and are inside the datagridview. I have a datagridview with 2 comboboxcolumns - one showing the "category" and other the "sub category". Category and Sub Category are related tables - 1 to many. When I select the value from Category comboxbox, the sub category comboxbox should only display values which are applicable based on the selected category. Any ideas - VB only . thanks Create a relation between Categories and Subcategories tables using DataSet Designer. Set the DataSource property for your Categories co ...Show All

  • SQL Server prorating the date fields with cost

    Hi all I have got 3 columns in my table- start date,finish date and cost..in the following format... start_date finish_date cost 12/12/2000 20/12/2000 $2000 01/09/2000 12/10/2000 $400 Now if the month and year of the start and finish date is same, the cost remains same... but if the month of the two dates are different, i have to distribute the cost between the two months by calculating the cost for the number of days for both of the months.. but i am not able to figure out how i am using sql 2005 .. my table has got about 1 million rows... pls help..... dll is as follows GO CREATE TA ...Show All

  • Windows Forms Disable window

    i have a window where there is an option button. when i click on the option button it opens the options form. What i would like to happen is to make the main form dissable until the person closes the options window. Possibly even not let them click on the main form until they are done with the options form. Well the mai ...Show All

©2008 Software Development Network