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

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

Sianspheric

Member List

Hena
JN5943
GRK
Balazs Mervo
MauricioUY
aCaen
Mile Petrov
-Antilles-
Brandon_C8
IamWasim
Raptorix
Evgeny Popov
Bandile
iSerg
J A Y
12340987
Andy Britcliffe
David N.4117
ReiXou
donkaiser
Only Title

Sianspheric's Q&A profile

  • Smart Device Development Create Emulator

    Hi all. How can i create my own emulator by VS 2005 in my project and us it.(for example create window in my emulator). thankc Gerge wrote: Mohit Gogia in VS 2005 when you create projec and run it .it rans his own device.and i want create project and ran but where i can run my device emulator and do with it what i want.For example carete windows in my devace. thank. if you have the smartphone SDK and/or pocket PC SDK installed, it will offer you the option to deploy your project to emulator in VS2005. ...Show All

  • Visual Studio Express Editions Stuck inserting into access

    Hi Guys im stuck updating a selected record in my project :o), i know sql part works(See method 2 for correct statment) as i done it inside access :o) both the pasted methods give me an error Method 1 Dim strTEST As String strTEST = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=N:\Inspectors\Database\Inspectors.mdb" Dim sqlConnection1 As New System.Data.SqlClient.SqlConnection(strTEST) Dim cmd As New System.Data.SqlClient.SqlCommand cmd.CommandType = System.Data.CommandType.Text cmd.CommandText = "UPDATE Region SET RegionID = 1, RegionDescription = 'East' WHERE RegionID = 1" cmd.Connection = sqlConnection1 sqlConnection1.Open() cm ...Show All

  • Visual Studio Express Editions Send A E-mail Form With Standard Labels

    Hi, i want to how i can send information of a desinged form with vb 2005 Express Edition. Thanks, Niels do you mean sending an email from your WinForms application If so, take a look at the System.Net.Mail class. There are a few discussions about this so here are a few links that I hope i will get your started: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=607601&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=611749&SiteID=1 Does this help ...Show All

  • Visual Studio Debugging custom project type

    Can anyone offer any tips for debugging a custom project type project I have my custom project type project set up to automatically register the package as a post-build event. The project is also set up to run devenv.exe with the experimental hive as its debugging action. When the debugger starts, the breakpoints I have set in my custom project type code all say that the debug symbols can't be found. I am not sure if I need to copy the symbols to a new location as part of the post-build event Devin Hi Devin, I think the answer to your question is YES - you you need to copy the symbols to a new location too. I'm not sure about C++ but if you are using C# - you can use the special MSBuild targets ...Show All

  • Software Development for Windows Vista Laptop close lid, and re open lid, Vista wont resume, screen is off/black

    I'm having a problem with Windows Vista Ultimate 64 bit edtion on my HP laptop, when i close the lid but i have set up what windows does when i close the laptop to do nothing, but when i close the lid, and re open it, the screen is off/black, cant shutdown it properly and must do hard reboot. Laptop is HP Pavillion dv9000nr AMD Turion 64x2 Nvidia GeForce GO 6150 1gb memory How did you create a sleep button I have a few custom shortcut buttons on my vaio, but I don't see any way to activate them in vista. I have just been hitting the windows key to open the start menu, arrow-right to select sleep, and hit enter. Then when the power goes off I hit the power button to wake it back up. Takes ...Show All

  • Visual C# try-catch

    Is there any way with a try-catch that if the try fails that I retry it Basically I have an app that downloads text files, and then processes them. However, at my location we lose internet connectivity on a fairly common basis, and I don't want the app to try to process half downloaded files. The downloading sequence is in a class by itself, so I just basically want to do the following: try { download files } catch { try again } I haven't found any way to do it so far, so any help would be appreciated. Thanks, Russ good point Sven, I knew there had to be a simpler way! however even using the previous one wouldnt have the stack overflow exception since you get a max of 3 tries and thats ...Show All

  • Windows Forms DataGridTableStyle??

    I have a datagrid binding to a dataset but it shows some unwated columns.....Can someone point me in the right direction on how i can alter what columns are shown in my datagird The datagrid's tablestyle will determine which columns are show in the datagrid for a given tablename. You can have more than one tablestyle for a datagrid. The datagrid will show all the columns if it does not find a tablestyle with a matching tablename. Here is a simple example. Dim strConn As String Dim conn As SqlConnection Dim da As SqlDataAdapter Dim ds As New DataSet strConn = "Server = (local);" strConn &= "Database = NorthWind; Integrated Security = SSPI;" conn = New SqlConnection(str ...Show All

  • SQL Server Dynamically pick the source and destination tables

    I want to write a SSIS which picks up the source and destination tables at runtime is it possible. As we have a SSIS which is used to pull data from oracle but the source and destination table name changes. All the source tables have different data type and columns, so I think it is not possible to have 1 common SSIS for all of them. We are storing our packages under the FileSystem on the server and executing them via jobs. So my question is if we make the changes in the package in BIDS(our Solution file) will it be reflected in the job or we'll have to import the package in File System ...Show All

  • Visual Studio Express Editions Using TabPages as MDI - need some help please

    I am working on an application where I want to use a TabControl with multiple TabPages to display multiple documents. My application starts up with TabPage1 having a certain set of controls (a few textboxes, a datagridview & a button). I want to be able to have an event (a button click perhaps) cause a new TabPage to be added to the TabControl & be populated with the same controls, in the same locations, that are on TabPage1 (which were created at design time). I have pretty much figured out how to add the new TabPages, but here's where I get stuck: 1) How do I duplicate the controls that are on TabPage1 to the new TabPages 2) How do I address the controls that will be added to the new TabPages ie. the DGV that is TabPage1 is call ...Show All

  • SQL Server top n sales per territory - easy one

    Well, at least I think it's an easy one. Usually the obvious ones are the toughest for me! I would like to get the top n producers for each region. I have tried topcount, but that's for overall. Here's the summary: Dimension [Org] - has a hierarchy called [Org].[Region-Pcenter] which contains all of the regions and their processing centers that report to them. I would like to find out the top n Processing Centers in terms of sale for each region. So the output should look like: Region Processing Center Sales 1 A 110 1 G 109 1 I 108 2 D 113 2 J 109 2 K ...Show All

  • .NET Development Consuming object arrays in Web Services

    Hello, I am getting to know about wonderful .NET Web Service features with VB.NET. For some reason, I can't get VB.NET to understand an array of objects defined in WSDL file. If you take a look on following url: http://www.nonplus.net/geek/samples/books.php wsdl you can see that there are ChapterArray, Book and BookArray types defined. If I make a web reference to the url above in my VB.NET, ChapterArray and BookArray won't come available. Why Should the be defined in another way in WSDL Thanks, Ville I will attach the type definition WSDL code to this thread as it can be removed from the URL mentioned above. The full WSDL is available via that link above. <types>     < ...Show All

  • Visual Studio Express Editions Can't download from microsoft also

    I ve been having a similar challenge. I can not download from microsoft. I have comcast and have spoke with them they say they are not blocking my modem and that it is a microsoft problem. I have three PC's in my home and none of them can download from microsoft. They all have valid windows XP installed. I am able to get auto updates, and when XP is reinstalled onto my pc its goes through the validation just fine. I get a can not display the webpage every time i try and download something. I am not able to even open the validation link pages to run the validation checker tool. I have XP pro and Explorer 7 which i have made sure that all the active X options are enablesd and that the enable third party extentions in the ad ...Show All

  • Visual Studio Express Editions Trouble with databinding

    I have 2 forms on the first form I have a combobox and a datagridview on the second form I have a Detail datatable. I on the datatable I have itemID and itemName. I want to display the itemName of all of the items that I add to this datatable in the Combobox on the first form. I want to do this so that I can create a link between my datagridview and my combobox. So when I select Harddrives from the ComboBox I can get the Datagridview to display all of the Harddrives that I have in store along with the speeds and other information. And all off this other information is in the datatable that is on form 2. So how do I get the itemname to display in my combobox and then how do I get the itemname in the combobox to determine the displ ...Show All

  • Software Development for Windows Vista UAC Shield in menus?

    Thankfully there's an easy way to add the UAC shield to buttons by using BCM_SETSHIELD. I wonder though - is there a similar option for menus somewhere The docs say that context menus are supported via DefCM but I'm really looking to add the shield icon to a generic popup menu. Can I do this without ownerdrawing it -Marton I've tried to get the UAC icon to appear in a menu with true transparency, but I am experiencing a strange problem with the alpha channel. It is not working properly, it appears as if the alpha channel were getting converted into a 1-bit alpha channel. I have extracted the 16x16, 32-bit version of the UAC icon from USER32.DLL and saved it as a 32-bit BMP file using GIF Movie Gear. ...Show All

  • SQL Server What instead of "select" trigger?

    There are acting: MS SQL Server 2000 + SP4 OrCAD Capture CIS Capture CIS can read data from tables or views via ODBC. I'd created a view for this purpose, but now I want to implement logging: who had selected the data from view and when he did it the last time. Several difficulties arised: There are no triggers for SELECT in MSSQL Server I can call user defined function in a view, but can't write anything to user defined tables and can't call getdate() within my function Calling extended stored procedures is an excessively complicated way Our system administrator doesn't allow the existence of extended stored procedures on the server Any reasonable suggestions ...Show All

©2008 Software Development Network