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

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

lagu2653

Member List

Todd Biggs - Windows Live
John Knoop
Ayhan Yerli (TR-NL)
Kathirvel
gkostel
RMB775
2lazydba
mcgin1591
Orian71
DennisWCP
David Beavonn
Carlwave
dee-u
ahmedilyas
BarryDay
SoundGuy88480
Ready4u
wvvjoevvw
ruk_walled
RyanB88
Only Title

lagu2653's Q&A profile

  • Smart Device Development Discover and Pair with Bluetooth devices

    Hello. I am trying to develop a Pocket PC app that uses a bluetooth GPS unit. I would like to be able to simplify the process of pairing with a GPS device by writing code to discover the GPS unit and pair with it. I understand (I think) that this is not possible at this time in the .NET CF 2.0 without using P/Invoke. My Question is where can I find some info and possibly some examples of how to implement something like this. I've tried Google, but perhaps I am not thinking of the right keywords. I would appreciate any help. The http://32feet.net library supports the Microsoft stack on Windows CE or XP and does Pairing (BluetoothSecurity class). There are samples for most of the functionality though not specifically the pairing stuff. ...Show All

  • SQL Server Alter column name from SQL?

    How can you rename a column in a table (from c# code, preferrably from a SQL script command) without deleting the column and re-creating it with a new name Hello, SQL Server contains a system stored procedure called SP_RENAME which can be used to rename user created object (tables, column, sp's, ...) For more information, look at the BOL documentation on the subject http://msdn2.microsoft.com/en-us/library/ms188351.aspx (this is the 2005 version, but the system stored procedure also exist in previous version of SQL server) Hope this helps, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problems implementing a skybox

    Perhaps somebody with more experience could help me. I want to implement the skybox example from the DirectX SDK (Samples/C++/Direct3D/StateManager) and I've copied and renamed the following files (skybox01.x, skybox02.dds and skybox03.fx) to my project folder and have added them to the content pipeline. But I don't get it managed to load the skybox with her texture and set the camera to the center of the box, I think because I don't know how to handle the effects of the *.fx file and how to transform the box correct. (I'm new to XNA and I only have tried out the simple 3D examples with BasicEffects from the help files so far.) So if somebody has the time to show me how to handle these files correctly, I would be very glad. (You c ...Show All

  • Visual Studio Tools for Office get the selection range in excel with vsto

    Hi!! I have a simple answer, but I don’t know how to resolve it... I only need to get the selection range in a excel sheet, when I press a button in an vsto action pane... how I can to do it thanks! Hi, The following may get You started in the right direction: Public Class UserControl1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim wsSheet As Excel.Worksheet = CType (Globals.ThisWorkbook.ActiveSheet, Excel.Worksheet) Dim rnData As Excel.Range = CType (wsSheet.Cells.Application.Selection, Excel.Range) MessageBox.Show(rnData.Address) End Sub End Class ...Show All

  • SQL Server Problems integrating reporting services into a web app

    Hello I have an existing web app on my web server, and reporting services on my app server.  I'm trying to integrate the reports into the web app.  The problem is, when the user clicks 'execute report', the app, predictably, falls over, because the aspx page thinks it's on the same server as reporting services, whereas it's not.  Does anybody know how these requests from the aspx page can be redirected to a different server   The way I see it, if I can't get the integration working through url access, I'll have to use the soap api, which will involve dynamically creating drop downs for the report parameters, etc, which is moving away from utilising the advantages that reporting services brings! Any thoughts ...Show All

  • Windows Live Developer Forums upoad the files through webservice to particular server.

    Hi, I am creating one windows service and WebService. when any changes made in particular file,The windows service upload the file to the server through web service(I already added the web refference and uploaded to one server).The webservice is running in the server .My problem is,"I have 3 servers, all the three servers having same web service.I want to upload the file to partyicular server.How can I do it How can i add the web refference dynamically Is there any possible way please help me.... Thanks. justin(Navya) Hey Justin, this forum isn't the best place to get answers on web service architecture. My best recommendation would be to check out the pattern's and practices community s ...Show All

  • .NET Development Can 1.1 and 2.0 framework coexist on the same box?

    I'm trying to get my legacy asp.net (1.1/C#) apps to play nice with future 2.0 development. I can get either the 1.1 stuff to run or the 2.0, but not at the same time.  If the 1.1 apps are working the 2.0 work returns errors that tell me that the frameworks are trying to use the same process and that this can't work. If the 2.0 app works then the 1.1 error out. I suspect that this is an IIS configuration issue, but being weak in iis I can't seem to find a solution. I was advised to look at the App Pool for the individual web apps on by server.  The 2.0 apps show as belonging to the 2.0 pool and the 1.1 apps go to the default pool (1.1 ).  The Application Name (Home Directory tab), is set to "Default Application" or is lef ...Show All

  • .NET Development binding values to dropdown through c# code in infopath 2007

    Hi, I am currently working on Infopath 2007. I need to use browser enabled Infopath forms in MOSS 2007. I am trying to bind the values of dropdowns in infopath through C# code. Binding a dropdown to a dataset through code is soo simple in ASP.NET. I need to do something like this in Infopath: dropdownlist.datasource= dataset; dropdownlist.databind(); But Infopath is based on XML and I cannot find any way to bind a dataset to the infopath dropdown through c# code. I am aware of binding dropdowns in infopath in design mode, but I need to do it in code. Can anyone help me out with this -Bhavana Bhat Your best chance to get an answer for this question is to ask it in the Infopath newsgroup: http://msdn.microso ...Show All

  • Visual C++ VC++ 2005 : ambiguous call to overloaded function

    Hi all ... Why am i getting "ambiguous call to overloaded function" for built-in functions and operators I am trying to complile the project developed using the VC++ Version 6.0 in the new version VC++ 2005. Thanx in advance. c3 is and int, cast it to a char! But why so complicated returnee += static_cast<char>(c3); ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Video Background for Menus

    I am new to DirectX and would like to develop a menu system that has an animated video background while the user is selecting menu options. I have videos in AVI or WMV format and would like to render these in the background while I overlay text for menus. Does anyone have any pointers on how to get started on this ...Show All

  • SQL Server RDA Error 28622

    I have seen this error posted here in the past but have not yet seen an answer. I am developing an RDA Pull on a Compact Framework 2.0 enabled device. I am following several examples all of which are very alike. (Including Rory Blythes webcast.) When I perform the RAD.Pull method I receive the error 28622 - " Internal Error: Failure setting up a non parameterized query, possible incorrect SQL query." I know my SQL query is correct and I have patterned the entire procedure exactly as the examples I have seen. Could it possibly be an issue with IIS My IIS was setup using the Configure Web synchronization wizard and I receive the appropriate page when I link to it on both my desktop and mobile devices. If anyone has encoun ...Show All

  • Visual Studio 2008 (Pre-release) Member of User control event call in Page

    Hi, I made an application that contains one page and one control.I have put one button in user control.When I click on that, color of usercontrol background changes.Now I want that button click event on page and want to write a code in it. If any body knows,Answer as soon as possible. Thanks I have solved it. In my application UserControl is ctlMyPOD. cnvMain is my inkcanvas in page.btnMaximized is my button's name and IsPressed is event of a button.The below code in page is checked that button in usercontrol has been clicked or not.I have written this code on mouse up event of inkcanvas of a page. (((System.Windows.Controls.Button)((ctlPOD.ctlMyPOD)cnvMain.Children ).FindName("btnMaxi ...Show All

  • SQL Server past and future date

    How should I find the dates for 3 days past and 5 days future. Such as TodayDate-3 and TodayDate+5 base in the date only, discarding the time   Steve Kass wrote: Yes, I tested it. The query I posted was SELECT    dateadd(day,datediff(day,0,getdate())-3,0) AS [3 Days Ago],    dateadd(day,datediff(day,0,getdate())+5,0) AS [5 Days from now] The result in SQL Server (Query Analyzer, standard installation) is 3 Days Ago                         5 Days from now                       ...Show All

  • Visual Studio ReportViewer Cause error after deploying the webserver

    Dear all, When I deploy my web project into my Web server,everything is work,but except the report does not work properly. The config of my webserver is win2003 with IIS 6.0.And I make use of the report in the local processing mode and set "sessions state mode=InProc","cookieless mode=UseCookie"on the page of the state management in IIS. The error message is showed below Server Error in '/' Application. I I am having the same issue, but mine only occurs once when the application starts. If I press Refresh it works fine. I've set cookieless="false" and I've set cookieless="true" with the same results. I do want to ask Microsoft when we can see a fix to this problem I would also gue ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. persistent backbuffer OR renderTarget (on 360) possible?

    I want to disable backbuffer clear. Though I have removed the Clear from my draw func it still gets cleared to black on Xbox360. Run the same thing on PC and the mystery clear doesn't happen (stuff I'm drawing correctly smears across the screen). I also tried to workaround w/ ResolveBackBuffer to a texture and draw this back at the beginning of each frame but thats not working for me either. In this case my Draw() looks like: Draw Backing Texture using Quad Draw new items ResolveBackBuffer -> Backing Texture I even tried double buffering the backing texture w/ no luck. Thirdly, I tried RenderTargets, but they also seemed to be getting cleared each frame as well! I would think there's gotta be a way for rendertarget contents ...Show All

©2008 Software Development Network