Hatzi74's Q&A profile
Visual Basic How to Get BIOS Information by using QuickBasic (QBasic) ?
I found this code: WIDTH 80 COLOR 11 CLS LOCATE 13,1 DEF SEG = &HF000 PRINT "Date of the Rom Bios: "; FOR I = 0 TO 7 PRINT CHR$(PEEK(&HFFF5 + I)); NEXT PRINT DEF SEG SYSTEM I want to get more (all) information about BIOS using QuickBasic. But I can't find anything similar. Can you help me VitCon, Thank you for your question with this post. This forum supports Visual Basic.NET (7, 7.1, 8, ...) issues only, so, your Visual Basic 6 question is an off-topic here and this isn't the best place to ask it, here is a list of forums, newsgroups, resources and sites, to get an answer about your question : Visual Basic 6 Newgroups Visual Basic 6.0 on MSDN Libra ...Show All
Visual Studio 2008 (Pre-release) Svcutil XmlSerializer Mistery
We have a WCF-enabled COM+ application. When svcusitl is run with no parameters other then URL, e.g: svcutil HTTP://CTXWHDEVETSNG1:4999/X/CORPTaxETS_2007/LYWEnterprise.EnterpriseManagerMultiYear.2007/mex the resulting proxy contains [System.ServiceModel.XmlSerializerFormatAttribute()], and Request/Response classes are created for some COM objects but not for others. I checked all possible differences between the objects, and read http://msdn2.microsoft.com/en-us/ms733901.aspx but still can't figure out what triggers the XmlSerializer options to be used by default for some our objects. Any pointers will be greatly appreciated. Thanks, -gn If your data uses XML schema constructs not supported by DataContract ...Show All
Software Development for Windows Vista Replicator with PolicyActivity hurts my brain
Even after some help from a kind poster I'm still not getting how to use PolicyActivity within a replicator. I created a new activity derived from SequenceActivity. I added a property to it, with the DependencyProperty gunk around it like the SimpleReplicator SDK sample shows. This all initializes fine. My problem is now I drag a PolicyActivity into my Sequence. How can rules in this PolicyActivity use my custom property on the parent Sequence Activity I've tried GetActivityByName to get the sequence, but it doesn't appear I can cast in a rule condition (or I don't know the syntax) to my derived type to be able to access the property in say, a condition. Even if I could, this would not be a great way to write rules against that property. ...Show All
Community Chat Developer Solutions team needs you! Well your ideas anyway...
Hi everyone, I'm a PM on the Developer Solutions team (I work with Joe), and I need some input from you all. I'm putting together a roadmap for some of our future Power Toys work, and we need some good ideas. I've posted about what I'm looking for over on my blog so if you're interested in helping us out, pop on over and check out my post. Thanks in advance for all the great ideas I know you'll send us. :) -Jeremy Kelley My company produces a lot of generic estate agency websites by using a template website and then "branding" it for the specific estate agent using theming. There may already be a way, but it would be nice if you could apply a theme to the designer view of Visual Studio ...Show All
SQL Server SSAS Poor resource usage
Our users use Excel 2003 pivot table to analyze data on our SSAS 2005 database. They experience poor performance as soon as the products dimension is involved (800.000 leaf members), query performance is worse than with AS2000. At the same time, we notice that msmdsrv.exe only occupies 350 Mb of memory at the peak, and only 25% of processor time (bursts above 25% of processor time do occur, but are extremely rare). This is on a dual-core x64 Opteron, effectively a 4-way processor, with 16 Gig of memory. Why is msmdsrv waisting time constantly allocating and freeing-up memory at the 100 to 400 Mb level, where we have about 12 Gig of memory on that server sitting idle How can we make msmdsrv aware of those available 12 Gig and 7 ...Show All
SQL Server SSIS package that runs fine through command prompt, XML Error when run through SQL Server Agent Job CmdExec
I have an SSIS package that runs fine through command pormpt although when I try to run it from a SQL Servr Agent Job CmdExec step it bombs out. Please help this has me stumped...the SSIS package uses an XML connection string so certain key settings such as connection strings and email info can be changed easily. Currently this is all on the same machine. I have not moved it beyond where I am developing. On the command line I am using the following command... dtexec /F "S:\connections\contacts.dtsConfig" /DE "password" Below is the output log... Microsoft (R) SQL Server Execute Package Utility Version 9.00.1399.06 for 32-bit Copyright (C) Microsoft Corp 1984-2005. All rights reser ...Show All
.NET Development Microsoft.XMLHTTP Problem...
Hello, I have an application that does the following: MSXML::IXMLHttpRequestPtr HttpRequest; hr = HttpRequest.CreateInstance("Microsoft.XMLHTTP"); The above is failing with Invalid Class String We have many customer using our applicatipon and this happens only on one system. Can anyone give me any insight as to why this may be happening I have tried to re-register the msxml3.dll but with no luck. Any help would be greatly appreciated. Thanks, Tony This is a versioning issue. Most people resolve this by explicitly specifying the version of XMLhTTP. e.g. MSXML2.ServerXMLHTTP or MSXML2.ServerXMLHTTP.4.0 Are you using .NET 2.0 If so - I encourage ...Show All
.NET Development CertMgr.exe
Hello, This MSDN article talks about calling certmgr.exe to automate adding certificates on the client work stations. http://msdn.microsoft.com/library/en-us/dnwinforms/html/clickoncetrustpub.asp frame=true But CertMgr.exe is a part of the SDK and not just the framework redistributable. So how does one automate the task of installing the trusted publisher and Certifying Authority certificate Thanks, Avinash This could also be done programmatically through .NET using the X509 classes. Perhaps something like this: X509Certificate2 cert = new X509Certificate2(certFileName); X509Store store = new X509Store(StoreName.TrustedPublisher, StoreLocation.LocalMachine); // or StoreName.Root and/or Sto ...Show All
Visual C++ unresolved external error
I am having an unresolved external problem. This is my error output: Linking... tryagain.obj : error LNK2019: unresolved external symbol _furnsh_c referenced in function _main C:\Documents and Settings\sharyl\Desktop\cspice\exe\tryagain\Debug\tryagain.exe : fatal error LNK1120: 1 unresolved externals I have the enviroment variables set so that the library that contains furnsh_c is in the lib path, and the include folders, etc are also in the system's enviroment variables. I have also added the lib that has furnsh_c to the additional dependencies. What am I missing Is it possible that I changed another setting that is causing this Thanks! It's a command line utility. You can open a command line prompt with the corre ...Show All
Software Development for Windows Vista How to make driver works both on WinXP and Vista?
Hi All, I have developed a driver in WinXP. But it can not work in Vista. I build the driver with WDK under the environment of ' Windows Vista and Windows Server Longhorn x86 Checked Build Environment'. The driver can be installed in Vista. After launching the corresponding application, the Vista is end with blue screen without any message.( In Win 2k&XP there will be some message on the blue screen) How to make my driver works on Vista Any comments is appreciated I'm not a driver expert by any means, but one thing you should do is to go into System Properties / Startup and Recovery, uncheck "automatically restart" (so you can see the blue screen info), and ensure that you're capturing adequate debug dump info ...Show All
Visual Studio Visual Studio 2005 Install Error - DepCheck indicates Microsoft Visual Studio 2005 Professional Edition - ENU is not installed
Hi! I'm trying to install the VS 2005 Standard edition RTM, just fresh off msdn. I used the cleanup tull to cleanse my machine of the Beta2, and I wanted to install the new VS. *however* the install fails. The framework installs and is working correctly, just on installing VS I get an error "DepCheck indicates Microsoft Visual Studio 2005 Professional Edition - ENU is not installed" and the party is over. I have included the copy of my install log (from where it begins to get fishy) below. Any help would be much appreciated. I have a product I am actively working on and needs to be transferred onto the final 2.0 framework asap. Regards, Sigmund Jakhel ziga(dot)jakhel(at)dergan(dot)net.(nospam) -------- 10/30/05,17:31:10] Setup.exe: GetGl ...Show All
Visual Studio Team System Severe Problem, Any help would be very appreciated.
After ignorantly changing the text in the TFS Work Item Tracking constants table (not the keys), basically our Team System no longer will alow for importing, exporting work items nor adding or deleting projects. The error message windows is as follows: Assertion Failed: Abort=Quite, Retry=Debug, Ignore=Continue Duplicate entries found in the meta data. There may be a duplicate live [Domain]\[Account] in the constants table. Contact Currituck Dev. at <Module>.CPSLookupMetadata<CPsLookupConstantMetaDatabyFullName,> and much more. I was wondering if anybody had experienced anything similar and how to identify the duplicate metadata. I can't seem to find anything remotely resembling a duplicate. Are there an ...Show All
Smart Device Development Using VB program to open file on a CDMA device - PPC6700
I'm trying to use the Shell command to run a .exe file on a mobile Pocket PC, but when I run/debug the program on the phone it keeps coming up with the FileNotFound error. I'm thinking it is the path that is wrong, but I can't find anywhere as to how to address the path on a mobile device.. i.e. Shell("c:\program files\calc.exe"). I have tried every combination i can think of, from My Device, to C: to just \... but nothing seems to work and I know I'm missing something. Any help would be appreciated. I am using .NET 2.0 and Visual Studio 2005. When I use file explorer, it shows: My Device as being the "Root" and I made a folder there called "Test" and in the "Test" folder, i have my test.exe file. ...Show All
Software Development for Windows Vista COM Elevation Monikor and "Server Busy" message
Hi, maybe somebody can help me with this: I have adapted our app to use the COM Elevation Monikor for access to the registry. The COM object itself works fine and I can call functions into it with elevated rights. My problem is that whenever I call CoGetObject to load the COM object I get a "Server Busy" window hiding behind mine. When I click on the icon in the Taskbar it just dissappears and continues with the COM object. This happens every time during debugging and about half the time when running without a debugger. Any ideas Thanks, Robert ...Show All
Visual C# What can a subclass do?
I am a little confused about what a sub class can do with the variables and methods inherited from the super class. According to the book I have read, the subclass can choose to do one of the following: 1. Accept the same variables and methods by doing nothing 2. Ignore the same variable and methods by doing nothing also 3. Add new variables and methods 4. Override the variables and methods. My questions are as follows: 1. If you choose to ignore or accept the variables and methods by doing nothing (you can still see these methods and variables in class view), how would the system know whether you are accepting or ignoring the variables and methods 2. Can you override variables How do you do that 3. What actually happens in Polymorphism D ...Show All
