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

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

afitoine

Member List

SnowJim
Thorri
ramstein92
Ryn
mschelstrate
Dr Z
SemiTransparent
jayaraja
loplayers
Dinesh Patel
Hilton Goldstein
Cammyr
ssfftt
John Fly
Mohammad Syed
Gwiz
Amnesyc
Bobo1234
Xcel
Steve Roggow
Only Title

afitoine's Q&A profile

  • Visual C++ Grid control

    I want to develop a grid control application.Dont have any idea abt grids so far. If anybody can,pls help. Look at how the professionals do it. MSFT's DataGrid and DataGridView, Sun's Java Grid, Infragistics NetAdvantage. ...Show All

  • Visual Studio Express Editions C1083: Cannot open windows.h

    I'm struggling! I downloaded Visual Studio Express C++, then downloaded the PSDK. I ran the link in the progarms menu for updating the directories after installing the PSDK and commented out the lines in some config file whose name now escapes me. Trying to run the build on PSDK Install Test gives me the following error report: c:\documents and settings\grimble\my documents\visual studio 2005\projects\psdk install test\psdk install test\stdafx.h(28) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory Build log was saved at "file://c:\Documents and Settings\Grimble\My Documents\Visual Studio 2005\Projects\psdk install test\psdk install test\Debug\BuildLog.htm" psdk install test - 1 ...Show All

  • .NET Development sdk 2.0 . which framework is needed to run the app

    say i develop an app with the sdk 2.0. If i try to run the app on a computer with .net framework 1.1 will it run no it will not. the CLR version is different therefore it may well complain at startup that the CLR version/framework version was not found therefore you MUST install the correct framework version on the computer. ...Show All

  • Visual C# Release mode in VS2005

    Hi I have notice that when I run my project from the IDE in Release mode the debugger still stops on the breakpoints. What is happening here This behavior is different to VS2003. I want to run my app without disabling the breakpoints thanks kenny You can turn this off by going to your project properties in visual studio Go to the build tab make sure Define Debug is not checked go to advanced and select none in the debug combo. Your app is still built in release mode but all debugging information supplied also. so that you can debug when the release mode acts differently to the debug. ...Show All

  • SQL Server Error when changing the length on DataReader Source

    Hi, I am trying to import data from Oracle RDB into SQL Server 2005 using SSIS. Created a ODBC data source to connect to Oracle and used DataReader Source component and ADO.net to connect to the ODBC data source. Under the Component properties tab, the SQL Command looks something like this. Select ID, ADDRESS, REVISED from ADDRESS The data type for the source columns are Integer, Varchar(30) and DATE VMS. Now when I look at the Input and Output properties window, The External columns has the following data types. ID - four-byte signed integer [DT_I4] ADDRESS - Unicode string [DT_WSTR], length = 0 REVISED - database timestamp [DT_DBTIMESTAMP] The Output columns has the following data types ID - four-byte signed integ ...Show All

  • SQL Server Where to use SQLCLR ? Data access is not recommended?

    Just wondering which scenarios is suitable to use SQLCLR. Any kind of data access is not recommended I guess. Only things that cannot be easily done in TSQL should be done in SQLCLR but why Can't those things be done in app layer itself Scenarios recommended for SQL CLR: - External data access like filesystem, registry etc - Complex calculation - Recursion without data access (this can be implemented with CTE for data access) If data access with SQL CLR is not recommended why should CLR should be even used and logic reside in database layer.. it makes no sense to me. Any thoughts Here's an example I came up with for password storage to avoid plain-text storage of passwords... And sorry I have no idea how ...Show All

  • Smart Device Development Legacy Win32 C/C++ Code to be used in CF

    Hi, My problem is described pretty much in the title. I am using VS 2005. I have some code to use in a Pocket PC 2003 application and it is written in C/C++. What is the suggested way to do this I tried to use the DLL in a PPC project but since it is desktop DLL, i failed to do that. I tried to compile the code in a Smart Device project, i failed to do that too (couldn't find files like wincon.h, io.h, etc)...This code was written to be used in desktop applications. I think this must be a frequent problem that Smart Device developers encounter but I really couldn't find a way to solve this either through forum-search or google. Thanks for any help... Hmm, yes, P/Invoke is the most obvious way to go for, but I thought it was for mana ...Show All

  • Visual Basic how to get list of open tasks in taskbar

    how to get the list of opened tasks.i hav got some of the tasks from processes using mainwindowtitle property but i m nt getting the opened folder windows minmised in taskbar. yup i had done tht.but through this i m only getting processes but as opened folder is a part of explorer.exe process so i m nt getting them in the list.like in taskmanager in application tab u get the list of opened folder as wel as apps.so i m getting apps but nt folders. bye the way thanx for ur help! ...Show All

  • Windows Forms Datagridview image column

    Hi all, I have been trying to get this code to work to no avail The code below I believe should put an image into a datagridview image column , but I could be wrong.. I tried to use byteArrayToImage(e.value) but all it says is systems.drawing.bitmap - it's not giving bytes, it's giving a string. What do you reckon I'm missing to return the byte array Private Sub dgvUsers_CellFormatting( ByVal sender As Object , ByVal e As System.Windows.Forms.DataGridViewCellFormattingEventArgs) Handles dgvUsers.CellFormatting Dim _cell As DataGridViewCell = New DataGridViewImageCell If e.ColumnIndex = 1 Then dgvUsers.Columns(e.ColumnIndex).ValueType = GetType (System.Drawing.Bitmap) _cell.ValueType = GetTy ...Show All

  • SQL Server SQL SP's Performance

    Hello My question is i want to inprove the performance of my stored procedures in SQL, My SP using Cursors and Temp tables so is there any way to replace both these two and improve the performance, I have heard abuot the Table variable and While loops in SQL but i can't able to find out the good sites or articles which will tell me all these things in detail, I am new with these concepts so please help me, or if any one have any other way with which i can improve the performance of my SP then please tell me, And also if someone tell me some tips that hgow to improve the performance of a normal sql querry which using joins. Hi, You have ample information regarding SQL Server performance specific to the various ...Show All

  • Visual Studio Express Editions Missing header file

    Hi everyone... I have a following problem, my C++ 2005 cannot see the header file that i have actually created within the IDE, when compiling it gives me the following error: Compiling... ExecDll.cpp c:\documents and settings\dmitry\my documents\visual studio 2005\projects\cpp_process_dll\execdll\execdll.cpp(12) : fatal error C1083: Cannot open include file: 'processcpp.h': No such file or directory looks weired since the header is created under the Header Files folder. any advice will be apprecited... thnks ' Dmitry First, make sure that the header is in fact in the same directory as the ExecDll.cpp file. Then ensure that you are using double quotes ("") instead o ...Show All

  • Windows Forms How to implement copy/paste/cut/undo/redo commands in C#?

    Could someone please tell me how to implement the copy/paste/cut commands for the Edit menu items in C#  2005 I can implement those commandsfor each textbox individually, but my application has about 100 textboxes. It will be very tedious to do the same thing for each of them. I guess there must be some way to implement those commands for the whole application.   Thanks! Hi Ye, Your code is much better, but I just found out that if controls (TextBox, ComboBox, etc..) are placed in a ToolStripContainer,  ActiveControl always returns the ToolStripContainer as the active control, not the control that had the focus. So, the code doesn't work :(. Why AtiveControl behav ...Show All

  • Smart Device Development HELP:processing KeyDown event.

    Hi, I have a program written by .NET CF 2.0. I want to process the KeyDown event in order to do something when a key was pressed. The Left, Right, Up, Down keys are OK. But the Enter key, after running the codes I want, the button having focus will be pressed which I don't what this. I had added "e.Handled = true;" at the bottom of the MainForm_KeyDown method. How to solve this Many Thanks. Three questions: Which platform are you targeting: PocketPC/SmartPhone 2003, PocketPC/SmartPhone 2003SE, Windows Mobile 5.0 Which device are you targeting Does this repro in the device emulator Thanks ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to import a 3d Model in XNA framework?

    Can anyone explain me howto import a 3d model in an XNA project In which format I have to export my model from 3ds max 7 As far as I know, the current BETA has no loading routines for 3D modell formats. It seems they are part of the content pipeline which will be implemented later, so you must write your own model file reading code for now. My advice is the Wavefront OBJ format, which is a very well documented ascii format. It's also supported by the most modelling programs like Wings3D, Maya, 3DS-MAX, Anim8or... Look here for detailed imformation: http://www.fileformat.info/format/wavefrontobj/ ...Show All

  • SQL Server report on two database

    hi all i m facing a problem in reporting services. i have a global database, in which i m mainting user inormation like database name, server name and all credentails about user database. i want that when my report is open a user parameter will display, on the basis of that users id report will display data from his database. server name can be different, database name can be different but schema of database will be same for all user. so pls help me ya adam i was using same apprach, but when i m changing connection string of one dataset another dataset's connection string is automatically changes. can u show me that how can i change connection string of one dataset so that another dataset's connection string will not change. ...Show All

©2008 Software Development Network