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

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

madenci

Member List

ivanchain
dumian
Luis Neves
breceivemail
vije
Cycling is too much fun
Gafrage
Larry_t
Hena
dotnetwizkid
Douglas R
Jeremy Jarrell
UK_12
martok
Shirvo
justin_______
Michaelo1
gg1
Allen Razdow
Miguel Jim&#233&#59;nez
Only Title

madenci's Q&A profile

  • SharePoint Products and Technologies Anybody knows MOSS 2007 release date??

    Hi, I have a simple question. Is MOSS 2007 officially released or not Last news I have was about Beta2 and RTM. Cannot find any release document or news about final release. Anybody knows Thanks ...Show All

  • Visual C++ Smartbridge Alerts

    I too am receiving the "entry point not found" message. I have very little technical knowledge and would appreciate assistance in any fashion. thanks. Helen McLaughlin I am too receiving the "entry point not found" message. I have very little technical knowledge and would appreciate assistance in any fashion. thanks. Xavier Gonzalez ...Show All

  • .NET Development Best/fastest way to save a large DataTable a database?

    Hey, Whats the best way to save a rather large DataTable to a database It consists of roughly 60 columns and 15 thousand records (6MB of raw text). I was thinking of using a stored procedure but would that give any performance increases on an operation like this Thanks! Regards, Weiran. What your stored procedure looks like It is actually too slow in your case. I was able to export 30M in about 30 secords on my slow PC (Celeron 1.7 with 256M of memory). It is definitely something wrong with the stored procedure or table ...Show All

  • SQL Server Role Playing Dimensions

    What is the proper way to include the date dimension table into your DSV if you plan on using multiple role-playing dimensions It seems if you can use this dimension as a role playing dimension, and assign the "join" using the Dimension Usage tab, then it doesn't need to be joined to the fact table in the DSV... is that correct Or should you add the Date Dim table to the DSV and join it to every date-specific fact foreign keys I see three possibilities for the DSV: 1) Include the Date Dim table but not join to any other table in the DSV 2) Include the Date Dim table and join to at least one fact foreign key 3) Include the Date Dim table and join to all fact foreign keys for dates in the DSV Which method would be th ...Show All

  • SQL Server Cannot convert between unicode and non-unicode string data type

    HI. I'm having this problem. I use Visual Studio's, integration project to load XML file into SQL Server. In the XML file, i have defined collumns as string. When i try to load XML file with parts defined in scheme as string, i get an error "cannot convert between unicode and non-unicode string data type. Destinated collumns in SQL are defined as varchar and char. Thanks for help Tim/Katrina, that all sounds great. But when I change the External Columns to DT_STR, it doesn't save my changes!!!! I'll go right back into my OLE DB Destination, and whamo, it changes it back to DT_WSTR. Any ideas I'm running: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Micr ...Show All

  • Smart Device Development Struct and bytes array

    Hello! There are some problems with put struct on bytes array in CompactFramework. I try to use Marshal.PtrToStructure, but it does not work in PocketPC, because attribute FieldOffset() can't work with non intersect fields in my structure(field alignment requirements ). Please, prompt me what other way exists. Thanks! No, P/Invoke is not affected by that because alignment rules on managed and native sides are the same. Your structure does not have alignment issues. Also you don't need Struct field and you probably don't need any FieldOffset() attributes at all since your offsets are matching natural element size. ...Show All

  • Visual Studio 2008 (Pre-release) Binding to the Binding.XPath property

    Hello I need to be able to bind to the XPath property of a binding object, but i can't because XPath isn't a DependencyProperty. Does anyone know of a sneaky way around this the following doesn't work but illustrates what i'm trying to do... <TextBox> <TextBox.Text> <Binding XPath="{Binding Mode=OneWay, Path=Something.HelloWorld}" /> </TextBox.Text> </TextBox> Hi Mark. Thank you for your response. I did try using OneWayToSource but it still complains that Binding.XPath isn't a DependencyProperty on a DependencyObject. Perhaps I'm setting it up wrong (I've had a good look at www.beacosta.com but not found anything on binding to binding objects - of course there may be a good reason ...Show All

  • Visual C++ My PE Loader cannot load EXE file which bulit with VS2005.

    I need to write a Simple Loader which can run simple EXE(PE Format) file. My loader can parse PE header: IMPORT,EXPORT,RELOC...... I bulit AP.exe with VS2005, and AP.exe imported msvcr80d.dll. So when my loader parse AP.exe's import table and call LoadLibrary to load msvcr80d.dll, but it return NULL. I have searched some information on internet, and known the "manifest" file's effect. I have read http://msdn2.microsoft.com/en-us/library/ms235342.aspx Troubleshooting C/C++ Isolated Applications and Side-by-side Assemblies and related information. And I try some method to let my loader load msvcr80d.dll successful. For example: Before call LoadLibrary, I do open AP.ex ...Show All

  • Smart Device Development Target Machine Link Error

    I have used the upgrade wizard to migrate my EVC 4 project to VS 2005. I have managed to get most of my projects to build but I have a couple that give me the following link error. mfc80u.lib(MFC80U.DLL) : fatal error LNK1112: module machine type 'THUMB' conflicts with target machine type 'ARM' The configuration was originally targeting ARMV4. The "Target Machine" Linker option is set to "MachineARM (/MACHINE:ARM)". And I cannot find any reference to THUMB in my project. Does anyone have any idea's what the problem might be Thanks. IIRC, when we create a new project, if it is empty then various tools aren't present in the tools collection, because they aren't required by the config, and t ...Show All

  • .NET Development rss to xml transformation {need help in parsing node data}

    I have a following rss feed to which I want's to transform it to my desired xml My rss feed is < xml version="1.0" encoding="UTF-8" > <rss version="2.0"> <channel> <title> <![CDATA[ MyBooks.com ]]> </title> <link>http://www.MyMainLink.com/rss/BookListings.xml</link> <description> <![CDATA[ MyBooks.com.com Book Listings - All Book ]]> </description> <lastBuildDate>Thu, 04 Jan 2007 08:00:00 MST</lastBuildDate> <item> <title> <![CDATA[ Geology-Performance - Oklahoma City, OK United States ]]> </title> <link>http://www ...Show All

  • Visual Studio Express Editions spellchecker?

    I want to make a spellchecker for a program of mine.  I did a search of the forums and found some code.  I slightly edited it to match my individual use and apparently did something to it to make it not work.  because it ended up throwing the exception and I KNOW I have MS Word. This is the code I used:  Function spellcheck( ByVal text2check As System.Windows.Forms.RichTextBox) If text2check.Text.Length > 0 Then Try text2check.SelectAll() ' Copy everything from the richtextbox to clipboard text2check.Copy() ' Make a Word server object. Dim word_server As New Word.Application ' Hide the server. word_server.Visible = False ' Make a Word Document. ...Show All

  • Visual C++ Class not showing in Class View

    In a VC++ project, I have a class CMyClass. It is defined in MyClass.h and implemented in MyClass.cpp, in the usual way. When I look at Class View, CMyClass is not listed. If I use Class View's search for CMyClass, it finds CMyClass::CMyClass and CMyClass::~CMyClass only. Why isn't CMyClass shown in Class View I want to add some member functions, and need to have its properties window to do this. hello I am going to mark this thread as answered since you have not followed up with any further information on your problem as requested for over a week - I assume you solved the problem yourself or one of the suggestions in this thread helped you solved the problem. If you have a solution you could p ...Show All

  • SQL Server COALESCE with parameters

    I am trying to build a report table based on user supplied criteria at run time. The user may or may not enter criteria into one or more fields. I used the COLAESCE as follows (the temp vars may be passed valid data or left null by the user): select * from dbo . employee where LastName >= COALESCE ( @ln , lastname ) and LastName <= COALESCE ( @ln2 , lastname ) and FirstName >= COALESCE ( @fn , firstname ) and FirstName <= COALESCE ( @fn2 , firstname ) and hiredate >= COALESCE ( @hire , hiredate ) and hiredate <= COALESCE ( @hire2 , hiredate ) and checkdate >= COALESCE ( @chk , checkdate ) and checkdate <= COALESCE ( @chk2 , checkdate ) The problem comes when I want to return rows that ...Show All

  • SQL Server Flat File to SQL Destination - Unused Columns Warning

    I have a flat file data source and SQL Server destination data flow. Only a subset of columns from the source are mapped to the destination. During execution SSIS returns DTS pipline warnings for every unmapped source column. Is some kind of transformation the only way to get rid of these warnings Also this data flow subsequently returns an error: [SQL Server Destination [1293]] Error: An OLE DB error has occurred. Error code: 0x80040E14. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E14 Description: "Could not bulk load because SSIS file mapping object 'Global\DTSQLIMPORT ' could not be opened. Operating system error code 2(The system cannot find the file specified.). Make sur ...Show All

  • Visual Studio Express Editions How to display a .xls file data in my form or tab page?

    Hi, how to display a .xls file data in my form or tab page Can the data be edited from the form or tab page possibly, some times its case sensitive so instead of Sheet1 try sheet1 Where is the file located currently the code I posted looks in the application startup directory, the file may well not be there therefore you will need to modify the path of where the file is ...Show All

©2008 Software Development Network