Software Development Network Logo
  • .NET Development
  • Visual Basic
  • Microsoft ISV
  • Architecture
  • Visual J#
  • SQL Server
  • VS Team System
  • Windows Live
  • VS Express Editions
  • Visual Studio
  • Visual FoxPro
  • Visual C#
  • Smart Device
  • Game Technologies
  • Visual C++

Software Development Network >> Michael Nordkvist's Q&A profile

Michael Nordkvist

Member List

Terry Denham
Koltron
vishalavat
GARRY TURNER
ok_woei
Rob Smith
Gil Shalit
C.Z.
Pradeep C
Ben Dot Smith
Radwanh
Chaehorim
androKLez
R Zare
Ian Finnimore
Gleydson
bjozsi
JPresto
sdknewbie
Stoecker
Only Title

Michael Nordkvist's Q&A profile

  • Visual FoxPro Word Document Formating

    Dear Expert I create some table in word with following procedure. These codes were written by Sir Cetin Basoz and by some other UT Professors. The codes work fine. #Define wdTableFormatColorful2 9 #Define wdTableFormatContemporary 35 #Define wdTableFormatElegant 36 #DEFINE wdAlignParagraphThaiJustify 9 #DEFINE wdOrientPortrait 0 #DEFINE wdOrientLandscape 1 #DEFINE wdCellAlignVerticalBottom = 3 *Local oWord As Word Application, lcTemp,lcHeader,ix lcTemp = Forcepath(Sys(2015)+'.txt',Sys(2023)) Select code,desc,close_dr,close_cr ; from master1 ; into Cursor crsMyCursor nofilter Copy To (m.lcTemp) Type Delimited With ta ...Show All

  • SQL Server Recover SDF-File

    Hi, we're using SQL Server CE 2.0 on our CE 4.2 device (mobile scanning device). In some cases, the application freezes and the user must perfom a cold boot. After the cold boot, the database is some kind of corrupt - the application can't build up a new connection and a "Fatal Applicatio Error ...." is thrown. If you try to connect to that SDF-File via the Query Analyser Tool, it also throws an exception .... "DBInitiliaze".... Do have anyone an idea whats wrong with the SDF-File and more important: How could we recover such files - most times there is already business data stored, which would be than lost... Thanks WilliBald ...Show All

  • SQL Server SQL Express with the WDK DTM?

    With MSDE 2000 you are limited to 8 machines and it is recommended to use SQL Server if you are planning on have more than 8 machines in a machine pool.  Since SQL 2005 Express does not have the workload governor, would it be a valid substitution for the SQL Server 2005 for the purpose of logo testing Thanks Mark. It would be good to know if the projected database size that the DTM will use fits the limitations of SQLExpress or if that team has a "model" of the size for a given amount of clients or test runs or something to assist in planing efforts. ...Show All

  • SQL Server Problems adding MS access datasource in VB studios 2005 enterprise

    I am running Visual Studios 2005 enterprise edition and I am creating a mobile application to keep track of some receipts. The problem I'm currently having is that even though I can connect to the MS Access Database with Server Explorer that I'll be aquiring data from; Everytime I attempt to use the Data Configuration Wizard to add a new data source that namely the database I get this error message: The new connection uses a data provider that is not supported. (end of message) There is no username or password necessary to access this database and it is an Access 2003 database. Any help would be greatly appreciated. ...Show All

  • Visual Studio Team System Object reference not set to an instance of an object

    Everytime I check in a file, i get this message. What is this for Thanks, Ted OK, I just went through and traced by my fix for this. As indicated by my earlier posts, I fixed this in the sources about this time last year. The fix did NOT go into SP1, however. I believe this was due to the fact that the null reference exception occurs after the check-in is already complete and no harm is done. I agree it is annoying, but it really doesn't hurt anything. Because the bug was low impact, the fix did not make the bar for inclusion in SP1. The good news is that I verified the fix was brought over ...Show All

  • .NET Development Who uses an assembly in the GAC?

    Every once in a while I put one of my assemblies in the GAC because I am using it in several of my programs. But then I forget about it for several months. Later, while browsing the GAC assemblies, I am startled to see something I have put there. I say to myself, "I wonder what program I wrote uses this assembly." Do you know an easy way to find out what programs use a particular GAC assembly I am afraid I would have to write a program that would scan every program on my computer and check its manifest to see what its dependencies were. Is this the best I can do Or maybe there is a convenient registry key that contains this inform ...Show All

  • Visual Studio MSDN (or MS Document Explorer) crashing like crazy

    does anybody know how to fix the following issue: Installed retail 2005 standard studio version on a machine which did have the beta version, yet it was removed with the tool provided my MS. The installed finished without issues, however as soon as I try to use the dynamic help's search button, the MS Document Explorer crashes. Hence MSDN library is halfway useless, because I can't search. If anybody has any ideas.... other than wiping my HD, please let me know thanx I had done that as well to no avail. However in the meantime I had to rebuild my laptop anyway, so I am back up and running. Thanx for all ...Show All

  • Visual C# C# & COM Interoperability

    I'm beginer in COM, but write some projects in C#. I have a Windows Service, COM object written on C# and 2 or more VBScripts to communicate with COM object. Situation: En example: VBScript 1 make some operation with COM-object but if I start new VBScript 2 - it create it's own example of COM class and make operations with it. Question: How can I use both VBScripts with the same instance of COM-class The data from COM class (specified list) should be destroyed only after Service stopping - how can I do it Each time you run a vbscript, it runs within a separate process - an instance of the scripting host (e.g., cscript or ws ...Show All

  • Visual Studio Tools for Office Unable to create Excel Workbook Project

    I just installed Visual Studio 2005 June CTP on a machine with no previous version of VS 2005. However, I get the following error when I attempt to create an Excel Workbook Project: The project cannot be created. I tried uninstalling and reinstalling both VSTO and VSNET. Then, I tried formatting and reinstalling Windows 2003. Next, I tried it on a Windows XP machine. However, all gave the same result. Note: I can create a Word Document Project without errors. Hi Justin: Make sure you've activated .NET Programmability for the Office apps. You can do this using the following steps:   ...Show All

  • Visual Studio Great, VS2005 is released! when will we see VS SDK released?

    Subject says it all. just wondering when we will see the VS SDK release now that Visual Studio 2005 is released. Bill I think it's just showed up on VSIP Downloads. "October 2005 RTM This is the final release version of the Visual Studio 2005 SDK for use with the RTM versions of Visual Studio 2005." Wasn't that going to be listed as November 2005 release ...Show All

  • Windows Forms Two forms needs to use one Core Form

    Hello This should seem like a easy question for you guys. I have two forms trying to perform maintenance stuffs, both (A.cs and B.cs) requires to use a form name 'Addmanually.cs', so to do that, i've added a button to both of the forms that launches Addmanually like this, addmanually admz = new addmanually (); admz.Show(); this .Hide(); If A.cs launches addmanually.cs, then how does addmanually.cs know whether is it B.cs or A.cs that calls it earlier Appreciate all answers, Thanks You can add a parameter to the constructor or Show() method and store a reference to the class calling Show(). In a ...Show All

  • Visual C++ who may help me

    I am a vc++ beginner.I need about vc++ book.so,i hope somebody can  help me that tell me some as to vc++ ebook site.   Here is a link of some VC++ Books that you can buy. http://www.amazon.com/exec/obidos/tg/detail/-/0201721481/ref=pd_sim_b_4/102-5393407-4543349 %5Fencoding=UTF8&v=glance Also, the online VC++ help at http://msdn.microsoft.com  is always helpful specially for samples. In addition, I believe if you search the internet for "C++ Tutorial", you might find online samples & general trainnings. Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Visual Basic designer-generated code not referring to custom user control correctly

    To save time, I'm not going into all the blind alleys I explored, so here is the central process and problem: I have a project with a form in it (multiple forms, actually, but we're only concerned with one.) I have created a custom control. I did this by right-clicking the project in the solution explorer and choosing 'add new item' ... the item type was a "User Control". I named it and it was created... the designer partial class for it declares: <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class ctlSudCell     Inherits System.Windows.Forms.UserControl ....etc. I had to save and re ...Show All

  • Visual C++ Where did the quick console go?

    Anyone know where the quick console window went in Visual C++ Express August CTP Jeff House Hi Yaniv,    Thanks a lot for your feedback. You can actually log your suggestion at http://lab.msdn.microsoft.com/productfeedback/  where other interested folks and users can vote and determine the importance of your suggestion. The VC team for sure considers every single suggestion entered there. Thanks in advance for taking the time to log your opinion. Thanks, Ayman Shoukry Program Manager VC++ Team ...Show All

  • Windows Forms Close startup form

    i have a startup screen its a login in Ok button i wrote this code dim f as new frm2 f.show() me.close this code close the application how i can solve it. and i have another problem in my frm2 i want to show another form frm3 in my MDI form how how  thanx I know that the original post is pretty old but I had been looking for& ...Show All

©2008 Software Development Network