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

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

Josibe

Member List

_target_
Sreekk
Dan Sherwin
xmlfan
hchavali
mdthanh
Sweeps78
ajustin
Jeremy Thake
DanDanne
EpicJohn
John Woodiwiss
Ofir Epstein
ximadyn
chaza
Forgon
Sanophy
arkiboys
EricTBone
slickred
Only Title

Josibe's Q&A profile

  • Visual Studio 2008 (Pre-release) vs 2005 express an march orcas

    I am a bit confused with the downloads and maybe someone can help I am running vista and I have VS2005 C# Express and Blend. In order to develop xaml apps between express and blend what do I need to download As far as I can see I need the march orcas but that also points me to a batch of other downloads and do I need the VS extensions as well  Do I also need virtual pc thank you for any assistance Once you are using VS Orcas, the VS Extensions are no longer necessary. VS "Orcas" March CTP > VS 2005 + VS Extensions You can choose to run Orcas inside a Virtual PC, or install it as normal. Thanks, Rob Relyea ...Show All

  • Visual Studio 2008 (Pre-release) ListBox and Mouse Capture

    I use ListView (which derived from ListBox) to display graphical data. Each ListViewItem consist of single column and that column display a Path element which its Data property is bound to my data item. My data items have dependencies between them and I would like to display those dependencies when the user right-click on a graphical element. I hook into MouseRightButttonDown event and display the information. On the MouseRightButtonUp I stop display that information. Because I want to stop display the dependencies when ever the user stop pressing the button I try to capture the mouse so I will receive the MouseRightButtonUp. Unfortunely, I found out that the ListBox class release the mouse capture when the mouse is moved over ...Show All

  • Visual C# how do i connect to my server

    hello gud am to the expert i studying c# through samples from the internet. but it seems i got stuck...the more i read the more i got a problem even a  connection i can't make....please i need help from the experts out-there.... my problem is...i want to connect to my network server but i can't... every time i press F5 i got an error... here's my code below which i modify from the sample private void Form1_Load( object sender, EventArgs e) { String strConnection= "server=my sql server connection ; database=mydabase; " string strCommand= "Select customerid,customername,customerAddress from customer" ; } P.S. i am using SQL ODBC to connect to my remote database, i use this connection as a back-end databa ...Show All

  • Visual Studio Extending Built In Packages?

    I've been searching for a way to Add SSH support to the WebDirectory Project. Is there a way to Extend webdirprj.dll or will I have to write an entire new WebDirectoryProject Package in order to add support for file systems such as SSH Thanks, Hi Darren, I confirmed with the right folks here at Microsoft that this is not possible today. However, it is on our list of considerations for a future release of Visual Studio. Thanks! Aaron Marten ...Show All

  • Visual Studio 2008 (Pre-release) VB over C#?

    I have read this article on LINQ project: http://msdn.microsoft.com/data/ref/linq/default.aspx pull=/library/en-us/dndotnet/html/linqprojectovw.asp#linqprojec_topic9 And after looking at the code I can see that in VB (which I don't know and don't like) the new syntax looks intuitive while in C# (which I do know and like so far) it looks unnatural and confusing. What the hell   I think you are stressing over the sections which discuss the new language features that enable LINQ (lambda's, expression trees, extension methods, etc). If you just look at the basic query syntax, I think you won't be as confused or see as much difference between the VB and C# implementation. Note t ...Show All

  • Visual C++ Every time while relocate : Add Files to Project

    Hi, In our project there are many files I have to add from different directories. And that is working fine. But if I relocate that project folder then path of all the added files is changed. And I have to delete those files and add the same files again every time. Is there any way to give relative path to this files so if I change the location then I need not add all the files again. Thanks The files are always added using a relative path as long as this is possible (that is when the file you add is on the same drive as the project file). Note that even if you use relative paths you need to move both the project and the files and keep the same "relativeness" between them. ...Show All

  • SQL Server Create XML file with SS Management Studio Express

    Hi Folks, I have this problem using SQL Server Management Studio Express. When browse query/table with XML type column I cannot create manualy XML field. Is that possible using built-in XML editor I make following steps: 1. Use AdventureWorks example Database 2. Create New Query on Person.Contact table ------------------------------------------------------------------ SELECT ContactID, Title, FirstName, AdditionalContactInfo FROM Person.Contact ------------------------------------------------------------------ 3. Execute query 4. Then : first 10 records contain XML data in AdditionalContactInfo field 5. I cannot insert manualy new XML data into record 11,12 e.t.c I thing it is possible by built-in XML editor, but HOW Is it possible ...Show All

  • Windows Live Developer Forums VE Find in other locales

    When we try looking for an address in VE or local.live.com using a browser with the language settings set to french, results that would normally come up in english do not. Has anyone come across this problem Thanks ...Show All

  • Smart Device Development Error deploying PocketPC Resource Files

    Hello all. I have developed an application for .NET CompactFramework 2.0. Such application is to be multilingual: Spanish and Catalan. When I debug the application the multilingual feature runs awesome. It puts each resource file "MyApp.resources.dll" in each of its respective folders "es/" and "ca/". The problem is when I create the installer cab: It puts the "ca/MyApp.resources.dll" into the "es/" folder, therefore overriding the spanish language resource assembly. Then, when I try to change the application to spanish I get the "MissingManifestResourceException" because it doesnt find the assembly. I have ildasm'ed the "es/MyApp.resources.dll" and it is indeed th ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. help please Rendertarget on xbox360

    i have look at this sample by Manders vs. Machine i use 2 rendertarget and it work in winxp but not on xbox360 when you graphicsDevice.ResolveRenderTarget(0); ( you get a copy of what you just have render) so you can say this Texture2d mytex = Myrendertarget.gettexture(); now i shood have a copy of the rendertarget copy from xbox fast mem to local mem stored in my mytex now shwicth rendertarget and do the same and render to a screenquad on both textures this dos not work xbox so thery u can onlye have one rendertarget on xbox one for shadow and the mesh but i what to postprocess the mesh example bluer it a bit so i need a rendertarget more we can do this on windows but not on xbox i have converted ab ...Show All

  • Visual Studio Express Editions Using choose() to choose a random string

    Hi I have declared 3 strings as below: dim str1,str2,str3 as string str1="Blah" str2="Boo" str3="foo" MsgBox (choose(3,str1,str2,str3)) However this always shows the 3rd one. Am I using the function incorrectly or is this the wrong way Thanks! If you're seeking a random choice, then the following works: Dim rnd As New Random MsgBox(Choose(rnd.Next(1, 4), str1, str2, str3)) ...Show All

  • Visual Studio 2008 (Pre-release) Pattern to Emulate a Property with no set in a DataContract?

    I'm writing the WCF Service Hosts for our application. I know that in a DataContract a DataMember marked property must have a get as well as a set . Does anybody know of a good way to get around this Say I've got an Employee class that's a DataContract. I would like the client to be able to change FirstName and LastName and all that stuff, but I don't want them to be able to change the EmployeeId. I just want them to be albe to read it. Both my Service and Client  are .Net apps. Any help would be very much appreciated. Thanks, Geoff Rajesh,     Thanks for the reply, that was a lot of help. I ran into a couple of problems implementing the /reference: option. On my trivial example that ...Show All

  • Windows Forms Access Form2 from Form1

    hi i have 2 forms i have a textbox control Form1: Friend WithEvents txtAccCode As System.Windows.Forms.TextBox Private Sub txtAccCode_KeyUp( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtAccCode.KeyUp If e.KeyCode = Keys.F1 Then Dim frmSearch As New frmSearch frmSearch.Show() End If End Sub Form2 Form1.txtAccCode.Text = "Abc" Form1.lblAccName.Text = "Abc" How i can access you need to have a reference of the caller form. you need to pass form1 instance into form2 and reference that from form2 to access form1. Take a look at this: http://forums.microsoft.com/MSD ...Show All

  • Software Development for Windows Vista DIrectShowNet: How to set videoWindow to be display on a panel?

    **Coding GetInterfaces() 'attach the filter graph to the capture graph hr = captureGraphBuilder.SetFiltergraph(graphBuilder) DsError.ThrowExceptionForHR(hr) 'use the system device enumerator and class enumerator to find 'avideo capture/preview device, such as a desktop USB video camera. sourceFilter = FindCaptureDevice() 'Add Capture filter to our graph hr = graphBuilder.AddFilter(sourceFilter, "Video Capture" ) DsError.ThrowExceptionForHR(hr) 'Render the preview pin on the video capture filter 'use this instead of graphbuilder.renderfile hr = captureGraphBuilder.RenderStream(PinCategory.Preview, MediaType.Video, sourceFilter, Nothing , Nothing ) DsError.ThrowExceptionFo ...Show All

  • Visual Studio Express Editions Tell Us Your Express Story and Win $100!

    Want a chance to show off a cool way you’re using Visual Studio Express or SQL Server Express We’re looking for your stories! Tell us about something that makes your life easier or is just plain fun and if we like it enough to include in a feature article, we’ll give you a $100 gift certificate to Amazon.com! This includes Visual C# Express. http://msdn.microsoft.com/vstudio/express/support/hero_promotion/default.aspx You want to know a cool way to use Visual Studio Express or SQL Server Express! Somehow I agree – doing XNA - using C# is must. Other usage is learning and it is perhaps the most the Microsoft want for all of us. Once in the hook, then … you know the result. It’s not bad, if you m ...Show All

©2008 Software Development Network