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

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

narend

Member List

Yifat
SanthaMind
Nihad
mbelew
stentoner
Soft Analyst
Hemant K
Datawizard
haiaw
HarryPatterson
Drallab
Brett Hickenbottom
singhswat
Desolator911
Eusebio Perez
_Andrew
Hades255
Grégoire de Jabrun
Dmitry Medvedev
Thad
Only Title

narend's Q&A profile

  • Visual Studio Express Editions VB 2005 Express Install / run problem

    I've done both web and *.img installs of VB2005Express on clean installs of XP Pro SP2. I can register fine, but when I try to creat a project, I get an exception error... " The filename, Directory name, or Volume label sntax is incorrect. ( Exception from H_RESULT : 0x8007007B) " That is as far as I can get. What do I need to do Google is not helping so far..... for me if u try to install from VB.img the installer starts by installing [installer 3.1] then [.Net 2.0] then [VB express] but when it reaches VB Express it skips it and give an error message. ...Show All

  • Windows Forms non-rectangular controls in Windows Forms

    I'm trying to develop simple non-rectangular controls for use in forms: ellipses, diamonds, etc. The last released version of System.Windows.Forms clearly had problems in this are, and now version 2.0 also seems to handle things incorrectly. Specifically, even if I set the background color to Transparent and set the "All painting in WM_PAINT" style, the corners of my controls continue to be painted. In v1.1 there was a problem with window style flags not being set correctly, but I could never get the work-around to function. Is there sample code for doing this in Forms v2.0 You have to know ...Show All

  • Visual Basic How to make changes to the design of an Access database from VB.NET?

    Is it possible to change the design of an Access database from VB.NET And if so, is there an article explening it, preferable with examples ...Show All

  • SQL Server Modifying a dimension by adding a new attribute using AMO

    Using AMO , I am trying to add new attributes to a dimension. It works fine if the dimension is a new dimension but if the dimension belongs to a cube, the Update method returns the following error: Message "Errors in the metadata manager. The ALTER statement must be fully expanded because it will cause a structure change to the Gender dimension. " String StackTrace " at Microsoft.AnalysisServices.AnalysisServicesClient.SendExecuteAndReadResponse(ImpactDetailCollection impacts, Boolean expectEmptyResults, Boolean throwIfError) at Microsoft.AnalysisServices.AnalysisServicesClient.Alter(IMa ...Show All

  • Visual C# PrintDialog doesn't remember printer settings

    I have PrintDialog instance in Windows Form class, which is called by Page Setup command: printDialog.ShowDialog(); User selects this command, changes some settings (for example, sets Portrait orientaion) and press OK. If command is executed again, dialog returns to it's default state. Interesting that PrintDocument is printed according to last settings, this means, they are kept somewhere. But PrintDialog itself resets them to default when starts. Is there any way to make settings persistent hi i think this article might help http://www.codeproject.com/dotnet/NET_Printer_Library.asp ...Show All

  • .NET Development variable name from string?

    If I have an int like: int i = 1; and I have a string representing int i like: string name = "i"; is there a way I can turn the "i" into a variable name to access it's value Not really. You can put all int's into a dictionary and access them by name: Dictionary< string , int > numbers = new Dictionary< string , int >(); numbers.Add("i", 1); numbers["i"] += 41; Console.WriteLine(numbers["i"]);  // prints 42   Why do you want to do this, anyway Maybe there's a better solution... ...Show All

  • .NET Development Is this a bug of ASP.Net 2.0 ? when I use relative paths in SqlXml class!

    Is this a bug of ASP.Net 2.0 when I use relative paths in SqlXml class! I can run Part 1 correctly in ASP.net 2.0, but when I run Part 1, I get the following error, why Is this a bug of ASP.Net 2.0 Could not find a part of the path 'C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\~\App_Data\InitializeBookmark.xml'.   //--------------Part 1------------------------ DatabaseBase myDatabaseBase = DatabaseHelper.GreateDatabaseOject(); SqlXml mySqlXml = new SqlXml(XmlReader.Create(@"E:\ASP.NET2.0_OnlineBookmark\onlinebookmark\App_Data\InitializeBookmark.xml")); myDatabaseBase.InitializeAfterLogin(userID, mySqlXml); //-------------- ...Show All

  • Visual Studio Team System Build problem TF42004

    Hello, I Have problem with Team Build. When I star building, everythink goes well, but soon as building has started I got a faild message: Team build failed to open folder \\fihel-mibsw02\TestWork\Hei\Testi2_20060607.1 . The system cannot find the specfied path. I am totally lost with this. It looks like the drop location you specified for your build type either doesn't exist, or doesn't have permissions set appropriately. Your build service account needs full permissions on the share, and it should have read permissions for everybody who can access the dropped builds. -Aaron ...Show All

  • SQL Server printing reports without previewing in a .NET app

    hi, i need to print reports without having a preview. i.e batch printing. with regards suresh babu Enter a tag in your page such as using which you can diffrentiate in part which is for printing and which is for not printing and the part of page which is for printing make its tag cssclass on and for rest part make cssclass off and than call window.print() and after that just make all class on. it will work as per your requirement. ...Show All

  • SQL Server sp_helplogins

    I tryning to program (in VB.net) sp_helplogins, assuming this is the correct sp to use to determine who is currently logged onto the database. Ive already programmed, in VB.net, the execution of sp_helpuser and get correct results, but don't seem to be able to program sp_helplogins. Any help would be appreciated. Thanks, /jerry Thanks,,, I've got sp_who working in vb.net now. /jerry ...Show All

  • Visual C# problem with Deserializing a string.

    I have a problem with  Deserializing a xml string. I have a object I serialize: MemoryStream buffer = new MemoryStream(); System.Xml.Serialization.XmlSerializer xmlSerializer = new System.Xml.Serialization.XmlSerializer(typeof(myobject)); xmlSerializer.Serialize(buffer, schedule); if I Deserialize the object after this code line, it works fine. But if I store the xml in code it Deserialize it gives me an error. XmlDocument doc = new XmlDocument();        doc.Load(buffer); string xml = doc.OuterXml; MemoryStream XMLString = new MemoryStream(); byte[] firstString = uniEncoding.GetBytes(XMLString); buf ...Show All

  • SQL Server Partitions per partitioned table limited WHY ?

    I am designing an application with multiple tenants.and all of my table have a partion key as DBOWNERID where I hold the integer value of the owner reference. But the problem is I wanna have as unlimited number of partitions,as I want every databaseowner to have its own partion but this page says http://msdn2.microsoft.com/en-us/library/ms143432.aspx I am limited to 1.000 partitions per table. Why is there a limit does partitions degrade speed I guess having more partitions would indeed impact performance. It's logical that every extra check costs some performance and if you would have for example 500.000 checks it wou ...Show All

  • Windows Forms Usercontrol with a DataSource property (winform!) ???

    I'd like to create a control that has a Datasource property that can be set at design-time, like a ComboBox has, for instance. It appears that there are numerous usefull attributes in the system.web.ui.design namespace, but i cannot find any good alternatives for winforms. I think i need the ListBindingConverter in conjunction with the TypeConverterAttribute, but I cannot ...Show All

  • Visual Studio Express Editions Printing from VB Express

    I have come across several posts indicating that it is nearly impossible to print documents, much less interact with Word, when using Visual Basic Express. Is this true If so, will this functionality ever be included or will I have to either purchase Visual Studio or learn another language While not impossible to print in VB 2005 ( this includes the Express Edition too) it takes a bit of work to get the results you want. There are a lot of printing capabilities in VB 2005, but, you need to do some reading to maximize your results. Doing a Google Search in the Groups section will find a lot of info on print ...Show All

  • Visual Studio Express Editions Q: URI datatype in DataSet

    hi, How can i set a constraint to a column in my dataset as URI , what i know is that dataset is XSD file, and xsd has a datatype xs:anyURI, but i didn't find this datatype in the dataset datatypes ,is there any idea if that is not possible or not recommended how can i make constraint for textbox entery to be a valid uri or to convert the text that the user entered to uri will be thxfull for any help Hello again shak, I'm not quite sure of your question. Are you wanting to validate that a URL scheme is valid   If so, you can use: Uri.CheckSchemeName Method Check the local help for an example of usi ...Show All

©2008 Software Development Network