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

Software Development Network >> Johan Cyprich's Q&A profile

Johan Cyprich

Member List

SCRunner
Jason Croft
parreg
TBeadle
nil130180
Rich S
LurkinDurk
qrli
Scal
DavidIr
Iulian Surugiu
KeithGWilliams
TedCullen
fanxg
Alex-MyRpg
Marco Minerva
enric vives
Gurpreet Singh Gill
textman
EtherealSky
Only Title

Johan Cyprich's Q&A profile

  • Visual C++ error LNK2001

    Hi, (I saw the post on same subject but it seems to be a little different. so I'll use some word from that post!) There is a project earlier written in VC++ 6.0.  I opened the same project in VS. NET 2005 and I am trying to compile.  The code compiles properly (with couple of warnings) but while linking I am getting unresolved external symbol errors like this: The linker seems to have problem with seeing .obj from files in program (which are in the debug directory). It doesn't seem that the /Zl switch or the /NODEFAULTLIB  are on. 1>Linking... 1>Utm.obj : error LNK2001: unresolved external symbol _RTC_Shutdown 1>Zone.obj : error LNK2001: unresolved external symbol _RTC_Shutdown 1>Zones.obj ...Show All

  • Community Chat WMP Visualization

    Hi, i'm new to the MSDN Forums and i thought i would show this Windows Medai Player Visualization that i am working on. You can download it at http://www.savefile.com/projects/1014727 You can see some screenshots at: http://img96.imageshack.us/img96/7827/screenshot3wa3.th.jpg http://img84.imageshack.us/img84/699/screenshot2ea2.th.jpg http://img141.imageshack.us/img141/3746/screenshot1yu0.th.jpg (sorry, i don't know how to show the pictures) Finally the wait is over!... ok, so you haven't been waiting but it's here anyway, the latest version. Download here I got the warp files and editor working so you can now edit and display cool warp patterns of the image on screen. Here are some screenshots: Viz3D image ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. unhandeld exception at 0x77062b86 in VCSExpress.exe: while installing xna

    I know it's unsupported, but supposed to be running : I Ran XNA Game studio express wizard on my vista machine, The Installation starts.... Until it reaches Registering project templates Then i get a nice box "Microsoft visual c# Express edution has stopped working" [Debug] [CLose Program] i press debug. Then it complains about "unhandeld exception at 0x77062b86 in VCSExpress.exe: 0xc0000005: Access violation reading location oXe419c08c" The executing dll is ntdll.dll and disassembly of that location 77062B5C cmp eax,ebx 77062B5E je 7707CAFD 77062B64 mov cl,byte ptr [eax+7] 77062B67 cmp cl,4 77062B6A je 7700CC6E 77062B70 test cl,cl 77062B72 push edi 77062B73 jns ...Show All

  • Windows Forms Tooltips Cut Off

    Has anyone experienced balloon style tooltips (IsBalloon) being cut off Many of my tooltips in my application have the last few characters cut off by the end of the balloon. It looks as if they are miscalculating the length of the text. Is there anything that can be done Andrew, Unfortunately, it's nothing as simple as that. The control is trying to draw the characters, they are just cut off by the edge of the tooltip. When displayed in a non-ballooon style, they display fine. In fact, I'm looking at one that is cut off right now that has less than 100 chars. Most of my tooltips don't have this problem, but some do - and some of these are short, and some are long. I have many multi-line tooltips that have many many characters and ...Show All

  • Windows Forms Inconsistency in System.Drawing.Color?

    I had a subtle bug in my code that boiled down to the fact I thought Color.Green has 255 as its green component value. It turns out that it has 128. Isnt that counter-intuitive Red is (255,0,0), blue is (0,0,255) but green is (0,128,0) For a real green it turns out that Color.Lime is the correct color to use. Can anyone explain why this is the case thanks, Jens-Christian The human eye is very sensitive to the wavelength of hues of green. Full intensity green (0, 255, 0) looks very bright. So bright that it deserves a name other than "Green". It is quite ugly... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Vertex Animation help

    Hi, I'd like to do some simple vertex animation on a model using a vertex shader, but I'm having an extremely difficult and frustrating time figuring this out. I've been looking at the content pipeline documentation, I've found the tutorial about the BBox processor and done that a couple times, I've written a C# converter for a custom mesh format I have to X and still I can't work out how to accomplish this. I guess conceptually I understand how the content pipeline works. I ran the X processor DLL that ships with XNA through reflector and just about had a nervous breakdown looking at all the classes in there. I write geometry exporters, importers, and deformers for Maya at my day job, so I like to think I should be able to do this, ...Show All

  • Smart Device Development VS 2005 and PPC 2002

    Hi, is it possible to develop .NET CF 2 applications for PPC 2002 using VS 2005 What solutions do I have Thanks in advance. I don't think this is possible I'm afraid You can develop .NET CF apps on: WM5 devices WM2003 PPC Windows CE 4.2 (using the .NET CF SP1) ...Show All

  • Visual C++ Command Line Parameters with Dialog Based Applications

    I'm creating an MFC dialog based application and I need to be able to pass command line parameters to it. Is this possible with a dialog app Of course it is. To retrieve it use CCommandLineInfo class (or if you like the WinAPI use GetCommandLine function). (Also check the answer you've been given here, http://www.codeguru.com/forum/showthread.php t=398178  - I think it was you, right ) ...Show All

  • Visual Studio 2008 (Pre-release) Entity Framework & Entity Attribute Value (EAV) Models

    What I've seen so far comming with the next release of ADO.NET and the Entity Framework is absolutely amazing; you efforts will be much appreciated! I do have one question though which relates to dynamic entity attributes that can be defined at runtime; more specifically something known (and often frowned upon) as Entity Attribute Value (EAV) Models. I realize there are contrary views on the validity of this model in a relational space and hope to avoid "good or bad" discussions in the thread ;-) Specifically, it has been demonstrated how we can perform logical/conceptual mapping and in turn generate logical objects that map to our entity objects. How will we map entity attributes that are unknown at mapping/compile time Will the ...Show All

  • Visual Studio 2008 (Pre-release) Modifying basicHTTPBinding on Client side

    Hi Community, Has someone tried modifying the basicHTTPBinding on the client side Is it possible or I am thinking something non-standard thing What I think there should be a way to inherit and override what is already provided in basicHTTPBinding or in any other out of box binding. For example in the following code I am changing the IncludeTimeStamp to false. This may be the bad example in which the channels on the service side will not match. But idea is, what if the server side code is not WCF service. If the IncludeTimeStamp flag is not required on the server side but everything from basicHTTPBinding is required. using ( GetAddressClient proxy = new GetAddressClient ( "GetAddress" )) { try ...Show All

  • Windows Live Developer Forums Colour nicknames ( display name )

    after geting windows live messanger all my contacts display names dont show in colour no more :(. it just shows the symbols. how do i fix this problem. Thanks :) The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available on the Messenger newsgroup: http://support.microsoft.com/newsgroups/ dg=microsoft.public.msn.messenger&cat=en-us-msn&lang=en&cr=US&ln=en-us nntp://microsoft.public.msn.messenger Get the latest information on Messenger from the Mes ...Show All

  • SQL Server SQL Server 2005 SP1 upgrade results in build 2040

    I have SQL Server 2005 Standard installed on a Windows XP SP2 PC. I tried to install the SP1 upgrade from http://www.microsoft.com/downloads/details.aspx familyid=CB6C71EA-D649-47FF-9176-E7CAC58FD4BC&displaylang=en , which is listed as build 2047. I installed the upgrade and each upgraded component reported success, and I rebooted the PC. However, checking the version of my SQL Server as per KB321185 results in version 9.00.2040.00. There are errors at the end of the SQL9_Hotfix_KB913090_sqlrun_sql.msp.log log file as follows : MSI (s) (54:A8) [15:57:42:059]: Product: Microsoft SQL Server 2005 - Update 'Service Pack 1 for SQL Server Database Services 2005 ENU (KB913090)' installed successfully. MSI (s) (54:A8) [15:57:42:059]: Not ...Show All

  • Smart Device Development Cannot connect to bluetooth gps

    I have a Nokia LD-3W bluetooth GPS receiver that i cannot connect to Device Emulator on a notebook with a dell wireless 355 bluetooth 2.0+EDR (widcomm-broadcom), it fails with the error: 'Unable to open serial port 'COM12'. LastError=The system cannot find the file specified.'. I connected sucessfuly the GPS to Microsoft Autoroute 2007 and to Hyperterminal on the serial port (COM12) for the GPS receiver. I could connect to Device Emulator on a PC with a Microsoft bluetooth 2.0 dongle, serial port COM4. I have installed Microsoft Device Emulator 2.0 Preview, Virtual Machine Network Services Driver and Microsoft Windows Mobile 5.0 MSFP Emulator Images. I would appreciate any help, than ...Show All

  • SQL Server OleDb Source Error - Connecting to Oracle 9i

    Hi, I have my datasource in Oracle9i and destination is Sql2005. I am connecting to Oracle 9i through OLEDb provider and when I connect to my DataSource using OLE DB Data Source, I get the following error: Warning at "guid code": Cannot retreive the column code page info from the oledb provider. If the component supports the "DefaultCodePage" property, the code page from that property will be used. Change the value of the property if the current string code page values are incorrect. If the component does not support the property, the code page from the component's locale Id will be used. Could anyone please help me trouble shoot this problem. Regards, Sudhakara.T.P. sudhakaratp@hotmail.com ...Show All

  • Windows Forms Re : Draw gridline on specified cell in datagridview

    Dear all, Can anyone tell me how to have line draw on a cell in datagridview. For example, i retrived the sales records from database and bind to datagridview during run-time. When the sales records successfully bind to datagridview, i want to have a single line draw above the subtotal. The utimate result i need to achieve is as below. column1 column2 row01 xxx 1000 ____ row02 total 1000 row03 yyy 100 ____ row04 grand total 1100 ==== thanks. You can draw on the line in the CellPainting event. This example draws the line in every cell. Private Sub DataGridVi ...Show All

©2008 Software Development Network