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

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

plopez

Member List

Tony Pacheco
monfu
DanSequel
AvalonCoder
Deskman
Rastogi
CalvinR
anina
Erik Abels
Jon-12345
MikeFrey
KGA
Helio D
D Potter
Andy Evans
Torben B Haagh
liber
chrislee8
Victor Luo
OyvindA
Only Title

plopez's Q&A profile

  • Windows Forms Rich Text Box Problem in C#

    I have a Rich Text Box Control. In which i want that only text along with its formatting(bold, color etc) be pasted. But it should discard IF clipboard item contains Image.  I tried using  if(!(Clipboard.GetDataObject().GetDataPresent(DataFormats.Bitmap)))     &nb ...Show All

  • .NET Development help !!!! my database returs always old value's

    hello , my name is jonathan maes , i am a student , for a work i make a invetary program in C# express edition , i work with - Acces database - databindings now what's my problem , well when i delete a record from my database en i restart my program , and i visualise the values he shows the value what i trough away , can somebody help me my excusses for my bad english you can mail me to maes.jonathan@gmail.c ...Show All

  • Visual C# Deep equivalence testing?

    Hi, hope you can help. If I create a class with some properties and fields and then instantiate two objects based on this class, I need some way of testing for equivalence. Since the == operator works on reference equivalence, this will not work for me. I need to do a field-by-field/property-by-property equivalence check. Ideally, this would be a deep test, recursively looking at sub-objects too. How is the best way to achieve this ...Show All

  • Windows Forms VS 2005 RTM WINFORM DESIGNER BUG IS DRIVING ME CRAZY

    I have a project with various forms but when I try to view the designer for one of the forms I get the following error messages -even though the project atually compiles : I Have looked around and if you type "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. " IN GOOGLE you gets loads + a notification by Microsoft that says that they could not fix it before release http://lab.msdn.mi ...Show All

  • SQL Server can't modify stored proc which is in a publication

    Hi SQL 2005 sp1 - merge replication - HTTPS. We have 2 publications for the database - one which has subscription.SyncType = SubscriptionSyncType.Automatic and another with SyncType = SubscriptionSyncType.None. The first publication is there so we can add new stored procs etc, the second contains the initial schema and the data. When we try to modify a proc which is in the publication with SyncType = Automatic, the query never ...Show All

  • Visual Basic Class Toolstrip Separator Visual Appearance

    Has anyone ever seen any modification of the graphics representation of a toolstrip separator I'm trying to come up with a representation indicating that a separator itself is selected on a toolstrip bar. So far, I can't see any programatic changes in background color or forecolor and adding a background image doesn't do anything. The visible = true and false properties work fine but it doesn't seem that anything else does whether I create a se ...Show All

  • Smart Device Development Trouble using .netcf 2.0 and using a generated "TableAdapter" when trying to delete a row from a datagrid

    Hi, Ok, I have been working on a project in C# that manages a really simple database, that contains one table ('expenses') and only 6 columns ('id', 'title', 'description', 'amount', 'type', 'date'). Now I want to display the data in a DataGrid, which I was able to do. In visual studion 2005, when you select a certain dataset (in this case expensesDataSet) to bind to a datagrid, it autocreates a bindingsource for you and a special class called a ...Show All

  • SQL Server OLAP Theory

    I'm trying to understand OLAP theory, especially with respect to allowing updates. I get that it's multidimensional, enterprisey and all that, but there doesn't seem to be a whole lot on the 'net that talks about OLAP without being intertwined with some OLAP product. Perhaps I've just been using the wrong search terms. What I'd like is something like this, which I've written up myself: https://ids.breuer.com/ds/1427 . People say to "not rei ...Show All

  • SQL Server All data has been changed to gobbledygook in my DB

    Hello I got a serious problem about my data in SQL 2005. I save data in SQL in Farsi, this is not English so. Up to now everything was going well. But today, surprisingly, I found out all my data in database has been changed to some gobbledygook like these: U O§U O§U U or O3O±U O1 O±O§U O±U OaU Although all data which I saved yesterday are correct, all the data for the past days has been changed to mean ...Show All

  • Windows Forms type mismatch spinner value and textbox in VS 2005 Beta2 and SQL Server 2005 Beta

    I'm trying to multiply a value from an updown spinner by a value in a textbox and put the result in another textbox.  Seems simple enough, but I can't get it to work. I'm using C# in VS version 2.0.5215 from the Beta2 install and the 9.0.1116 version of SQL server 2005. (Microsoft Visual C# 2005 55603-000-0000016-00189) The data in the textbox is stored in the db as an integer and is formatted in my windows forms app (in VS) ...Show All

  • Windows Forms in arrays...

    Hi, I'm trying to read a text file, somewhat like this: #15-07-2001 sdkfhksdfhsdc cskjmcdfcsd #13-12-1999 asljkdaksjxd dcjdvf etc... I want to save the dates... so I put up something like this: string line; string date; StreamReader sr = new StreamReader(...); while((line=sr.ReadLine()) != null) {  &nbs ...Show All

  • Visual Studio cast to EnvDTE80.SolutionFolder

    I have the following problem with Visual Studio 2005 beta 2: I want to cast a 'EnvDTE.Project' for which I checked that it is of Kind EnvDTE80.ProjectKinds.vsProjectKindSolutionFolder   to 'EnvDTE80.SolutionFolder'.  Unfortunately I get an 'InvalidCastException' or null if I test with 'as'.  Could you give me some advice on what I do wrong Code example: EnvDTE.DTE dte=...; foreach(EnvDTE.Project prj in dte.Solution.Projects){ ...Show All

  • Visual C# Properties that "bubble up" set property

    I don't really know the right term for this, but the following is what I am looking for. Say I have the following: public class MyClass { private MyObject mSomething; public MyObject Something { get { return mSomething; } set { mSomething = value; } } } Now say MyObject has an inner property MyObject.InnerProperty, and the user does MyClass.Something.InnerProperty = "value", is there any way for the ...Show All

  • Visual C++ When is operator void* invoked.

    I have a class A and it has an STL container as a member. I also have a class A_Iterator which provides functionality to iterate over the member variable within A, in different ways. When I want to use this iterator , I do something like main(){ A a; A_Iterator iter(a); do{ // do some stuff; } while (iter++); } For the while loop to exit, I am having to provide a conversion function within A_Iterator of the for ...Show All

  • .NET Development Need help on Update

    Hi everyone, I'm developing a simple application on C# using ADO .NET to retrieve data from an MS Access DB.   I've got four tables in my database.  Two of them, CompanyDataTable and CompanyAddressTable, are related by the key column AddressId. So I've set up the relation in the following way: CompanyDataAddress = new DataRelation ( "Reference2" , CompanyDataTable.Columns[ "AddressId" ], CompanyAddr ...Show All

©2008 Software Development Network

powered by phorum