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

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

vijayalakshmi

Member List

Chuck Cobb
rough
White Hawk
sqlhiker
Davids Learning
Martin Schmidt
airwalker2000
chris fitzmartin
Rozee
samwalrus
Emy_P
smalamas
Poetjevel
XNA Rockstar
gapipro
Ash Dude
Ruurd Boeke
huysmans
GaelFraiteur
acf
Only Title

vijayalakshmi's Q&A profile

  • .NET Development Accessing via OleDB with an ODBC driver

    It could happen that you have to access a Database striclty via OleDB way For example to gather the schemas information in a standard-unique way with the GetOleDbSchemaTable, instead of the Database dependent GetSchema of the generic "Connection" classes If you have only ODBC driver and you weren't succesful in finding a working OleDB connector, you can try with the MSDATASHAPE oledb connector.   I needed to access a MySql database via OleDB (to gather schemas infos like if I used OleDB generic provider) but i didn't found a working OleDB connector, so i installed the MySQL ODBC 3.51 Driver and found succesful the following:  OleDbConnection oconn= new OleDbConnection (" Provider=MSDATASHAPE ...Show All

  • Visual C# converts a char into a string

    Hi All,   How would I convert this string bleh = "hello world"; inputString = "r" if (bleh == inputString) { blah = inputString; } The error message I get is Error 1 Operator '==' cannot be applied to operands of type 'char' and 'string'    Much help appreciated   Declare inputString as char, and do: inputString = 'r'; // Note single quotes. ...Show All

  • Architecture Design processes for commutability?? MCSD.NET Book

    Hi Forum I'm currently reading the book "Analyzing Requirements and Defining Microsoft.Net Solution Architectures" for the 70-300 exam. I have come across a section where best practices for designing for scalablity is listed. They explain Commutability and come with an example. The problem is that I do not see the benifit of the solution they suggest. The section states the following: Design processes for commutability Two or more operations are called commutative if they can execute in any order and still obtain the same result. Typically, operations that do not involve transactions are commutative. For example, a busy e-commerce site that continuously updates the inventory of its products might experience content ...Show All

  • Windows Forms Move borderless Form problem

    Hi, I created a borderless Form, and I tried to move this by MouseMove function I found some articles using Drag But I want to know what's wrong in my function My code is: private: System::Void display_Paint(System::Object^ sender, System::Windows::Forms::PaintEventArgs^ e) { if(img2){ e->Graphics->DrawImage(img2, 0, 0); this->Width = img2->Width; this->Height = img2->Height; } } private: System::Void display_MouseMove(System::Object^ sender, System::Windows::Forms::MouseEventArgs^ e) { if(mouseState==1){ if(Math::Abs(mouseX-e->X)>1||Math::Abs(mouseY-e->Y)>1){ int x = this->Location.X; int y = this->Location.Y; int newX = x + e->X - mouseX; int newY = y + e-& ...Show All

  • Visual Studio Howto use Web.WebSite.Stop on remote IIS (Microsoft.Sdc.Tasks)

    Hello I would like to use the Web.WebSite.Stop to stop the IIS on a remote IIS before deployment. The IIS is answering all requests on port 80. Can I use the Description to reference to the name of the Web Site (it has the default name "Default Web site) The the IIS is not on the same computer, can I provide also a computer name or IP address here The doc looks like this: <Web.WebSite.Stop (Description="description" || Identifier="identifier">) Example <Project> <Target Name="Test" > <Web.WebSite.Stop description="testwebsite" /> </Target> </Project> The Microsoft Services Enterprise Sol ...Show All

  • Windows Forms checkedlistbox in datagridview?

    hi.. can someone guide me how to add checkedlistbox control in datagridview in vb Is it even possible Thank you.. Hi, The following links may help you with this. http://www.developersdex.com/csharp/message.asp p=1111&r=5203481 http://msdn2.microsoft.com/en-us/library/7fb61s43.aspx Hope that helps. Thanks and Regards, Mamta ...Show All

  • Software Development for Windows Vista problems with enterprise library and com+

    Hello comunity i have a problem with enterprise library. u know tha the enterprise library for use in com+ had have a strong name. and for this case are a one merge module that yupu can find in http://www.gotdotnet.com/Community/UserSamples/Details.aspx SampleGuid=E14336D7-1B7B-4287-8E20-51FE07CB12AA ok i donload the merge module an add to mi installer with de enterprise dlls comon, data, and object builder. intall the aplication and go to his directory where is intalled and copy the dlls what have the strong name. i copy to c:\Enterprise_library_dll_with_strong_name and reference to mi proyect that haver to used and one problem ocurred. Se ha producido un error al crear el controlador de seccion de configuracion para dataConfiguration: No ...Show All

  • SQL Server Schedule SQL Express BAckup using SQL DMO

    Is it possible to schedule SQL Express BAckup using SQL DMO do I need to use WScript.Shell,SQLDMO.SQLServer,SQLDMO.Category,SQLDMO.Job, SQLDMO.JobStep,SQLDMO.JobSchedule Because SQL Express doesn't include the SQL Server Agent the jobs you are creating can't be executed. You'd be best served to use Windows Scheduler to run the programs performing your backups. ...Show All

  • Visual Basic Groupbox Issue

    Got a question How do you overlay a groupbox without associating it with the one thats under it I have got a few groupboxes and I would like to stack them on top of each other(I am using them for different things within my main form). I can slide it to the side and I can change the visible property just fine and it shows, but when I put it on top of another groupbox, I can only get it to show when I change the visible property on the first groupbox. Or Is There a Better Way Davids Learning This is happenning because of the designer...when you drag a control ontop of the groupbox the gesigner wants to make it a child control of the control (groupbox) that you are placing it on top of...The wo ...Show All

  • Visual C# adding permissions to a file

    I have a program that uploads and downloads an excel file to the server. Works great except for 1 snag. Every time a new file gets uploaded the file permissions don't allow me to download it again. The file needs to add the permissions for Internet Guest Account (SERVER\IUSR_SERVER)) and to allow all. The only parameter I have is the file location and file name on the server. I know its possible but I'm hoping to get a fairly simple solution to it... I don't suppose there is a method changePermissionsOnNTFSFile(string file_location, string account_name, string input_access) Thanks. Hello Michael, thanks for the reply. I'm still having difficulty because I'm brand spanking new to the whole c# s ...Show All

  • Windows Forms ClickOnce exprired certificate fixed...not.

    Hi All, I've had a look at http://support.microsoft.com/Default.aspx kbid=925521 for the "solution" to expired ClickOnce certificates, and I can't get it to work. I've followed the instructions carefully, and went to compile, and it failed with 13 errors, heres the first one: Error 1 error LNK2019: unresolved external symbol __imp__CryptMemAlloc@4 referenced in function "void __cdecl ReadPFXFile(wchar_t const *,struct _CRYPTOAPI_BLOB *)" ( ReadPFXFile@@YAXPB_WPAU_CRYPTOAPI_BLOB@@@Z) RenewCert.obj I'm not a C++ programmer, so I've no idea what this means. So I've got to ask... 1. Why have microsoft provided this code for us to compile ourselves, why not a compile the EXE with some kind of disclaimer saying "it might not work, it might bl ...Show All

  • Visual Basic The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Hi, a Visual Basic 2005 project was saved on a USB memory. Then it was copied to the hard disk. When trying to open the project from the hard disk, it is not possible to load some forms and this is the message that appears: Errores al cargar el disenador. Los errores se citan a continuacion. Algunos errores se pueden corregir volviendo a generar el proyecto, otros puede que requieran cambios en el codigo. The specified module could not be found. (Excepcion de HRESULT: 0x8007007E) Ocultar en System.Windows.Forms.UnsafeNativeMethods.CoCreateInstance(Guid& clsid, Object punkOuter, Int32 context, Guid& iid) en System.Windows.Forms.AxHost.CreateWithoutLicense(Guid clsid) en System.Windows.Forms.AxHost.Create ...Show All

  • Internet Explorer Development IE7 FAVICONS or desktop icons NEED to separate discussion between IE shortcuts or Faviacons or desktop icons as folder links

    I just installed Internet Explorer 7 today, which I guess is a.k.a. Windows Live . All of my fancy customized shortcuts on the desktop disappeared and each got replaced by the same generic windows icon. Right-clicking & changing the icons in properties no longer works. Also, when I create an internet shortcut while browsing, that creates a shortcut with that same generic icon (not even an explorer logo). Now my desktop is just one forest of identical icons. Anyone know how I can fix this I've wasted all day without success. I like the features I've seen, but the loss of the icon control is not something I can tolerate. I will commence the uninstall as soon as I send this. ...Show All

  • Visual Studio Visual Studio Task List Bug

    I put some tasks in the Error List Window by the following code: VCCodeFunction m_intern; m_outwin.OutputTaskItemString( m_Intern.File.ToString() + "(" + m_Intern.StartPoint.Line.ToString() + ") ", vsTaskPriority.vsTaskPriorityMedium, vsTaskCategories.vsTaskCategoryComment, vsTaskIcon.vsTaskIconComment, m_Intern.File, m_Intern.StartPoint.Line, m_Intern.Name + " has an undocumented return value." + Environment.NewLine, true); The message appears in the Error List Window seeming correct shwoing the file and the line of the function. But is not possible to jump to the source by double clicki ...Show All

  • Visual Basic Root from a URL

    I feel this question is a little silly.. I can't seem to find a method to get the root site such as this: http://www.microsoft.com/ from something like this: http://www.microsoft.com/downloads/Browse.aspx displaylang=en&productID=BEAE32B8-4A67-4F78-BF4E-C114F922F1EA So far, I've tried things like this: ToString.IndexOfAny( "/" ) without much luck.. please enlighten me :) Besides Regex you can play with the Uri class as well: Dim webAddy As New Uri(" http://www.microsoft.com/downloads/Browse.aspx displaylang=en&productID=BEAE32B8-4A67-4F78-BF4E-C114F922F1EA ") MessageBox.Show(webAddy.GetComponents(UriComponents.SchemeAndServer, UriFormat ...Show All

©2008 Software Development Network