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

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

Merryhu

Member List

TMF
asymmatrix
Alagu Thirunavirkarasu
AlbinCN
Bernardo Piano
donkaiser
Saiboro
vbrada
kreativ
Sugan_Dave
ropley
raghu_grdr
Tony Maresca
Digital Farmer
Paul Neal
veeruu
paso
hrubesh
Yaakov Ellis
Joe_Cool
Only Title

Merryhu's Q&A profile

  • SQL Server Conflicts from nowhere

    I have two tables that are getting conflicts between the subscriber and the publisher, however I am pretty sure we only update these tables at the subscriber. I have column level tracking turned on. The tables both have Nonoverlapping, single subscription (3) set for partition options. I wonder does this do any maintenance to the tables I have put in place some triggers to audit what makes changes to the data, but won't know until tomorrow, so if there is something that anyone knows about that might help, please let me know. Thanks The triggers I put in place to audit the updates to the table I am conerned with revealed that there were no updates occuring that were not expected. So, what happens is the data gets inserted via a bizta ...Show All

  • .NET Development Trying to insert non-latin characters into sql-server through ADO.Net shows '????'

    Hi! I'm trying to insert non-latin characters (string) into the SQL-Server through me web application, and in the management console the field shows ' ' could this be fixed Thanx! Shushu, Is the column that you are inserting non-latin characters to defined as NChar; NVarChar; or NText If not, the unicode character you inserted will be translated into a standard 1-byte (ASCII) character. Most likely the reason why you are seeing the " ". I would recommended using unicode columns and parameters (for Stored Procedures) for handling non-latin characters. HTH, Jimmy ...Show All

  • SQL Server Estimating growth of mdf file size...

    Hi, how can I estimate the mdf file size's growth as record inserted For a rough calculation you can calculate the sum of bytes needed for one row, e.g. Having a table with three CHAR(200) will need 600 bytes + additional overhead ~32 bytes. You can just sum up all the data types you have to get the row size in your table. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Internet Explorer Development window handle for active tab

    hi folks, when a document completes loading in a new tab, my bho gets notified via DISPID_DOCUMENTCOMPLETE. how can i get the window handle for the tab window i've tried the EnumChildWindows/IsWindowVisible combo but it's not always reliable. it would seem IE7 has the handle but how to get it any ideas I may have misunderstood... Each tab has its own WebBrowser2 object and a new BHO is created for each tab. I'm not sure what you mean by "top-level" WebBrowser, i'm guessing the value obtained in SetSite - this should be unique for each tab or do you mean the HWND - having looked further up the thread In IE7 the HWND obtained is for the window, see the code earlier on to obtain ...Show All

  • SharePoint Products and Technologies Creating Multilingual in WSS 3.0

    Hi , I am new to Sharepoint Services (WSS 3.0) . My requirenent is that i have to create multiple websites in different languages using WSS 3.0 . A user can view his content in any language. I have few queries here : 1. If i am creating a site in English using a saved template and i want to create another site in German using the same template then how to convert all the text written in English to German as the template was created from an English site Ex: Lists, Libraries and other items column names and other metadata information. 2. In the same above way. After running several sites in different languages using a specific template. Now we want to add a new List/Library/WebPart etc to them, do ...Show All

  • .NET Development C# WMI Win32_EncryptableVolume Vista

    Am trying to get all encryptable volumes and then invoke methods through WMI. Here is the code causing problems: ManagementObjectSearcher oSearcher = new ManagementObjectSearcher("SELECT * FROM Win32_EncryptableVolume"); ManagementObjectCollection oReturnCollection = oSearcher.Get(); if (oReturnCollection.Count > 0) { foreach (ManagementObject oReturn in oReturnCollection) { Console.WriteLine(oReturn["DeviceID"].ToString()); Console.WriteLine(oReturn["PersistentVolumeID"].ToString()); } } When the debugger gets to: foreach (ManagementObject oReturn in oReturnCollection) I get an Invalid Class error. Any help or examples would be appreciated. Make ...Show All

  • Visual Studio Team System Team Project Portal - Service Unavailable Error

    Hi, Iam able to create a Team Project successfully but when i try to access the project portal by clicking the "Show Project Portal" menu from Team Explorer i get the following message "Service Unavailable" in my browser. I don't have a clue on what is causing this. Can anyone help me out here. Iam using TFS 180 day Evaluation Package running on Windows 2003 Server SP1 Thanks Arvind T N Hi, Even I am facing the same problem, actually I have installed sharepoint portal 2003 in my system. It was working properly and I have used my domain account to install and configure sharepoint in my sysem. I have recently changed my system password, from that day onwards ...Show All

  • SQL Server Derived Column

    I have two columns made up of 4 digits numbers eg col1 1234, col2 9876 I want to create a derived column so i get a eight digit column, eg col3 12349876 I cannot seem to get the expression right, I seem to be always adding the value which i do not want, can someone help me out with the expression Thanks Robbie Rafael Salas wrote: Please mark the thread as answered... thanks This is done how ...Show All

  • Architecture Design Consideration for active/active clustering

    Hi, I need help on the design consideration to develop a VB application to work in a Cluster (active/active). The application would consist of an NT service that will spawn activeX exe components based on a configuration. Thank you, regards, S. Balakrishnan One main thing that you need to remember regarding Microsoft's clustering technology is that it based on a "shared nothing" concept the meaning is that in an active/active configuration you'd need to partition the work between the two active servers and have each server act as a backup for the other one. Regarding other design consideration. you should probably provide some more details e.g. what are the fail-over ti ...Show All

  • .NET Development HttpListener and a client error (403)

    I am attempting to create a al client/server app using the HttpListener class. I want to bypass IIS altogether. I was told that a system with SP2 has the necessary HTTP stack implemented in HTTP.SYS....so here is my simple, sample that I can't seem to get working. Initially I was going to create my server using sockets (SSL etc), but had read that it would be easier to user a higher level protocol like HTTP. So here are my first tentantive steps (cobbled together from googling). Any guidance would be appreciated, even a book reference would be welcome.... namespace MDA.HTTPServer { public class httpServer { public static void SimpleListenerExample(string[] prefixes) { if (!HttpListener. ...Show All

  • Visual Studio Express Editions Data grid view controls

    How do i get the data grid view box to work in my application. For instance save data to a file and open data from a file, and get the copy, cut and paste controls to work in my application. e.g. the copy control in a RTB = rtb.Copy and the copy control for a html editor is HTMLDoc2.exeCommand("Copy"), what is this command in the data grid view box Can any one help thanks, how do i print the contents of the data grid and i still cannot get the copy, cut and paste controls to work , can you help ...Show All

  • Community Chat Opensource C# BitTorrent library

    Hi there everyone, I've written an open source bittorrent client library which runs on Windows/MacOS and nearly all flavours of Linux which is pretty much at Beta 2 status, i.e. most of the really big bugs are gone. The source is available at the public SVN for mono under the Bitsharp folder (details can be found at www.mono-project.com). There is also a TorrentCreator and BitTorrent Tracker library available at the same place, both written in C# aswell. Those are also needing developers should anyone be interested in pitching in. Example code and a more detailed blurb is at www.mono-project.com/Bitsharp. Basically, i'm doing a call to developers to: 1) Try and find a few people who wish to help with further developing the library. 2) Try ...Show All

  • Windows Forms Changing the Layout mode of custom designer

    Originally I asked about turning off snaplines in the designer and got no answer. I found an article that said in Visual Studio you change the layout mode from Snaplines to SnapToGrid to get rid of snaplines. It also says that if you hold Alt while dragging Snaplines are turned off. The Alt trick works just fine. However, I cannot figure out how to do the other. My question is: "Is it possible to change the layout mode of my custom forms designer and if so how can I change it "   Ken Ok I need to learn how to ask better questions. The answer to this was to use the DesignerOptionService . When I finally got this implemented, I was able to do all kinds of fun things. Like turning o ...Show All

  • Visual Studio Express Editions create dll in c# that can be used in another programming language

    Hello, I'm trying to make a DLL in c# that can be used in visual basic. The code of my dll you can find below, this dll i can use in a c# application, but the method Sommation is not accessible from another programming language. Can someone tell me how i can solve this problem using System; namespace Math { /// <summary> /// Summary description for Class1. /// </summary> public class MathClass { public MathClass() { } public static int Sommation(int x, int y) { return(x+y); } } } Thanks in advance, Jeroen Hi Jeroen, I've copied your code but it seems to work fine when using it from a VB.NET application. Steps to call the method from a VB.NET application: Add a reference to your DLL Set the following code: ...Show All

  • .NET Development 2005 XSLT plugin?

    Is there some kind of tool or plugin for Visual Studio 2005 that will generate XSLT/HTML from XML documentation I've heard of NDoc, but it's only for 2003. see http://www.microsoft.com/downloads/details.aspx FamilyId=E82EA71D-DA89-42EE-A715-696E3A4873B2&displaylang=en ...Show All

©2008 Software Development Network