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

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

PareshGheewala

Member List

JRQ
morgan_
Tito Jermaine
Fredrik Melin
sabo
pc_bond
Tracey Macias
Alek Yakovlev
ryan.berry
AhXue
Sukanya
JohnDB
j2associates
shahrul
willthiswork89
Lorry Craig
Chandler Chao
Stephen Westlake
RDSC
redshock
Only Title

PareshGheewala's Q&A profile

  • SQL Server Connectivity issue

    I am using the connection string as "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=TMS_CHECK_CONVERSION;Data Source=PHILDCAP4Q\VENDOR" in specified named instance is installed on the Respective machine. It is giving the following error., Sqlserver does not exist or access denied., Please suggest ... The connection string which I am using is Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=DBTest; Data Source= ServerPC\TestInstance DBTest is the database name ServerPC is the system where the sql server is installed TestInstance is the name instance of sql server on ServerPc Sql server is installed on Windows 2003 ...Show All

  • Visual Studio Team System How delete server item – i.e. file, from the source control using Object Model?

    Hi Can anyone help me how can I delete server item – i.e. file, from the source control using Object Model. The only option that I found is to delete mapping from the work space but not the file himself. I couldn't find any way to delete file from my WS and then to check it in. Thanks in advance, Shmulik. You'll need to use the PendDelete() method on the Workspace object, followed by CheckIn(). See http://blogs.msdn.com/buckh/archive/2006/03/15/552288.aspx for an example of pending changes (adds and edits -- pending a delete follows the same pattern). Buck ...Show All

  • SharePoint Products and Technologies ListItem Update Failure

    Hi I'm trying to create a dynamic list and filling it with items of already created fields... ////Code is something like this guid = web2.Lists.Add( "ViewHistory" , "Desc" , SPListTemplateType .GenericList); SPList combine_List_web2 = web2.Lists.GetList(guid, true ); foreach ( SPListItem item_history in invoiceItems_history) { SPListItem newItem = combine_List_web2.Items.Add(); newItem.Fields.Add( "InvoiceID" , SPFieldType .Text, false ); newItem.Fields.Add( "Status" , SPFieldType .Text, false ); newItem.Fields.Add( "Author" , SPFieldType .Text, false ); newItem.Fields.Add( "Time" , SPFieldType .Text, false ); newItem.Fields.Add( "Text" , SPFieldType .Text, false ); newItem[ "Inv ...Show All

  • Windows Live Developer Forums Find more results?

    Is there a way to find more than the 6 ( ) results FindNearby gets Thanks in anticipation! this is a triple post of the same question and should be removed. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=644902&SiteID=1 ...Show All

  • Smart Device Development Add Today Item

    I have been try to figure out how to add a Today Item which is in quotes and nothing seens to work. Any help would be greatly appreciated. Here is the code that I have been trying to get working. Microsoft.Win32.Registry.LocalMachine.CreateSubKey( "\Software\Microsoft\Windows\Today\Items\'Wireless'" ) Microsoft.Win32.Registry.SetValue( "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Today\Items\'Wireless'" , "DLL" , "netui.dll" , Microsoft.Win32.RegistryValueKind.String) Microsoft.Win32.Registry.SetValue( "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Today\Items\'Wireless'" , "Order" , 1, Microsoft.Win32.RegistryValueKind.DWord) Microsoft.Win32.Registry.SetValue( "HK ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dx 101

    Wat new changes are made when the new version of direct x comes Read all about it here . ...Show All

  • Visual C++ Converting String to Int

    Hi, I have a network applications, the client recieved information from the server in string format. I need the client to convert the string into an Int or any number that could be used for calculations. Is there a way to do this. I tried type casting and a few other things but have not been able to convert a string to an int. Any help is appriciated. Thanks In Managed C++: String ^ text = intValue.ToString(); In legacy C++ char text[15]; sprintf_s(text, sizeof (text), "%d", intValue); ...Show All

  • Visual Basic anything that resembles Gosub?

    Can you make something in a sub that works almost like the gosub command I dont want to make a new sub and call that, cause i use a datareader and different variables in the current sub ( and i also would like to use a gosub command in the printdialog sub) Can you make a sub or fuction in the sub or something Any ideas There's nothing in VB.NET that is an exact replacement for gosub. However, a class is just what you need. You'd turn the local variables you now use into class members... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. "SPRITE TEXTURE MAP" I need some directions/suggestions

    Hi to everyone! and an Amazing 2007! STATUS: I'm working with an effect to damage the armors, itens and etc from my game characters I did notice that the "easy" way to do this was have 2 textures, one to the default difuse channel and another with the holes and scratches overlayed above the Difuse one with alpha channels to "damage" just some areas from the equipment model surface. Since the .X exporters collapse the material maps inside 3ds MAX, I can't use the Composite MAP, and the export to .fx function in Material Editor don't accept any map than not a simple bitmap to this, what lead me to write a HLSL shader to do the texture overlay. I already got one texture above another with different map channels. ...Show All

  • Visual C# multithreading: locking a variable to return

    elementary question (I'm using VS2003 for this particular issue, but it pertains to VS2005 too) Is it possible for Foo() to be preempted between FetchFoo(), assignment of foo_, and pushing foo_ on the return stack public DataSet Foo() //thread1 { lock( fooSetLock_ ) { return ( foo_ == null ) foo_ = FetchFoo() : foo_ ; } } public void ResetFoo() //thread2 { foo_ = null; ...other code } If so, does this solve the issue public void ResetFoo() { lock( fooSetLock_ ) { foo_ = null; } ...other code } " Is it possible for Foo() to be preempted between FetchFoo(), assignment of foo_, and pushing foo_ ...Show All

  • Visual Basic Backgroundworker Fundamentals

    Are these background workers slow or what If you give it a simple 2-3 lines of codes, it could take a long time for it to execute. No, that's not true. The background worker will execut the code but it appears to have amensia, because the error - thread cannot run multiple tasks at the same time... which means, even though it has finished running the code, it cannot automatically dispose itself and therefore is still active until some element deactivate it. Oh, I can understand on a single core CPU, it might have to "wait" until it turn is up - but come on, on a dual core... what's the wait I don't suppose if you tell ******** to give more processing power to background services would help ...Show All

  • Visual Studio Tools for Office Range.InsertBreak generates exception

    Hi All, I'm inserting a break in a Word 2003 document which has some XML tags. It works fine for most of the documents but errors out for some documents where the XML tags are placed haphazardly i.e. not in an orderly manner. The exception that is generated is as follows: "this method or property is not available because the current selection is outside of a block-level element" I get a COM exception when I try range.InlineShapes.AddPicture for the same document. However, im able to do some calls like range.paragraphalignment. Can anyone give me pointers TIA Pavan OK, in this case your code is trying to replace the last character - the last paragraph mark - with the line break (ANSI 11) ...Show All

  • Visual Studio 2008 (Pre-release) ISerializable and <Serializable()> in 3.0 Classes

    Are Classes in the Framework 3.0 new by default serializable Or must they be declard as usual, always with the ISeriazable Interface and/or the < Serializable()> Attribute ...Show All

  • SQL Server Using Transfer SQL Server Objects Task

    Hi All, When using the Transfer SQL Server Objects Task I’m having the following error: Execution failed with the following error: "ERROR : errorCode=-1071636471 description=An OLE DB error has occurred. Error code: 0x80040E14. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E14 Description: "Statement(s) could not be prepared.". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E14 Description: "Invalid object name ' dbo.table_name '.". helpFile=dtsmsg.rll helpContext=0 idofInterfaceWithError={8BDFE893-E9D8-4D23-9739-DA807BCDC2AC}". When I change the CopySchema at ...Show All

  • Windows Forms How to fetch selected date and value from Calendar

    I'm totally new to windows programming and I have a basic questions 1 . Calendar Which calendar (datetime picker or monthly calendar)should I use to get the selected date. For instance if a user clicks on a particular date the selected date is returned to a text box. If there is any example I can look at I will really appreciate Thanks!! Here is the example http://msdn2.microsoft.com/en-us/library/system.windows.forms.datetimepicker.value.aspx Moreover, you may need to handle the CloseUp event which will occur when the user finish selection. ...Show All

©2008 Software Development Network