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

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

RamanaR

Member List

Manish Mobile
Jordy23
Absinthe
SQL New
Jd Williams
Sergey Barskiy
PLion
stumblingandfumbling
-pk
John OC
Setapong
deehanie
Tikkam J
jeremym1234
TVDMIK
Avi Gershon
anydobbo
joemele
tealeh
Gladers
Only Title

RamanaR's Q&A profile

  • Visual C# Optional Paramters

    This afternoon, i was just wondering why C# dosent support optional parameters(I didnt find anything about it on google, neither in the book i have got, "The C# programming language") What are the reasons why this isnt implented I know that both VB.net and languages like Delphi got this stuff. It supports them indirectly. See params - http://msdn.microsoft.com/library/default.asp url=/library/en-us/csref/html/vclrfparams.asp ...Show All

  • Visual Basic Generic Collections In vb.net 2005 Help

    Hi, Getting to grasp with Generics.Could somebody help as follows: In vs 2003 I used to write strongly typed collections now I could simplify it all with generic. I am trying to write some base collections What is the difference between inheriting from collectionbase  and list I have tried to implement the IEnumerator in my collection but the for each still doesnt work Can somebody provide a good example of collections using generics implementing Ienumerator,and explaining the diff between List and collectionBase Possibly in vb.net 2005 beta 2 Also some example of dictionary could help thanks a lot ...Show All

  • SQL Server How doe I change the storage size?

    I am attempting to load a sql script file and I get a message that the file is to large I dont have the storage for the operation.  I have a 200G Harddrive with lost of space, 1G Ram,  what is the method to solve this issue File size is 240,523 KB. Dialog Box says: "The operation could not be completed.not enough storage is available to complete this operation." No detail button is available. ...Show All

  • Visual Basic Multi language application

    Hy, I am looking for a convinient way to write a multi language application in vs2005. I know is posible to use .resx files to a project, but I don't want the .exe filte to get to big, so I am looking for a possibility to have separated files for every language and gest copy them in the app.exe directory and the app should use them at runtime to convert itself to the specifig language. If you know links to tutorials or sample code, please let me know. Many thanks, Have a nice day, Hi, for your language files you may use extern.xml-Files. You may save in your app.config which file to load and then take the strings out of a data ...Show All

  • Smart Device Development Software tools for file transfer between CE device and desktop app?

    Does anyone know of software tools that can be integrated into a vb.net 2005 desktop app that allows me to control file transfers to and from my mobile device, running on CE 5.0 There is a product at pda-tec.com that has the right idea; it offers controls that can be integrated into your vb.net program that let you send files to the mobile device, and receive files, and initiate a program on the mobile device, etc. But being a 'set of active x controls', as they say on their website, I assume means that they are designed for older vb6 code. I have quite a few text files I need to move back and forth at different times, from different folder ...Show All

  • SQL Server T-SQL Query that looks for multiple records.

    I need a T-SQL query that will pull out records, that have certain values in common. The goal is to find duplicate records in one of our tables. Any help or suggestions would be appreciated. Thanks, -Ben The general solution is to perform a select that groups by the columns and counts the occurrances. You are interested in the ones with counts greater than 1. That give you the values that are repeated. This result set can be used to find the actual offending records. Suppose you suspect that multiple checks have been issued. You have a table that contains check information where the bank account and the ...Show All

  • Windows Forms caller function reference?

    Is there a way at RUNTIME (not debug) to get the name or reference to the object that called a function or routine I think you'd have to pass a reference as below public void MyFunction(object sender, int someInteger) { string ObjectName = sender.gettype().name } ...Show All

  • Visual C++ Compilation errors with XmlReader

    With the following code in my project: 00: System::Drawing::Point ImageImporter::_loadOffset(System::String ^path) 01: { 02: Point pt; 03 : try 05 : { 06 : XmlReaderSettings ^ settings = gcnew XmlReaderSettings(); 07 : settings->IgnoreWhitespace = true; 08 : 09 : System::Xml::XmlReader ^ reader = 10 : System::Xml::XmlReader::Create(path, settings); 11 : 12 : while (!reader->EOF) 13 : { 14 : if (reader->IsStartElement("x")) 15 : { 16 : pt.X = reader->ReadElementContentAsInt(); 17 : ...Show All

  • Software Development for Windows Vista Microsoft Windows User Experience: Official Guidelines for User Interface Developers and Designers

    How come this book is so so expensive come on a thousand dollars canadian for a book... sooo dissapointed with MS over this... I guess bill is the only one with a copy. http://www.amazon.com/gp/product/0735605661/ref=olp_product_details/104-7637469-6783105 %5Fencoding=UTF8&v=glance&n=283155 That book is 7 years old and covers Windows 2000 design guidelines. Maybe its a collector's edition ...Show All

  • Visual C# How do I select Images from my External DLL?

    Hello, I've made an external DLL for my Icons/Images. The Image dll is nothing more then a resource file. So now I want to use this DLL in my projects but here's the problem. Calling the pictures by code is no problem. But i want to use them in my designer. When I click on the Image property I get a window (VS2005) -Import but this one wants .bmp,.png,.. -Resources but this one wants a .resx file from my project So how do I solve this problem hmm.. you see the designer makes this this.. // // Form1 // the form1 code // //textbox1 // textbox1 code // //picturebox1 // put it here maybe he will not delete it ...Show All

  • SQL Server Sum from two tables.

    Hi, I'm new with this SQL and I have one question where I need help. I have 2 tables (Table1) and (Table2). Both tables have columns (ItemNum) and (Pcs). Table1 is for items which we have. Table 2 is for items which we have delivered. I need to calculate the sum of how much we have Items. So the query should show ItemNum and how many pcs we have. Example: Table 1 Id ItemNum Pcs 1 1 10 2 2 30 3 1 22 Table 2 Id ItemNum Pcs 1 1 6 2 2 12 3 1 6 So the Query should show Item ...Show All

  • Visual Basic I have some questions

    Hi, I was wondering if there was a guide for new people to learn vb or are there any good site for learning also when you register how long can you use the program it says unlimited, does that mean 365 days also after I register how long before I get the online guides thank you, theguy ah ok thank you that makes it clear for me I got confused because it said if you regiter you use it for unlimited use. ...Show All

  • SQL Server Restore Database from file

    Hello, I had backed up a database from SQL 2000, just before I format my computer. Now I have installed SQL 2005 and trying to restore that database to it, it doesn't work and I get the following error when doing that =================================== Restore failed for Server 'localhost\SQLEXPRESS'. (Microsoft.SqlServer.Express.Smo) ------------------------------ For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Restore+Server&LinkId=20476 --------------------- ...Show All

  • Visual C++ Trying to compile Python C source in VS8

    I'm a vs newbie and this is c, not c++. First: I opened a new project and added the existing c source file, pointing to the python dir. I then extended the "include" env var to refer to the python include dir (it already points to the sqllib/include dir). Ok, I type "build" and I get a msg "error C1010 unexpected end of file, did you forget #include "stdafx.h" " So I typed that in the file and got an error: fatal error C1083: Cannot open precompiled header file: 'Debug\pydb2.pch' hmmm - any ideas here I just have one .c source to compile.. Go in to your project settings ( right click ...Show All

  • Visual C++ We have the same problem

    Application Description We have a mixed application written predominately in C#, with some legacy dialog MFC stuff written in C++. We have been developing this through the VS beta's to the point where the application runs and correctly works with the C++ code integrated in with the C# code, paying regard correctly (as far as we are aware) to all the issues with Managed/Unmanaged code, and such things as DLLMain. Problem Now we have recompiled the application with the release build of VS Standard, with the intention of preparing it for release in the next few weeks.  However the recompilation has introduced an error we are unable to ...Show All

©2008 Software Development Network