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

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

kesim

Member List

Harris140c
Ayhan Yerli (TR-NL)
D A V
dct-val
Ragas
Michael A. Riley
Kenneth973
Spulit
imj
Lord Arokh
Emissary
Sabrecat
MaggieChan
Constantijn Enders
Gordopolis
Malleswar
kenneth123
cheesenhomer
pc_bond
HKEC
Only Title

kesim's Q&A profile

  • Visual Studio Tools for Office Bugs on feedback

    This question is addressed to MSF people: I have posted some bugs related to VSTO on the feedback site of visual studio but till now no one acted on them. How long usualy it takes to respond to a bug Also if you may have a look at them and post any workarrounds or solutions. Posted bugs: https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=237414 https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=237403 Thanks Thanks Geoff for your explanation, I've just received two notifications that Microsoft have received the bugs and working on them :-) I understand your bugs resolution process and appreciate your efforts getting them resolved no matter what. The o ...Show All

  • Smart Device Development drawtext, drawstring or something like that??

    please guys.. How can I use Drawtext, drawstring, etc for CF because drawtext on SmartDevice different with windowsForm. I can't find it.. many thanks before.. I've answerd on NG: http://groups.google.com/group/microsoft.public.dotnet.framework.compactframework/browse_frm/thread/53db1f0ee08af438/67b8207f4bd09730 hl=en#67b8207f4bd09730 ...Show All

  • Windows Live Developer Forums individual Blog posts

    How do I get an individual blog post it's own URL so I can send links to a particular post I did on my blog rather than just the home page of my blog. Right now the titles of my posts are not clickable but I know other blogs can do that. Can you help me please thanks. ...Show All

  • SQL Server Save to sql server failed no description found

    I want transfer data from excel file to sql server. I created a package in sql server managament studio using export import wizard and i gave the option "sql server" as the package location. At the final stage of the wizard "Save to sql server failed no description found" error is coming. pls give me a solution. thank u try to run Regsvr32 msxml3.dll Regsvr32 msxml6.dll http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=748066&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=74140&SiteID=1 ...Show All

  • SQL Server How to orginize MDX Scripting development? Best practices are wanted!

    Hi MDX Gurus, Could you please give me a properly advice. I make a lot of MDX scripting development. Today I made script changes in BI Studio, then deploy cube (changes) to the server, then test it with MDX queries from Sql Management studio. Both tools take some hundreds MB RAM and aren't quite fleetly. Do anybody have some hints to better shape this process Hello Vladimir. I do not have any good answere to that question. I am using process default in BIDS when I work with with scripts and the changes will be deployed in a second. I have not done any hard testing of allocations with scope statements yet. Regards Thomas Ivarsson ...Show All

  • Visual Studio 2008 (Pre-release) how to print a document from print dialog

    hi, how to set a document file for print dialog to print. regards ramakrishna Not sure what you mean but this is an easy way to print any visual element in WPF. This is an event handler that will print the WPF window ( this is the visual object to print, in this case it is a window): *************** void PrintClients(object sender, EventArgs args) { PrintDialog dlg = new PrintDialog(); if ((bool)dlg.ShowDialog().GetValueOrDefault()) { dlg.PrintVisual( this , Title); } } *************** Here are a couple of blog posts to get you started: http://www.charlespetzold.com/blog/2006/02/201111.html http://www.charlespetzold.com/blog/2006/02/230940.html Print ...Show All

  • Software Development for Windows Vista Error 0x8004D00E on SQL Server 2000 + Windows 2000 SP4

    We have an ASP.NET application running on Windows Server 2003 whose database backend lives in a different machine which runs SQL Server 2000 and Windows 2000 Server SP4. Whenever we try to use System.Transactions we get errors. We are almost sure that the problem is related to MSDTC refusing network connections. We tried to run the same thing using Windows Server 2003 in the backend server, and we were able to make it work by configuring MSDTC security using the COM+ console. However, we still need to support Windows 2000 for the backend. There is apparently no GUI for MSDTC security on Windows 2000, and the registry settings we have tried so far did not work. We think this should be a very common issue, but we have ...Show All

  • .NET Development Using "unique" with "field xpath=" value being variable instead of fixed

    Hi, I have a case where my "unique" identifier field name (in an xsd) can take on different values (based on another value in the xml). My case is validating people--which can either be identified by a Social Security Number or a UniqueId. I’d like the xsd to validate based on the SSN or UniqueId specified in the xml. HERE'S THE "FIXED" CASE (which works fine for validating against a fixed field name – SSN in this case): For a "fixed" case (where only SSN is the unique value): [xsd fragment] <xs:unique name="ProfileUnique"> <xs:selector xpath="Profiles/Profile"/> <xs:field xpath="Ssn"/> </xs:unique> ...Show All

  • Visual C++ How to control mouse movements

    Hello everybody! I'm developing an app in vc++ for my final project to control a point & click device using head movements detected by a camera. I cannot find relevant info about how to control mouse movements and clicks system wide, it has something to do with system wide hooks Thanks in advance for your answer. Best regards Carlo Rampa And this newsgroup: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.win32.programmer.kernel&lang=en&cr=US ...Show All

  • SQL Server Data Conversion Numeric to date

    I have some data which I am trying to put into a DM where I can use it as part of a cube (my first!!) I have hit a small problem with dates, I get it from the ERP system as a numeric field, and I need to convert it to a date format. The intension is to use this converted data with Named Calculations to derive Year, month Day ect. However I cannot seem to be able to convert and store (in SQL) this column can anyone advise Thanks The source column is called AHDATE and a value is 60703 which I am told is YY/MM/DD and using a data conversion componant transforming to data type date[DT_DATE] I get 12/03/2066 00:00:00 Which is way out Thanks for any help Robbie ...Show All

  • Visual C++ MessageBoxW and converting to LPCWSTR

    Hi MessageBox(NULL, "Hello World", "Message Box Title -- Hello World", MB_OK); Error: error C2664: 'MessageBoxW' : cannot convert parameter 2 from 'const char [12]' to 'LPCWSTR' IDE:VS2005 I don't understand why it gives this error. Can you please tell me what the problem is and how i can solve it. Thanks Of course, you're free to do whatever you want. But I would very much prefer to fix your bug and use Unicode , instead of ANSI. Frankly speaking, in this global world, in this Internet era, I consider ANSI strings as prehistoric obsolete string format. Note that modern programming languages like Java, C#, Python, etc. use Unicode as their ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Visual Studio 2005 w/ XNA!!!

    i was wondering if anyone knew how to include the xna project templates into vs2005 i tried to copy the templates manually from the project templates folder of c#express to vs2005 but, they still don't show up with the other projects. im not even sure it's possible to do this but, i was curious to know also, does anyone know how to turn on line numbers in c#express i'm soo use to vs2005 and all it's features that i have grown accustom to it!!! this is my first time using c#express!!! Hey ThEpRoPhEcY373, That post refers to a product called XNA Build which is different from XNA Game Studio Express. XNA Game Studio Express does not have any custom toolbox items that I am aware of. Are you using XNA Build ...Show All

  • SQL Server Permissions to run vb code

    In one of my reports I’m using vb code that copies one file from a local disk to a server. Like this: Public Shared Function CopyFile(ByVal infile As String, ByVal outfile As String) Dim fi As System.IO.FileInfo = New System.IO.FileInfo(infile) fi.CopyTo(outfile, True) End function The report is executed using report services directly in a browser. In the Visual Studio environment it works ok. In the browser I get an error. I’m sure it is a permissions problem. Any pointers to set op permission for this rdl-file /NHS There is no way to elevate code permissions for a particular RDL. Better way is to move this code into a separate assembly, grant permissions to that assembly and call ...Show All

  • SQL Server WMI Error

    I get a different error than most. I get Error 2147942699 (0x8007012b) when installing sql server. i have win xp sp2, have vb2005 express working fine on .net 2.0. any ideas. I ran the batch file to repair a corrupt wmi installation, but it didn't help. i also ran wmidiag, and it just returned the same error about 50 times. I haven't found any additional information beyond what you've already seen posted to this group. I'd suggest trying the Windows XP Newsgroups or calling Microsoft Support directly. Regards, Mike ...Show All

  • Smart Device Development Defines in C#

    Originally I am from C++. I got really used to #define. Does this behavior carry over to C# No. Preprocessor is pretty much gone from C#. Defines in C# are only good for conditional compilation. You can use external preprocessor if you want though. ...Show All

©2008 Software Development Network