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

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

GustavoPollitzer

Member List

ddrakonn
ssfftt
Thomas Ivarsson
kroyce
WynApse
CanadianSprings
Federico Silberberg
SteveMo
Vyatsek
bobhug
Speedie
Henrik Goldman
Grant_A
Esqueleto
Mystagogue
E Davis
Bigmo
Kent Boogaart
xpding
msdobrescu
Only Title

GustavoPollitzer's Q&A profile

  • Visual C++ lnk1181 and lnk4076....what am i doing wrong?

    hello everyone, im very new to the c++ language and have been working on visual c++ 2005 for the past few weeks. i transferred a whole bunch of code from visual 6 to vc++ 2005 and as expected got a whole lot of warnings and errors. for the past few days i have been stuck due to the following two messages: LINK : warning LNK4076: invalid incremental status file 'exe/ECG_Monitor_Patient.ilk'; linking nonincrementally LINK : fatal error LNK1181: cannot open input file '..\lib\bt_comserver.lib' for the first message, i went into the linker settings and changed the ENABLE INCREMENTAL LINKING field to NO and then I got the LNK4075 warning. I have no clue as to how to deal with the second message. I AM A NEWBIE. PLEASE HELP. ...Show All

  • Windows Forms abstract UserControl

    Hi all, I believe this question has came up in the past, and I wonder is there any change in status. This is about how VS 2005 designer reacts to UserControl that inherit from an abstract UserControl class.  The designer basically complaint when you try to edit the inherited form.  According to some early posting, this is a bug by design.  Is there a way to get around this problem   Thanks. Bill One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. The designer must create an instance of type 'CGS.WinUI.BaseUserControl' but it cannot because the type is de ...Show All

  • Smart Device Development retrieving AS400 to sincronize with local pocket pc 2003 database..

    Hi, i see that in the cf 2.0 not is present the oledbdataprovider. I use this data provider to connect with db2/400 database with classic winform or asp.net form.. how i can retrieve the records if not have a data provider thanx thanx for your reply ;) the first option i think is more difficult for me.. i'm not a guru programmer ;) the second i think is my way.. but i don't know 3rd party dataprovider.. you know someone the third option is great, but i don't know if is a good way, becouse my application is a local application and the db2 database don't is a remote database.. may be i think another way.. i can export data from db2 in text format.. than i can retrieve the text file and with substring retr ...Show All

  • SQL Server SQL Injection attacks

    I am taking a class where the professor really dislikes using parameterized queries because he considers them to be pointless. Despite the many points that I and a classmate bring up, the only thing he considers valid is using them to prevent SQL injection attacks. To prevent this, he replaces all single quotes with a pair of single quotes. I know this works for SQL server, but will fail in some others (for instance MySQL also allows \'). Is there other possibilies such as the \' that need to be protected against Your professor is looking at parameterized queries backward. They should be the standard approach only abandoned with a good reason. First, by using parameterized queries you remove the need t ...Show All

  • Visual Studio Team System Mass Transitions

    Mass Transitions In our current workflow tool (i.e. Serena's TeamTrack) we have a concept of "Mass Transitions" where you can take a number of requests (e.g. 1000) and do a mass update to the work item states (or any other fields) instead of laboriously updating each work item. For example we have "Enhancement" work items that queue up in a "Code Complete" state. Once the build is deployed to QC (i.e. Test) we run the "Mass Transition" to update all work item states to "Deployed To QC." We can handle hundreds up updates with a simple "Mass Transition" and a cup of coffee. Does Team Foundation have a similar concept Mac Noland Two options here. Create a small util ...Show All

  • .NET Development HELP!! "This row already belongs to another table" ERROR!!

    Hi everyone! I have a sticky issue... I am not getting an error when the following code is executed as a normal dll (not even registered in the GAC). But when I inherit the service component and have it registed as a COM+ service it throws the "This row already belongs to another table". Have been frustrated with all kinds attempt to find out the reason. Please help!! Private Sub cmdAddLOV_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAddLOV.Click Try If editCategory_Group.Text = "" Then errProvider.SetError(editCategory_Group, "Please Enter Category Group") Exit Sub Else errProvider.SetError(editCategory_Group, "") ...Show All

  • SQL Server The REAL Warehouse Sample V6 database

    Regarding the code/db from the REAL project that just got released, I have no problem attaching the "REAL Sample V6" database, but the "REAL Warehouse Sample V6" database requires ENTERPRISE edition, because the default copy uses Partitioning (i.e. the PT version, although the document stated that the multi-table (MT) version is the default). I only have the STANDARD edition of SQL 2005, is there a workaround Appreciate any help. The developer edition provides the same features as the enterprise addittion if you can get your hands on a copy. Norman P. ...Show All

  • Visual Studio OLAP and ReportViewer LocalReport

    So far I have created an olap report that successfully connects to an olap database. In my Report Server Project I have a number of rdl report that have an SQL connections and are able to load up fine within the Report Server Project. I also have one rdl report that uses an olap connection that also loads up fine and I am able to view it in the Preview tab. In another project (ASP.NET 2.0) I am loading local reports onto the ReportViewer control. I am able to load up all the report with SQL connections just fine. My problem is that loading the olap report doesn't work. I dont get any error messages. I get an empty report. I then proceed to debug my way through and it looks like my datatable is filled with 6000 rows and 5 columns. Here is s ...Show All

  • Visual C++ C2666 error - does this violate the C++ standard ?

    Consider the following example below that generates the C2666 error. I believe this violates the C++ standard section 13.3.3.2 paragraph 3. Do you agree template < class Type> class MyArray { MyArray(); Type& operator []( int ); operator const Type*() const { return mpData; } Type* mpData; }; template < class Type> Type& MyArray<Type>:: operator []( int ind) { return mpData[ind]; } void SetElement(MyArray< double >& a) { unsigned int i=0; a[ i ] = 0.0; }   Marius Bancila wrote: And what exactly does the paragraph say 13.3.3.2 is "Ranking implicit conversion ...Show All

  • Visual C++ Linking between projects

    I'm using vc8 I have one project that is a Class Library, which compiles and links without any errors. Then I create a new win32 Console Application. I proceed by making the win32 Console Application and from this projects properties, I reference the Class Library. Now, from the main cpp file of the win32 Console Application I place an #include of the main Class Library header. Everything compiles fine, but I when I attempt accessing constructor of the class library I get a linking error Seems like a pretty bad linking error: Error 1 error LNK2019: unresolved external symbol "public: __thiscall Kademlia::udp_listener<class uint160,class Kademlia::debug>::udp_listener<class uint160,class Kademlia::debug>(class ...Show All

  • Visual Studio Team System Error TSD158 when Building from MSBuild

    My build server does not have SQL Server 2005 installed on it, just client tools. I execute the following at the command line: msbuild /p:TargetDatabase=MyDatabase;ConnectionString="Data Source=SQLSERVERMACHINENAME;Integrated Security=True;Pooling=False" I get the following response: Build started 12/19/2006 3:44:00 PM. __________________________________________________ Project "C:\MyDatabase\MyDatabase.dbproj" (default targets): Target SqlBuild: Building deployment script for MyDatabase: EnableFullTextSearch, BlockIncrementalDeploymentIfDataLoss MSBUILD : Build error TSD158: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be cause ...Show All

  • Software Development for Windows Vista Cannot uninstall WinFX Beta2 (April) error 1603

    Greetings. I have problem uninstalling the WinFX 3.0 Beta2. This is the latest beta before the current (June CTP) so I think it is Beta2 April CTP. I try to uninstall from Control Panel, and get this error: [06/26/06,09:50:58] Windows Communication Foundation Beta 2: [2] Error: Installation failed for component Windows Communication Foundation Beta 2. MSI returned error code 1603 [06/26/06,09:51:22] WapUI: [2] DepCheck indicates Windows Communication Foundation Beta 2 is not installed. [06/26/06,09:51:22] WapUI: [2] DepCheck indicates WinFX Runtime Components 3.0 - Beta 2 was not attempted to be installed. Ok, so it seems that I didn't have WCF installed , therefore I cannot uninstall WinFX So, I try to fnid the WCF Beta2 ...Show All

  • SQL Server Design advice for an education data warehouse

    I’m not sure whether this ought to be in the Architecture or SQL Analysis Services forum. I am after some initial advice about a suitable structure for a data warehouse which will be used to build OLAP cubes AS2005. I work in a county education department. Each year we create/update a set of reports and procedures which provide schools with online access to many of the statistics for their school compared to district wide and to national targets, etc. After this year’s, which is my second at creating these report/data, I can’t help but think that the whole thing is screaming out for a Data Warehouse and Cube data to report on. I may be wrong on that, as I’m still only doing the learning regarding AS2005 and ...Show All

  • SQL Server help with sql query returning last max record

    I am having problems with a SQL query. Table has 10 fields and I need to return them all. The three most importaint, at least for the filter I need are: id, studentid, date, canceled. I need to return the last max(date) grater than or equal to @dateparam which is not canceled for each studentid I have worked out some solutions but am not happy with them. Specially woried about performance when the table grows. I am expecting in full production a table growth of about 3 million records per month. what would be grate is if there where a way of returning a the coresponding id like in: select studentid, max(date), related(id) as ids from tablea where canceled=0 group by studentid then I could do: Select * from tablea inner ...Show All

  • .NET Development Openning client email application in .Net

    What is the best way to open a client's default email application from a windows forms application, passing in To, CC, and BCC Thread moved to the appropriate forum try this: C# string theEmailMessageString = String.Empty; theEmailMessageString += "mailto: email@address.com "; theEmailMessageString += " &cc= anotherEmail@address.com " ; theEmailMessageString += "&subject =your subject"; theEmailMessageString += "&body =your message here"; System.Diagnostics.Process.Start(theEmailMessageString);     VB.NET: dim  theEmailMessageString as   string theEmailMessageString = theEmailMessageString & " mailto: email@address.com " theEmailMes ...Show All

©2008 Software Development Network