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

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

Lovericky

Member List

Beetle54
Daikoku
Cezary
@nt
Cobaia
reichard
TPECI
IanG
bkrcove
shanthi
Adam Toth
AlexBar100
tom_7
NoobestNoob
brown01
XeviaN
deGame
Todd Schroeder
Brendan Stewart
Shailendra Kumar
Only Title

Lovericky's Q&A profile

  • Visual Studio Express Editions AccessDatabaseEngine and VB 2005 Express

    Hello, Is it possible to connect to "AccessDatabaseEngine" instead of "SQL Database" in VB 2005 Express. Will an "Access Database" icon show up in the Add>New Item> Template's Window Will be databinding possible Cheers The answer is Yes to all of these things. However, please know that experienced people do not like the inflexibilities and code produced by the Data Designed. I always started from scratch on these things. ...Show All

  • Visual C++ C++ assigning bytes from short int to specified char elements

    Hi I am kinda new to C++ and I have the following problem. I need to assign specific bytes from a short into elements of an array... I have defined the following short and char array, char myArray[10]; short int myShort = 0xffd3; I would like to have the 5th element in the array to store 'd3' and the 6th element store 'ff' I know that if I use the following code: myArray[ 6] = myShort; // it stores the 'd3' for eight bytes into the 6th element.. My problem is that I'm not sure at all how to assign a specified byte from myShort to a given array element. any help is greatly appreciated in advanced.. Thanks Almost there... When I used it in my code. It worked for th ...Show All

  • Community Chat Hottest Technology for webdesign

    Hi guys, I am looking to make my first website. I know about dreamweaver and frontpage, but what other web-building software is there that's really popular and can get the job done well Anything free Thanks, Cyan I use Dreamweaver just because its structured really well. I have used Frontpage and MSVWD and MSVWD is not structured very well, and it isnt the best tool out there for web developing unless your coding in ASP. Dreamweaver supports everything and sometimes has good templates instead of having to type like <a href="http://microsoft.com/">Microsoft</a>, you can just go to the toolbar and make one from that, very good for beginners. Tyrael ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 10 things to do while waiting for XNA Game Studio Express

    1. Read every single blog and forum post trying to find something new about it 2. Refresh your emails every 20 seconds hoping for a new mail from Microsoft 3. Stare at the wall 4. Make Content for your to be games ( lots and lots of content) 5. Design a game that will soon be forgotten about when the download is ready 6. Run to the fridge and stock up on supplies for when you start your game making 7. Make some more content ( there is no such thing as too much) 8. Read a book ( Book ) 9. Think about how awsome this is going to be 10. refresh your email again If all else fails repeat step 3 until step 2 is sucessful 23. Consider learning C(hash) 24. Stare at wall 25. Browse a ...Show All

  • SQL Server Combine 2 select statment result in one table

    Hi All, I am new in the Fourm. I have a one Problem. I have a two select stament that are return 2-2 column that are in the differnent table. I want that return in one table...... Ex I am writing 2 select statment below.. 1. select count(product.ProductID) as productCount,AffiliateHits.affiliateID,product.Name as [Name],product.ProductID from AffiliateHits,product where AffiliateID like 'SELF'--@affiliateID and product.ProductID=AffiliateHits.ProductID group by product.ProductID,AffiliateHits.affiliateID,product.Name 2. select count(*)as OrderCount,orderdetail.productid from [order],OrderDetail where [order].sourceID like @affiliateID and [order].addedon between @fromDate AND @toDate AND [order].orderID=OrderDeta ...Show All

  • Visual Studio Team System why does it create wrong tmp files?

    Hi Why does tfsbuild creates tmp files of some C projects When using tfsbuild it creates a new project file abc.tmp_release_win32.vcproj for my porject called abc.vcproj And it uses that file for compile, but it creates some wrong paths for my lib files. so it fails when I try to build. I can build the abc.vcproj using cmdline and msbuild. But how do I prevent tfsbuild from creating a tmp file or at least make the paths correct inside the tmp file Regards Kim Hi Aaron Thanks it helped me to see where it goes wrong. It seems that my C project, when using tfsbuild, looks in the lib projects OutDir and not using the lib or libpath environment variables. I’m using the /useen ...Show All

  • Visual C# Get System Information

    Hello Everyone, Is there any way to get the System information on the applications installed, as like Microsoft Office or any other application from the about box you can pull all the system information... Can be of local machine or a remote computer on a network.... How can I do that using C#... Thanks, Harsimrat Harsimrat wrote: Hello Michael, Thanks for the response, really appreciate for your help...this gets me the screen resolution, If I need to know all the softwares installed, how can I find that out...... this code gives you all properly installed packages (the one that appear in Add/Remove Programs) static void GetInstalled() { string uninstall ...Show All

  • SQL Server using sql to deploy a database

    I am trying to write an installation for my application. I am using an SQL Express database as well as an ODBC driver to connect and querry an existing interbase database. Therefore the install needs to do the following: Install .NET - done Install SQL Express - done Install application - done copy some XML files - done Install ODBC Driver - done Create database - not done I am using a setup and deployment project to do the above. I have also written a small application to install the ODBC Driver and attepmt to create the database which I intend to run as a custom action if possible. I have used the SQL management studio script wizard to write an sql script for creating the database with the intention of usin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Publishing

    I've noticed that when try the install for a game on any computer but my own, it doesn't work. I had all 3 of the files that it produces on the floppy, but it still didn't work. All of the other computers had the 2.0 service update, but it still didn't work. Do they have to have XNA to Make sure the end users are updating their comptuers with the latest DirectX libraries (december 2006). Chances are, they aren't, so run the file below to double check and install. Unless you have a sub-par graphics card, this should solve the problem. http://www.microsoft.com/downloads/details.aspx displaylang=en&FamilyID=2da43d38-db71-4c1b-bc6a-9b6652cd92a3 ...Show All

  • SQL Server server timeout

    In SQL server management studio: When doing ex count(*) for a big table or create index or like, I get timeout error. The timeout setting = 0 Even timeout = 888888 gives timeout Does not the query execution timeout parameter work Or are there other parameters needed to be ajusted Hmmm... are you able to execute SELECT COUNT(*) from other applications with configurable timeouts i.e. SQLCMD or a custom .NET application Paul A. Mestemaker II Program Manager Microsoft SQL Server Manageability http://blogs.msdn.com/sqlrem/ ...Show All

  • Visual Basic Information on working with services

    Hello, I was wondering if anyone could point me in the right direction for writing a wrapper app that interacts with a service we're developing. All I'm looking for is a general management program akin to the way Microsoft SQL Service Manager works with the MSSQLSERVER instance, although a more in-depth look at interaction with services would greatly tickle my interest as well. For now, however, just simple syntax on how to start, stop, check the status, etc. of a service would be wonderful. I was wondering if it is possible to use the Site member of ServiceController/ServiceBase class to set the parameters for exchanging between the ServiceController and Service itself. MSMQ seems like a overkill. My ide ...Show All

  • Visual Studio Team System What should a project represent for Web Development

    Folks: I could use a little help here. The company I work for is currently planning on migrating to using TFS. However, something just doesn't fit in my head. Of course, I don't have anything installed yet so I am just going by seminars and books we have read. We have two major ASP.NET websites that we manage. These sites are constantly changing. We are constantly fixing bugs and making enhancements. Some of these fixes take 30 seconds to make. Some take a month to do. My question is - what would normally constitute a project in this scenario. Do we create global projects for each website where we continually add bugs and work items to, and then individual "sub-projects". Or do we create a separate project everytime we ...Show All

  • Visual C# generic parameter overloading

    Hey guys! First I'm not entirely sure if this goes into this forum, never the less. I'm wondering why not allow code as the following: public I MyFunc<I>(I param) where I : Interface1 { } public I MyFunc<I>(I param) where I: Interface2 { } As far as I can see this would work exactly as function overloading with the arguments: public void MyFunc(Interface1 param) { } public void MyFunc(Interface2 param) { } This seems to be a matter of the compiler, as it doesn't seem to be impossible to incorporate into a future version of the compiler. Similar to how java does it. Hi, bilsa   bilsa wrote: public I MyFunc<I>(I param)   where I : Interface1 { } public I MyFunc<I>(I param)   ...Show All

  • SQL Server AS2005 Redistributable DLLs

    I am referencing Microsoft.AnalysisServices.dll in my C# project to get to the sweet AS2005 object model for automated cube processing among other things but know I need to start getting the deployment of these DLLs figured out for client releases. Currently our installs are deployed to relative paths on the client machines and we have avoided any GAC installations. So my questions revolve around - Are we free to redistribute the Microsoft.AnalysisServices.dll What other dependencies does it have or redistribution requirements Microsoft may have for it Thanks in advance for any help or if someone could point me into the correct direction PS - I have been extremely impressed with the programmability and ease of deployment of AS2005 ...Show All

  • Visual Studio Unhandled exception trying to view windows form

    In a C# Windows application in VS 2005, I'm simply double-clicking a form in Solution Explorer to view it, however, it always prompts me to check the form out. If I don't check the form out, I receive an error dialog: The control System.Windows.Forms.Form has thrown an unhandled exception in the designer and has been disabled. Exception: The checkout was canceled by the user. Stack trace: at System.Windows.Forms.Form.OnVisibleChanged(EventArgs e) at System.Windows.Forms.Form.WmShowWindow(Message& m) at System.Windows.Forms.Form.WndProc(Message& m) Clicking "OK" on the error dialog brings up my form (or the border of it anyway) and then continues with a trace of the errors inside the form instead of showin ...Show All

©2008 Software Development Network