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

Software Development Network >> Tukong Mike's Q&A profile

Tukong Mike

Member List

Sapna
Mable
Dario Galvani
calmal20
D. Choquette
Riekey
TBing
stlaural
Peter Ritchie
williamguy
AvalonNewbie
Neo_xx
Marty Levine
Liming22102
idahogurl
Pierre-François FORAZ
HowardRichards
Lolchickenzor
arashikage
GiriKrishna
Only Title

Tukong Mike's Q&A profile

  • .NET Development Database "design" question

    Hi, we are working on a programm that uses a database comparable to a movie-database. Theres a table with all films. Each has an englisch name and sometimes there is a german, italian, spanish, ... translation. We think that it is the easiest way to use the englisch name (which every film has) as default name to add a column for every other language that may occur (that might be about 8). As result we will have ca. 70% empty entries in these 8 rows. But this shouldnt be a problem because we use VARCHAR as type and sql querries only use the default language-column and the column of the language the user wants. Do you think this approach is ok There will be arround 50000 entries in our database. Our should the language translation be seperat ...Show All

  • Visual C++ C++ in visual

    I have just started using visual and my codes don't work. DO i have to change some setting or what's wrong. #include <iostream.h> main() { int a; int b = 20; int c = A + B; cout << "ENTER A VALUE FOR 'A' : "; cin >> a; cout << "Here is the ANSWER when u add 20 to ur varible: " << c ; return 0; } I got an error again 1>------ Build started: Project: code, Configuration: Debug Win32 ------ 1>Compiling... 1>code.cpp 1>c:\documents and settings\gagandeep\desktop\visual codes\code\code\code.cpp(24) : fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget ...Show All

  • SQL Server Viewing- VS Development Security

    Hi everyone I am having some difficulty getting the security on the Report Server to function correctley. Here's what's happening: I log onto Report Server using a certain account. This account is linked to a security role on the cube and to a certain company code within the cube. After building a report in Report Builder using this account and deploying it, I then run it from Report Server. It only displays the values in the parameters that are allowed for this user that I have logged in with. This is correct. However when I open BI and build a report and deploy it, the security settings on Report Server no longer take effect correctley. The parameter dropdowns are left empty where a certain company code should be. Does a cert ...Show All

  • Visual Studio Team System How to run run new tests in an existing team build?

    Hi All,   Been searching for a article or knowledge on how to run tests in a new test projects.  The new test project was created afterwards and has been added to an existing solution that has an existing Team Build already created.  I changed the team build property to "true" in the TFSBuild.proj file and ran the build, but no tests were run. < RunTest > true </ RunTest > The team build is not running the tests and completes successfully.  What am I missing   Thanks   Mike Hi, you need to modify the team build type definition file (TfsBuild.proj) in order to define which test must be executed. This file is stored in sourc ...Show All

  • .NET Development jscript event handler

    I have an existing html page that works well in a Visual Studio 1.2 ASP.Net project. When I included the page in a Visual Studio 2.0 web application I recieved errors on all my event handlers. The code I used for the event handlers is from Microsoft's MSDN site for embedding media player in a web application. When I visted MSDN and searched for jscript event handlers for mediaplayer I got the same stuff as below. Code: <script language = "jscript" for "Player" event = "PlayStateChange(NewState)"> </script> Visual Studio underlines script, for and event in red. When I hover the mouse pointer over each I receive the following error messages. script - Validation ...Show All

  • Visual FoxPro visual foxpro query

    Hai, i have a table with the following records. month,dealercode,branch,netqty can anybody kindly give me SQL Command which will sum netqty group by dlrcod and month but for each dealer monthqty should appear vertically. select dlrcod,branch,sum(netqty) from <table name> group by dlrcod,month with this query i get month totals horizontally but i want months to appear vertically. if any body can kindly give me a query, i would be greatful eg. mnth delaer code branch netqty january a0001 blr 1000 april a0001 blr 500 feb a0001 blr 300 may b0001 blr 400 june b0001 blr 300 january a0001 b ...Show All

  • SQL Server Transaction Option Problem

    Hi all, I have a slightly strange problem involving required transactions not working as i believe they should. My package as it stands loops through a directory of directories. In each of the directories there are two files (1 x .XLS, 1 x .CSV). For each directory i have to access the excel spreadsheet and extract data from two work sheets and insert that data into a database (2 tables, one for each worksheet). What i'd like to do is to place a transaction on the dataflow that processes the excel worksheets so that if either fails it will roll back and not update the database. From this point i can then copy the directory to a Quarantine path. I have set up the data flow with transaction option = supported and it does what it is meant to ...Show All

  • Visual Studio Team System FXCop cannot load my dll

    Hi, I have a problem with loading my application into FxCop. Actually, the problem had been discovered by Veritest, to whom we submitted our app for testing, but I reproduced it here. They used earlier versions of FxCop, but 1.35 gives the same result: When I try to open my application in FxCop, it gives me identical error messages about each and every dll and exe in the folder. The message is No engine was able to load target <file name> This application is written in C++ and built completely in VisualStudio.net 2003. There are a couple of Fortran libraries compiled by Intel Fortran integrated with Visual studio. The application is built with debug information enabled and no optimization. We are not using ...Show All

  • Smart Device Development DeviceEmulator ARMV4I - NAND flash emulation ?

    On Mike Hall's WEblog (03/15/06), Barry Bond stated that DeviceEmulator supported NAND flash emulation. This is the only reference to NAND flash emulation that I have found. Can anyone point me to further doc's, tech articals, sample code, etc about this The Device Emulator emulates an Samsung SMDK2410 development board. The Device Emulator BSP for Windows Windows CE 5.0 or the Shared Source Microsoft Device Emulator 1.0 Release provide some more information. The Windows Embedded CE 6.0 documentation may help as well. Michael ...Show All

  • Visual Studio Express Editions VC++ Newbie - Help with DLL's

    Hi, I'm just getting into VC++ and need some help. All of the core functions i need for my project are in a DLL which I'm borrowing from another program. So I went into VC++ and made a windows form with all the controls I need for my application. Now I need to know how to actually load the DLL and use its functions. Is there an easy way to do this in VC++ 05 and if so, how Thanks in Advance What type of DLL is it Is it also a Windows Forms DLL - what is known as a .NET Assembly Or is a COM DLL Or is it a regular Win32 DLL The question is important as the method to access the DLL depends on it's kind. ...Show All

  • Visual Studio Express Editions Error adding Access Database to App_Data folder.

    When I add an access database to my App_Data folder, I get a Local Data Error: Object reference not set to instance of an object. I can then begin to configure an AccessDataSource and type in my own SQL Query, but if I try to open the query builder it gives me the same error. Anyone have an idea as to the problem Ref: Windows Application Project I am receiving this message, "object reference not set to instance of an object", when trying to add a data source using the Data Source Configuration Wizard or when trying to connect an existing Access data connection. John ...Show All

  • SQL Server Running 2005 AS on 2000 DB, or should I upgrade 2000 Server to 2005?

    I have searched a bit and read some threads, but want to clarify I want to create Data Mart/Warehouse to use with SQL 2005 Analysis service Questions: Is there any problem using SQL 2000 Database as backend We do plan to upgrade to SQL 2005, will there be problem in migrating the analysis service Can I run 2005 AS stuff on SQL 2000 database like creating cube, data mining model I want to run Predictive Model/Data Mining Model on it as well, do they work on 2000 DB I guess in short Should I upgrade the server to 2005 before I start playing with 2005 AS Can I start with 2005 AS on 2000 DB, then upgrade 2000 DB to 2005 whenever Thanks, any help is appreciated greatly Is there any problem using SQL 2000 Database as backend ...Show All

  • Visual C++ CList and template

    Hi guys, I made a template that will works on a CList type, but it doesn't work. template <class T> class CIntFile { // ... void Write(T list); }; template <class T> void CIntFile<T>::Write(T list) { //// list.GetAt(0); list.Next(); //// } ///////////////////////////// in another file: CList<CIntMyClass> listMyClass; /// fill it listMyClass.Add(NewData); /// CIntFile<CIntMyClass> intFile; intFile.Write(listMyClass); -------------- Why Tnx This line list.GetAt(0); does not make sense to me. Also this one list.Next(); . There is no Next method in CList. What errors do you get ...Show All

  • Visual C# @ operator, what is its meaning

    Hi! In example, in this code: fs = new FileStream (@sFile, Modo); What's the meaning of '@' I'm looking for, but i don't know what's the name in english of this character (in spanish 'arroba'). Regards. Ok, I needed a little example to understand it because my english is ... poor sometimes. Console .WriteLine( @"\tal" ); // show: \tal Console .WriteLine( "\tal" ); // show: al Thanks very much ;) Regards. ...Show All

  • .NET Development Missing entrypoint in MSCOREE: 'GetTokenForVTableEntry'

    Hi, I am calling an extended stored procedure from with in SQL Server 2000/ MSDE and on the odd site they are reporting the error message: Missing entrypoint in MSCOREE: 'GetTokenForVTableEntry' I think it has something to do with the version of the .NET framework they have installed, but I have no proof. After searching the web I was unable to find any useful information about this error or MSCOREE. Does anyone know the cause of this problem and the likely resolution Thanks, Matt if the .net 1.1 framework was in use when you installed .net 2.0, the installer would have been unable to replace the mscoree.dll. This would be completed for you when you reboot the machine. (It puts an entry in an .ini file w ...Show All

©2008 Software Development Network