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

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

Renuka

Member List

Shash
pexxx
waldedg
Tomi Kaihlaniemi
mole
LarryNeedsHelp
mganss
AEC-JD
cheariot
wjxia
Popa
Mikester
Christa Carpentiere - MSFT
gmurugan
rogertan
wfoster3
NikiB
George S.
johnallengreen
Jessli
Only Title

Renuka's Q&A profile

  • Microsoft ISV Community Center Forums Documentation on use of Me

    I cannot find any documentation on the use of Me as in "Me.Range("a10:a59").EntireRow.AutoFit". What does the "Me" stand for or where can I find documentation Thanks Hello Joe, In the Visual basic and VBA world Me refers to the current class/object that you are in. When you are in a User Form Me refers to the UserForm (see documentation for UserForm), Same thing for when you are in a Sheet, or a WorkBook. Hope this helps. ...Show All

  • SQL Server Can we use cubes of MSAS2000 in MSAS2005

    hi, i am currently using a foodmart database i.e. MSAS2000 and i have installed newely MSAS2005. now i wanted to use the cubes of MSAS2000 i.e.Foodmart cube in MSAS2005. is it possible to move the cubes or migrate the cubes to MSAS2005. if yes then how if not then why and is anything done to do the upgradation or the migration. thanks in advance for the answer This Project REAL paper should give you some guidance: http://www.microsoft.com/technet/prodtechnol/sql/2005/asmigrtn.mspx >> Analysis Services 2005 Migration Published: August 19, 2005 By Michael Young, Proclarity Corporat ...Show All

  • Smart Device Development how to list all the subfolder in a folder?

    can anyone tell me how to code list all the subfolder in a folder the folder path is already set and cannot change by user! user only can select the subfolder and view the file inside it. this will add all sub folders to a listbox DirSearch("\My Documents\") Sub DirSearch( ByVal searchDir As String )         Dim dir As String         Dim file As String         Try             For Each dir In Directory.GetDirectories(searchDir)  &n ...Show All

  • Visual C# adding Favorites Functionality from IE to a Form??

    What needs to be done to add "Favorites" Functionality to a Form like in Internet Explorer I'm not sure what needs to be done to get that kind of Functionality in my Project.. Thxs for the Help in Advance.. Ok that Fixed it..The only thing i Did was to Remove the Picture Box as its not Needed now..Everything Resizes and the RichTextBox Shows and Closes,With the Web browser Expanding to the Entire Width of the Form.. Thxs for all the Help on this its Greatly appreciated & also for having Patience.. ...Show All

  • Visual Basic Predefined names

    C and C++ have the predefined constants __FILE__ and __LINE__ which at compile time are replaced by the source code file name and source code line number. Does Visual Basic provide a similar feature ...Show All

  • Visual Studio Team System How to make my ordered test the default test to run?

    I created an ordered test and added all my tests in the test view to this ordered test. Now when i click on the "Start Selected Test Project Without Debugger" i want only the ordered test to run since all the other tests have been added to this. Currently, when i click on the above button, my ordered test as well as the all the tests in my project are getting executed. I want only the ordered test to get executed. How do i do this Thanks, Priya Hi Priya, The easiest way is to open the Test View window from Test\Windows\Test View, select the ordered test there and press " ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problems with Draw Sorting for Alpha Blending

    Hi! I'm having a problem finding a way to sort my alpha blended objects for drawing. My language is C# and I'm using the April 2006 DirectX SDK. Currently, I'm calculating the distance from the camera and using an IComparer class object in an Arraylist. When I'm using exceptionally large objects (such as foreground cloud effects) I find that because their distance is measured from the origin objects that are intended to be drawn behind them will be drawn out of order and subsequently drawn over completely (giving the appearance of not being drawn at all). Here's the code I'm using: public int Compare(object x, object y) { ...Show All

  • Visual Studio Express Editions Missing MSVCP80D.dll

    When attemtping to run a simple program I get an error message saying "This application has failed to start because MSVCP80D.dll was not found.....". The file is located in: C:\WINDOWS\WinSxS\x86_Microsft.VC80_DebugCRT_1fc8b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c The test.exe.embed.manifest file is: < xml version="1.0" encoding="UTF-8" standalone="yes" > <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.VC80.DebugCRT" vers ...Show All

  • Visual C# Problem sending e-mail automatically from asp .net page

    Hi, What do I need to do to send an automatic e-mail to someone I mean that if someone has registered on a site through a Web form then I need to send him an e-mail automatically to confirm his registration. Do I need to make some additional configurations in the Web server for doing this regards, Sandeep The only thing you will need outside of the extra code is an smtp server. This can be on your Web server, or on a standalone smtp server. ...Show All

  • SQL Server Release database lock

    Actually I'd like to know how I got the lock and then you can tell me how to release it. Here's the problem (this is sql server 2000 with visual studio 2005) I have a windows service that wakes up every 5 minutes and does some database work (reads rows from a table, process them, inserts them into another table). When the inserts are complete, the process should (I would think) release the database lock, but it doesn't. The database is accessed via a dataset object and that object is disposed of via the using/end using statement. Is there something I have to put in the connection string to avoid this behavior Thanks, Bob ...Show All

  • SQL Server Article - delete all data property

    Hi There I think this is a pretty straight forward question , just want confirmation. I am using snapshot replication to a subscriber, it is essentially a re-publisher, these same tables are replicated from the subcriber to another. If i select the delete all data option on the snapshot articles will it truncate the table or delete all data , i am sure it is delete as it says so but i need to be 100% sure that it does not truncate, as the truncate command is not allowed on tables that are published for replication , as the ones on the re-publisher are. Thanx Ok i have subsequently found out it does truncate. So i have a problem. Server ...Show All

  • Visual C# How do you define Generics?

    Hello, i was hoping to get some insight on Generics (just started to use them) But i have these questions: My first idea of Generics was easy Polymorphism, but it seems as tho the reson for using generics are Type Safety and Performance, thus if you define <T> then objects are stored as (int, string, customObject, etc)... Im in the beginning phases of a project and i need to create methods, etc. that can be easily used without knowing the type of object until runtime. The normal way i would do this in 1.1 is to create Interfaces and implement them in newly introduced classes. Is this still the preferred/recommended way in 2.0 What is ...Show All

  • Visual Studio Express Editions how to use DllImport?

    Hi, how do i convert these VB code below into c# DLLImport syntax -------------------------------------------------------------------------- Declare Sub CoTaskMemFree Lib "ole32.dll" _ (ByVal hMem As Long) Declare Function lstrcat Lib "kernel32" _ Alias "lstrcatA" (ByVal lpString1 As String, _ ByVal lpString2 As String) As Long Declare Function SHBrowseForFolder Lib "shell32" _ (lpbi As BrowseInfo) As Long Declare Function SHGetPathFromIDList Lib "shell32" _ (ByVal pidList As Long, ByVal lpBuffer As String) As Long ------------------------------------------ ...Show All

  • Software Development for Windows Vista Main colors in the Vista File Folder 16x16 icon.

    Can someone send me the File Folder Icon from Windows Vista I wanna see how it looks in 16bit colors. Send it to  windowsdesktopsearch@gmail.com Thanks in advance Michael www.windowsdesktopsearch.com VistaGuy, Could you please stop posting duplicate posts As Raymond stated above you will need to wait until you have got your hands on your own copy of Vista. Anymore duplicates will be removed. Thank-you ...Show All

  • Visual Studio Team System vssconverter problem

    Hi, After a successful install of TFS, I tried to convert one of our SourceSafe databases. I followed the guide http://msdn2.microsoft.com/library/ms181246(en-us,vs.80).aspx  and made a local copy and successfully ran VSS analyze. Then I prepared the settings.xml file ( <Projects><Project From="$/"></Project></Projects> ) and ran vssconverter like this: vssconverter /c:Analyze /s:c:\vss\cvss\ /m:settings.xml It failed with this exception: Unable to cast COM object of type 'Microsoft.VisualStudio.SourceSafe.Interop.VSSDatabaseClass' to interface type 'Microsoft.VisualStudio.SourceSafe.Interop.IVSSDatabase'. Thi ...Show All

©2008 Software Development Network