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

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

Dima671

Member List

Robson Previato
Fabián Imaz
AmphireDude
Jahfer
Some Developers
applechen
khaaaalil
Cybersurfer
S_R_M
bfranz
RaimondB
lastan06
Crispin
J4m3sB
Lynn Roth
Scott Ritter
NewToC#
BasildonBond
Nicolas Coderre MSFT
ayala
Only Title

Dima671's Q&A profile

  • Visual C++ Debugger's Bug?

    I encountered a weird thing about debugging in Visual Studio 2005 Professional. You could try it in your VS. May be it is a bug. 1. Make sure the "Debug" toolbar is dragged out. All the operation is on it. 2. Set a breakpoint. 3. Start Debugging from the Debug toolbar, wait until reach the breakpoint. 4. Stop Debugging and immediately Start Debugging. After you stopped debugging, it will take about 1 second that the "Stop Debugging" becomes unavailable. Just IMMEDIATELY Start Debugging when it is still available. 5. Now you would notice: 1) Program stopped at breakpoint; 2) Continue Debugging is unavailable (which should be available) ...Show All

  • Visual C# How do i make textbox unselectable ?

    I have readonly textboxes on my form ... how do i make them unselectable ... so that editing cursor does not apear in those textboxes when i click on them As Cablehead said you should set Enabled and/or ReadOnly to false.  A TextBox is the best way to go when you want the user to be able to select the text but not edit it.  Labels can't be selected at all that is why most modern error dialog use text boxes.  I think even MessageBox now uses a text box.  The difference between the 2 properties is important.  Enabled prevents selection and interaction completely.  ReadOnly permits selection but prevents inter ...Show All

  • SQL Server Calling child package out of process fails with Access Denied.

    Has anyone ever used an Execute Package Task to call a child package, and the Execute Package Task's ExecuteOutOfProcess = True Unless the account it runs under is an Administrator on the box, it fails for me with "Error 0x80070005 while loading package file "C:\program files\microsoft sql server\90\dts\Packages\ETL\Fact_SalesTransaction_Tracking.dtsx". Access is denied." This is eating up hours and hours of my time, time we can't afford. Is anyone able to successfully call a child package out of process Unfortunately I have faced the same problem. This only happens when you're executing the package from SQL ...Show All

  • Visual C# Set a text field to type ahead?

    You know in outlook or outlook express when a user starts typing an email address, the field populates an address or text that was previously typed there before.  How exactly is that done Is Outlook just reading that out of a hidden text file I would like to enable some sort of type ahead on a text field like they do it in Outlook. This feature is available in Windows Forms 2.0. (i.e. You have to be running .NET Framework 2.0.) It is called AutoComplete. Simply set the AutoCompleteMode and AutoCompleteSource (and possibly AutoCompleteCustomSource) on your TextBox and you should be in business.   http://msdn2.microso ...Show All

  • SQL Server can you build a report model on an Access MDB?

    Simple question, did not see a ready answer on msdn ...Show All

  • .NET Development Populate C# Datagrid with XLS file

    Hi All, How do I allow a user import an XLS file into a Datagrid on a form in C#. Also, what is the proper syntax to add Columns on the fly Thank you, Paul Start here: How To Use ADO.NET to Retrieve and Modify Records in an Excel Workbook With Visual Basic .NET http://support.microsoft.com/default.aspx scid=kb;EN-US;Q316934 The above article also contains references to several other articles on the same topic. Regarding adding columns on the fly, what do you want to add columns to The DataGrid, Excel worksheet, or ADO.NET DataTable Thanks, Sarah ...Show All

  • SQL Server SSSB Error Message

    What could be causing the following: This message could not be delivered because its message timestamp timestamp has expired or is invalid. Keep in mind the synchronization doesn't have to be exact - with 20 minutes or so is adequate.  The most common cause of this is that someone has the timezone set wrong so GMT is not correct.  It's also theoretically possible for a very slow network or message forwarding to deliver a message late enough so its lifetime has expired. ...Show All

  • SQL Server generate filename from today

    Hi, I have to create an ascii file which name format is like vyymmdd.txt What would be the best way to do this I have used DTS package to do this but file neme must change every day. rgds Kari Is this what you're looking for ! select 'v' + convert(char(6), getdate(),12)+'.txt' Regards, Clifford Dibble ...Show All

  • Visual Studio Express Editions No Export Template option in C++ version?

    I have noticed that there is no File->Export Template option in VC++ Express, but C#, J#, and VB Express do have the option.  I discovered this while trying to make a project template for DirectX projects.  Secondly,  When I installed the DX9 SDK there was no DirectX project available  when choosing create project.  This lead me to making the template in the first place. -Eric Thanks for the information Robert.  I learned DirectX without MFC or ATL.  So I am not so concerned with MFC or ATL.  I am under the impression that when you install the DirectX SDK, that yo ...Show All

  • .NET Development updating records

    I am trying to update a record using one of samples provided and I always have the following error: "Reference to a non-shared member requires an object reference" The code I use is as follows: Dim totalsRow As mdstats1DataSet.TotalsRow totalsRow = mdstats1DataSet.Totals.FindByRecordID(1) totalsRow.smtpin = smtpin totalsRow.smtpout = smtpout The error is on the "mdstats1DataSet.Totals" Can anyone help me BTW, I am using VB Express and SQL Express Assuming that I'm reading your issue correctly, you need an instance of mdstats1DataSet . (In order to a ...Show All

  • .NET Development This should be a simple web services problem

    My ASP.NET application has in-built business logics which my web services accesses every 5 seconds through a windows service (scheduler). I have added my web services project to my asp.net solution. When Iam running my application, all of a sudden it stops working- displays a Page not found error. This happens only when my web service is active. What is the problem Can someone guide me please. Thank you . ...Show All

  • SQL Server SSMS Express: Using PIVOT operator to Create Pivot Table - Error Messages 156 & 207

    Hi all, In MyDatabase, I have a TABLE dbo.LabData created by the following SQLQuery.sql: USE MyDatabase GO CREATE TABLE dbo . LabResults ( SampleID int PRIMARY KEY NOT NULL, SampleName varchar ( 25 ) NOT NULL, AnalyteName varchar ( 25 ) NOT NULL, Concentration decimal ( 6.2 ) NULL) GO --Inserting data into a table INSERT dbo . LabResults ( SampleID , SampleName , AnalyteName , Concentration ) VALUES ( 1 , 'MW2' , 'Acetone' , 1.00 ) INSERT … ) VALUES ( 2 , 'MW2' , 'Dichloroethene' , 1.00 ) INSERT … ) VALUES ( 3 , 'MW2' , 'Trichloroethene' , 20.00 ) ...Show All

  • .NET Development ADO.NET/Access DB Insertion Exception

    I’m working with an Access Database and ADO.NET. I have a record insertion routine that works on some tables and not others. The exception is “syntax error in Insert Into Statement” and it’s from an improperly constructed string. Public Function InsertRecord( ByVal NewRow As DataRow, ByVal Table As DataTable, Optional ByVal Update As Boolean = True ) As Boolean 'works NewRow(DataRecords.ciRecordNum) = Table.Rows.Count ' Autoincrement Table.Rows.InsertAt(NewRow, Table.Rows.Count) If Update Then Using CmdBuilder As New OleDbCommandBuilder(Adapter) Try ...Show All

  • SQL Server Interactive charts, etc.

    Hi everyone, Two questions about charts in reports. 1) They seem pretty static. I have a report with vertical column chart, and I would like to enable hyperlinks through chart columns, so, say, a height of column shows a number of experiments done by a person. I want a user to be able to click on the column or something that would be associated with that column and go either to another report or external URL that would show info about those experiments (similarly as it is done for any field in a regular report). Is it possible to do something like that (Help files unfortunately were of no use  ) 2) Is there any way to sho ...Show All

  • Windows Forms Problems/bug? Navigating Webbrowser control from a remote form

    I have two forms: form1 is the starting form; form2 is a form with a webBrowser control.  If I navigate the browser control from form2 where the webbrowser resides it works fine.  If I navigate form2’s browser control from form1 my firewall and network monitor tells me that an http request has been issued and then completed but the browser control  ...Show All

©2008 Software Development Network