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

Software Development Network >> J Cervero's Q&A profile

J Cervero

Member List

JohnI
Sushant Raut
Emacs
Hemant K
RameshP
Srinivasa D Parupalli
GAL
Tim Daplyn
FHeNuS
siwi
gzitek
Jharris65
PSRibeiro
jmiller76
JBJBJB
ldhertert
John Paterson
Nancy Hidy Wilson
JR
AntonioP
Only Title

J Cervero's Q&A profile

  • Windows Live Developer Forums How to call a web server asyncronously without ActiveX

    My article at http://www.codeproject.com/jscript/MSNMessengerActivity.asp shows how to call a web server from your MSN Messenger Activity without using ActiveX. When the update gets added by tomarrow hopefully then it will also show how I simulated a mouse pointer so that each user can see the others mouse movements without using ActiveX.   Check them out if you need either of these techniques for your activities. With the help of DevToolbar http://www.microsoft.com/downloads/details.aspx FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en   I was able to see your DOM and indeed you got the and ...Show All

  • SQL Server Scripting Objects: Two Questions

    With my efforts to try and Source Control our database objects, I have run into a few quirks with scripting. For both of these question I went through the Generate Script Wizard: Right Click on Database->Generate Script Via Managmenet counsole running on the September CTP (company waiting for the new year to purchase the released versions) Anway: 1) Why can't I run the Generate Script on a database that is set to 7.0 compatibility level   We have our core database that has to remain at 7.0 compatibility level do to some coding in our Access 97 applications that reference it.  I can flip it to 9.0 level, and the sc ...Show All

  • SQL Server Adding Table to Dataset for SQL Server Mobile causes VS 2005 to lock up.

    I am running VS 2005 Professional Edition Windows XP profession with Service Pack 2 SQL Server 2005 Developer Edition. WHAT I HAVE DONE: I have a database running in an instance of SQL Server. I set this up for merge publication and then set up a SQL Server Mobile Edition Subscription to that publication.  After a few oversights I got everything working.  The Mobile database replicated just fine.  I went back verified all data was there.  Can make queries to it.   PROBLEM:  I set up a new dataset to use tables from the SQL Server Mobile database.  If I drag one of the tables to the d ...Show All

  • Smart Device Development dblclick mouse event on datagrid

    hi How can I work with event called "doubleclick" - long touch on screen something like MouseUp event but i need to invoke "bubles" (like on invoke context menu), and the event will invoke after bulbles is complete:) [VS2003/WM2003 .NET CF]   gibic wrote: I am not satisfied with this solution. Why You described your end goal and you were told how to achieve it. Cheers Daniel ...Show All

  • Visual C# Database Question

    Ok. I have a database in attached to my program. What I would like the query to do is this. SELECT textBox1.Text FROM TableName; Here is the code I have now. private void doQuery_Click( object sender, EventArgs e) { sqlDataAdapter1.SelectCommand.CommandText = "SELECT" + textBox1.Text + "FROM TableName" ; dataSet1.Clear(); sqlDataAdapter1.Fill( dataSet1, "TableName" ); dataGrid1.SetDataBinding( dataSet1, "TableName" ); But this isnt working. Can someone please tell me how to complete this code. It would be much appreciated. Ok, I got it to work. And no, it was in a windows application. And I just thought I would ...Show All

  • Windows Forms ThreadSafe dispose?

    Hi, I often get exception when the user presses exit. This closes the form but lets Events like RowValidating happen ... this fails because rows are gone... But I also guess that just checking if(this.disposing) will not help when dispoing is happening asynchron Regards Peter ...Show All

  • Visual Studio What is orthodox way of creating a 1:m report

    All of the quesiton below has to do with producing a report in local mode in VB.net. It is not clear to me what the report designer considers orthodox with regard to creating a One to Many report.  Let's consider a simple invoice report.  At the top of the Invoice you would have information on the Customer you are sending the invoice to ect, but on the bottom part of the report you would have the line item entries for the report in a table. When creating such a report, how does the report writer most like you to do it   I can think of two or three ways.  One, if you are creating a report for just one invoice number, ...Show All

  • Windows Live Developer Forums Debug and plugin reload with MSN Messenger API

    Hello, I'm creating a MSN plugin using MSN Messenger API and MsgPlus API in C# and there are two things that frustrating me: debug and plugin reload. Is there a way to reload a plugin in C# Although I can reload it making a call to msgplus like this: int msg = RegisterWindowMessage("MessengerPlus_PluginChange"); int retVal = SendMessage(0xffff, msg, 0, 0); but i can never change the plugin.dll file since it's always in use by msnmsgr.exe. (vb.net also has the seems to have the same problem, at least that's what I read in msgplus foruns, everything else isn't locked this way and files can be replaced easily.) What's the best way for debugging ...Show All

  • Windows Forms How to make form to not invalidate, erase and repaint it

    Hi, I need my form not to repaint under direct draw... Have you some advice thx Why don't you want it to repaint itself If you're doing the painting yourself, you can do that in your paint message and you can use SetStyles to make all painting occur in the paint message, that should place all painting under your control. You may also overload EraseBackground and return true ( that you've handled it ). ...Show All

  • Windows Forms Winforms Inheritance and MenuStrip

    Hi There,  I hope you are well. I'm building a form hierarchy using VS2005 Beta 2.    My base form has the minimum MenuStrip items required for all forms.  I have changed each menu item to a "protected" access modifier to allow inherited forms to further extend these controls.  Upon inheriting this base form for the first time, I quickly realized the menu strip is non-editable in inherited forms at design time, regardless of the parent modifier. Am i missing some fundamental here   How can the child form have design time inheritance to the menu strip Thanking you in advance for your advice. Kind reg ...Show All

  • Visual FoxPro External Connect

    Hi I know in Access you can run SELECT queries on external database. You just have to specify type and path. For example: SELECT * FROM <tablename> IN '' [ type ; DATABASE=<path>;] For dBase data source there are values: dBase III, dBase IV;  for Excel - Excel 5.0, Excel 8.0. What should I write to specify FoxPro type ODBC (but as far as I know existing ODBC drivers do not support VFP9 databases, you can use with older versions or check latest driver specification). If you can work with OLEDB in access then use it. ...Show All

  • Visual Studio Express Editions What the Array is going on?

    Is there a problem with array.sort If I load an array in to a list box I get A is Element [0] in the array B is Element [1] in the array C is Element [2] in the array but when I click the button to sort the array I get is Element [0] in the array A is Element [1] in the array B is Element [2] in the array Here is the code, Private Sub btnShowAll_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShowAll.Click ListBox1.Items.Clear() For i = 0 To 2 ListBox1.Items.Add(arrString(i) & " is element [" & i & "] in the array") Next End Sub Private Sub btnSort_Click(ByV ...Show All

  • Windows Live Developer Forums Colour nicknames ( display name )

    after geting windows live messanger all my contacts display names dont show in colour no more :(. it just shows the symbols. how do i fix this problem. Thanks :) Coloured nicknames isn't a MSN Messenger or Windows Live Messenger feature. Coloured nicknames are done by Messenger Plus. You'll have to wait for Messenger Plus Live to get coloured nicknames in Windows Live Messenger. Keep an eye on www.msgpluslive.net! ...Show All

  • Visual Studio Microsoft Visual Studio 2005 Setup problem- error trying to copy

    Installing on XP Pro from a CD, get the error message. 'Setup has encountered a problem while trying to copy: D:\Setup\VSSetupWatson\1033\DWINTL20.DLL Press Retry to attempt the copy again. Press Cancel to cancel setup.'   Retry and get the same error.   I have the exact same problem. I downloaded the ISO from "Microsoft Academy", and used different ISO-applications (Daemon Tools, Isobuster, PowerISO...) to mount it on my computer (Windows XP). I also tried to copy the content of the ISO to my harddrive, but i fails as well. So what can be the problem, and how to fix it ...Show All

  • Visual Studio 2008 (Pre-release) Graphics Example Strictly C#

    Just looking for a simple c# example that adds even a simple shape to a canvas in WinFX application at runtime. I've been searching the forums and MSDN for the past couple of hours without a solid example of someone trying to create an app in strictly c# or any other .net language. I'm trying to code an app that doesn't have a specific amount of visual elements that are add at runtime, and i'm just trying to figure out if it's even possible. Thanx. Yes it is very possible.  My application uses a mix of XAML for the top level structure and menus, then dynamically creates the content in the top level ele ...Show All

©2008 Software Development Network