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

Software Development Network >> Arshad Syed's Q&A profile

Arshad Syed

Member List

Paula M
wetheral
Joshizzle
derohanes
lamojo
Hugewally
wmerydith
Norman Diamond
maruthigsr
Noam
asics64
EPINAUD
DanBlanch
angus_grant
SHutch
Hugh Haggerty
Harinadh
Mary555
rogerkuu
Soni
Only Title

Arshad Syed's Q&A profile

  • Smart Device Development Missing assembly information in converted project

    This is a rather weird 'bug'. We upgraded a VS2003 Pocket PC project to VS2005. The conversion process didn't change AssemblyInfo.cs and when we go into the new Assembly Information screen in the project properties we see the settings as we set it. When we change it in that property screen, it does change in AssemblyInfo and vice versa. But when we build the project and have a look at the properties of the executable there is no version info at all. Within the same solution we have a normal desktop application and a pocket pc class library project. Both those projects were converted as well, but on the executable and DLL it builds ther ...Show All

  • Visual Basic how do i split a string into multiple strings?

    say i had a string containing "FFFFFF9C" and i wanted to split it into 4 strings, how would i get results like below i found this but its in java.. http://msdn2.microsoft.com/en-us/library/ms177889.aspx Value1 = FF Value2 = FF Value3 = FF Value4 = 9C this will depend on how you want to split it. Using the substring function you can do it liek this: strText = "FFFFFF9C" Value1 = strText.substring(0,2) Value2 = strText.substring(2,2) Value3 = strText.substring(4,2) Value4 = strText.substring(6,2) The parameters are substring(starting index as integer, length as ...Show All

  • SQL Server The subscription to publication is Invalid

    Hi, I have two SQL 2000 Server running on Windows 2003 Standard Edtion. I am using merge option to replicate database as Transactional option is excluding some tables. Both server are not in Active Directory and I am trying to replicate over the internet. I got following error message while using Merge option: Error Message: The subscription to publication 'XXX' is invalid. Error details: The subscription to publication 'XXX' is invalid. (Source: Merge Replication Provider (Agent); Error number: -2147201019) --------------------------------------------------------------------------------------------------------------- The remo ...Show All

  • Visual Studio Express Editions Web Developer Express & Nunit?

    How do you configure a web developer express project for Nunit integration I let WDE import my VS.Net 2003 code, figuring that I would continue to be able to use the TDD methodolgies, but it doesn't work. It throws a FileNotFoundException, because it can't locate the project dll. I can't even find the project assembly to manually load into nunit. It used to live in the bin folder, where the heck is it now Gac'ed I have googled and searched MSDN and have found nothing on the topic. Can someone throw an old dog a bone and tell me how to get this to work Thanks, Jason sorry, I misunderstood your question ...Show All

  • Visual Studio How to override QueryStatus ()

    Hi All, I am using C# to write a VS Package with SDK 2005. I need to override the function Microsoft.VisualStudio.OLE.Interop.IOleCommandTarget.QueryStatus (). The Package class implements the interface IOleCommandTarget but does not have QueryStatus() as virtual. Would anyone know if there is an alternate way to achieve what QueryStatus() function does The IDE calls this method and gives the package a chance to disable/enable any UI components. Thanks Hi Surya, You can find the QueryStatus(...) method in teh ProjectNode class. Just inherit this class and override the QueryStatus. Regards Kajal ...Show All

  • SQL Server Creating a dummy dimension level for storing calculated members

    [SQL Server 2000 question] I have a dimension that has one hierarchical (grouping) level (call it "Group 1") and a leaf level.  I want to create a member in the grouping level that will only be used to store calculated members.  The obvious way I found to do this was to create a dummy record in the underlying table with both the group 1 attribute and the leaf attribute having the same value.  I could then hide the dummy member at the leaf level by setting the "Hide member if" property of the leaf level within the dimension to "Parent's Name".  I could then create calculated members and set thei ...Show All

  • Visual FoxPro object execel, word with vfoxpro

    where I can find a manual of extrinsicos objects of excel and Word (.add, font.value, .HorizontalAlignment, .Font.size , etc, etc )to be used from Vfoxpro urgent. how set a cell in excel to numeric format grazie There is also a good article in UT Magazine: http://www.utmag.com/September2002/Page45.asp Here's the Excel Object Model: http://msdn.microsoft.com/library/default.asp url=/library/en-us/modcore/html/deovrmicrosoftexcel2000.asp And Word DOM: http://msdn.microsoft.com/library/default.asp url=/library/en-us/modcore/html/deovrMicrosoftWord2000.asp http://msdn.microsoft.com/library/default.asp url=/library/en-us/odeomg/html/de ...Show All

  • Visual Studio CR Web App Deployment Failure

    I created a deployment project as part of my application according to the following directions. http://msdn.microsoft.com/library/default.asp url=/library/en-us/crystlmn/html/crconcrystalreportsdeploymentoverview.asp I run the .msi on a server that has an unusual configuration.    The Web server dcpp131 has dual hostnames and IPs.  This is done by configuring Windows Server 2000 to have two IPs.      Hostname              IP Address   ------------------------------------------------------     DCPP131 ...Show All

  • Windows Forms Text does not appear on form load

    Here is the problem. Certain controls don't display text. I will create a form in the IDE that has group boxes and combo boxes on it. The combo boxes only display text on the top line or the line that I select. When I click the dropdown, nothing else is displayed. As for the group boxes, the header displays, but any labels inside the text box don't display any text. They show up in the IDE, but not at runtime. I have a screen shot showing the IDE and the form at runtime at www.kennesaw.edu/~jfw1701/text.bmp . There may be a delay as it is a fairly large picture. Thanks Joe W Sorry, it shou ...Show All

  • .NET Development IIS Filter

    i've coded an ISAPI Filter and added to the IIS Filter Service, and IIS get jammed when 2000 visitors sent their page requests simultaneously, as a result of this, webpages will not show any content, instead, it keeps loading and loading forever. however , after this ISAPI Fileter is removed, IIS can delivery web content without any problem even with 2000 visitors' request. does anyone know what's the reason for causing ISAPI Filter's inability to take a massive and simultaneous connection ( or request ), and is there any work-around Hello I have similar type of problem, i have ...Show All

  • Visual Studio Express Editions Too long to compile?

    Hi, i'm having a freak problem. When i'm trying to compile the code, Visual says: "error compiling, sub rutine too long. I know it's long, but... Can someone tell me if this is normal How can I compile a large sub rutine Thanks That's interesting, how many lines are in it Your solution is to break it up into managable subroutines: it sounds like a complete nightmare to debug/maintain. As a general rule of thumb, a subroutine/function should be no more than a single viewable page. ...Show All

  • Windows Forms Movement in Terrarium

    I've been playing with making an Herbivore and have quickly leaned that one of the most fundamental parts of this game is also one of the most difficult.  I’ll make this brief so I don’t start sounding too whiney.  Can one of the better programmers on this forum offer up some good sample code for pursuit and evasion   Yes, I understand&n ...Show All

  • Visual C++ VS 2005 B2 getting exe files to work on other computers

    When i try to run a file created by visual studio 2005 beta 2 on a computer other than the one i have visual studio 2005 on, i get an error message saying (translated from swedish into english): This program could not start because the programs configuration is wrong, the problem could be solved by reinstalling the program. on one computer (i think it was indows 2003 server) i solved it by copying msvcp80.dll, msvcp80d.dll, msvcr71.dll msvcr80d.dll msvcrt.dll  sdl.dll sdlgfx.dll and SDL_mixer.dll to the same directory as the game. But on other computers it still doesn't run even tough i have these files. I have tried both debug and r ...Show All

  • Visual Basic ADO.net DataAccess time SLOW

    Unless I am doing something very wrong, it seems that the ADO.net dataaccess time,IE retrieving a record is extremly slow compared to Classic ADO. Now it takes between 1 and 2 seconds to retrieve the data from the Remote database (Access). Because of needing update data when I select a serial number, I presume and currently use direct access to the remote database. I load a combobox with all my serial Numbers, Currently 15,000 . Then when I click on a SN, the program does a query on the ADO.net dataadapter, retrieves the current record. this take almost 2 seconds. Classic was almost instantly. Am I doing something wrong. Here a part of ...Show All

  • Windows Forms Iterating DesignerSerializationVisibility.Content collections?

    Running the following code to get the property descriptor of ToolStripContainer.ContentPanel results in a descriptor marked with DesignerSerializationVisibility.Content. ToolStripContainer tsc = new ToolStripContainer (); PropertyDescriptorCollection props = TypeDescriptor .GetProperties(tsc); PropertyDescriptor prop = props[ "ContentPanel" ]; Up until now, I've been using IEnumerable to iterate over objects which are marked DesignerSerializationVisibility.Content but "ContentPanel" isn't IEnumerable and prop.Converter reports that it cannot convert to IEnumerable. What am I missing What is the appropriate way to iterate a Desig ...Show All

©2008 Software Development Network