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

Software Development Network >> Quentin Mayberry's Q&A profile

Quentin Mayberry

Member List

GMS0012
Francis Shanahan
mahalax
ekkapop
Moim Hossain
bsh17
histonftm
bill spinhoven
Nilay
bes7252
Ofer Gal
wesneon
Revin11
JIM.H.
IamHuM
Lino!
KarlPick
sreejith s
Le Saint
nmfl
Only Title

Quentin Mayberry's Q&A profile

  • Visual C# what is spyware signature and how to generate

    is anyone knows about the above said topic. please help help us in this regard A "spyware signature" is a short string of bytes that is unique to a particular spyware app. It's nothing "official", and is determined by an anti-spyware author who analyizes the hex dump of the spyware app. Using the same procedure, a signature could be found for any executable, and a single executable could provide several different signatures depending on whos looking for them, and how they go about it. (Since Anti-virus/anti-spyware authors talk to each other and trade signatures, you should allways be a bit suspisous about the number of virsuses/spyware a utility detects --- odds are, they are looking for several of them twice ...Show All

  • .NET Development SqlDependency questions

    Im using SqlDependency in my middle layer. my listener object 'listen' to certain table and be notified when there are changes. then process the changed data. i have few questions about it. 1. no matter what field(s) i selected to listen, i always get notified whenever there is an change, even the changed field is not selected to be listened. is this by design or by my mistake 2. whenever i get notified there is change, i have to pull all the data. is there anyway to just get the changes afterall, changes are all i want since i already have a copy all the previous record. 3. Is there a way to differant the change notification by insert/delele/update. that will be easy my life. any input are welcome. thanks advance ...Show All

  • Windows Forms \r\n problems with textbox

    Hi All, I'm making a program which has a textbox, when I try to set the text of that textbox it seems to not allow \r\n to work, a small square box appears in the text instead of a new line being started. I've set the properties of the textbox so that multiline = true and scrollbars = true Does anyone know how I can resolve this please Any help would be gratefully received. Many thanks in advance and kind regards, Rich string text = "Hello\r\nWorld"; textBox1.Lines = text.Split( new char[] {'\n'} ); ...Show All

  • SQL Server Recommendation on Sync with Access and SQL Everywhere

    I am re-writing an application for Windows CE which was originally written for the Palm OS. The original application was written in VB6 using access databases. I will be re-writing it in VB.Net and was considering using SQL Everywhere as it seems to fit the criteria that i need. There is also an application written for the desktop that synchronizes with the mobile application. This also is written in VB6 and uses Access Databases. I found the Sync with access CTP which i thought was exactly what i will need for this project. However i have a few concerns about SQL and Access and would like to ask a few questions before i can continue with this project. I read that this Sync with access will allow me to synchronize the data between ...Show All

  • SQL Server Property DefaultSchema is not available for Database [DatabaseName]

    We're using Windows Authentication with our SQL Server.  We've added a domain group to the SQL Server groups and would like to give it a default schema.  The properties window is the same for users and groups but the default schema field is enable only for user entities.  We cannot add a default schema to a group.   Is this by design,  a bug or a problem with our SQL Server installation Updated on 2005/08/29 My first try was done at through Database\Security\Users.  I tried going through Server\Security\Logins and I got this error message    Alter failed for User 'Domain\Group'. (Microsoft.SqlServer.SMO)   Additional Information:   --> An exception occured while ...Show All

  • Community Chat .NET

    What is the difference between .NET and java. If both are platform independent, can you suggest which is the most preferable based on platform independency. .Net and Java are both platform independent. All you need is the runtime software for the platform. Offical Supports: Language for .Net: C# (primary), C++, VB, and other languages (I don't know what else). Language for Java: Java. Mutiplatform Support .Net: Windows. (Other platform is available by 3rd party developer. I don't remember the project name.) Mutiplatform Support Java: Many platforms. Don't know the details. If you targets Windows, .Net is the best. .Net is faster, and you can do those "unsafe" tricks on C# or C++. But since other pla ...Show All

  • Microsoft ISV Community Center Forums How to generate a Desktop Alert programmaticaly

    Hi All, Sorry if I am asking a basic Question ,How can I can generate a desktop Alert Programmaticaly .I want to give a alert when ever a "Application_ItemSend" event is triggred. ...Show All

  • SQL Server =Globals.PageNumber & " of " & Globals.TotalPages

    how do i get pagenumber and total pages when i try to put on the page header i get error: =Globals.PageNumber & " of " & Globals.TotalPages error: [rsPageNumberInBody] The Value expression for the textbox ‘textbox17’ refers to the global variable PageNumber or TotalPages. These global variables can be used only in the page header and page footer. Build complete -- 1 errors, 0 warnings any help please myGreenBird, Can you do something for me real quick Right click on the textbox where you have your expression for the page number and total pages. Do you see " Select 'Page Header' " or do you see " Select 'Body' " in the context menu that pops u ...Show All

  • Visual C# Remove picture Box Controls

    Hi all I have windows form, where in picture boxes are dynamically being created, I need to Remove all picture boxes from the form every time user clicks on the button to load new images , how can i acheive this. i tried with the following code , but it didn't worked PictureBox pic; foreach ( Control ctr in frmScreenShot.ActiveForm.Controls) { if (typeof(PictureBox)== ctr.GetType()) { ctr.Dispse(); } i also tried with this code snippet PictureBox pc; if (this.Controls.Contains(System.Windows.Forms.PictureBox )) { this.Controls.Remove(pc) ; } Welcome Each suggestion Thanks You could add another parameter to the method that gives the ...Show All

  • SQL Server semi-additive (inventory problem)

    i have a more general question about cube design (fact table) using ssas 2005 my inventory cube should track the daily in and outs / per product as well as an inventory level should be calculated at the end of each month . how do you design the fact table only in and outs are imported in the fact table. my suggestion: # timekey # productkey inQuantity outQuantity how then is the inventory level at the end of each month calculated, given the fact that there is an opening balance at the beginning of the year (where is this measure stored ) thanx for your help!! If you were to compute the ...Show All

  • Visual Studio 2008 (Pre-release) .NET Framework 3.0 and LINQ

    Is it safe to install just released .net framework 3.0 (RTM) on a machine with LINQ (May CTP) Has any one tried it or any ideas Thanks. It should be fine to install both. LINQ (and Orcas) will actually be a part of the V3.5 framework, which should coexist with 3.0. Erick ...Show All

  • Windows Forms Datagrid: multiple data elements in one cell

    Hey everyone. Hope you can help me on this one. I am reading data from an SQL database which inventories all the content on our intranet into a datagrid. It is a simple two column datagrid. It displays the content in the left column and the "owners" username in the right. However, there are multiple owners for each content item in the database. So there ends up being 4 or 5 redundant values in the left column. Is there anyway in code or in the SQL select that i can make all of the owners appear in one cell comma delimited I am using bound columns by the way, and am willing to switch to template columns if it is necessary for this. Thank you in advance for your help, J.Button You will ...Show All

  • Visual Studio Team System Custom rule

    Hi, I wrote a custom rule (MyRule.dll) with an embedded resource xml file (DataRule.xml), I loaded it into FxCop, I saw the rule MyRule.dll was listed on Rules tab, but when I started to analysis, it said no rules available. (I unchecked all default rules) Can someone tell me the detail steps to load it into FxCop after I have MyRule.dll with DataRule.xml Thanks. David, I figured out a part of the problem, now the error message shows: Error loading rule 'xxxxRule': Could not locate 'Owner' node for 'xxxxRule'. Thanks. ...Show All

  • Visual Studio Bitmap image not displaying for IE - OK on Firefox

    I have a report with an image coming from a database field. I have tried viewing the report as a local using the ReportViewer control in a web page. Also have tried it as a remote remote report in reportserver. In both cases the bitmap image shows up correctly if I use Firefox as the browser but doesn't when using IE. With IE I just get the small square with red x. If I export the report to PDF or Excell the images display fine. If anyone else has had this problem and has a solution please let me know how to fix this. Any help would be appreciated. Tom Richards trichards@pharmitas.com ...Show All

  • Visual Studio Team System Data Generation - XML Validation: Text node is not allowed at this location

    After importing the AdventureWorks database, a data generation plan is created. Using the default settings, this DGP is executed, which fails: Error 5 Table Contact : System.Data.SqlClient.SqlError: XML Validation: Text node is not allowed at this location, the type was defined with element only content or with simple content. Location: / C:\Adventure\Data Generation Plans\DGP001.dgen 2 0 Adventure This following Regular Expression is safer to generate correct xml because .+ in the Regex I provided before will generate un-escaped <, > which will violate the xml schema. <Root>(<DataElement>[a-aA-Z]+</DataElement>)+</Root> Thanks, Henry ...Show All

©2008 Software Development Network