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

Software Development Network >> Danny Tuppeny's Q&A profile

Danny Tuppeny

Member List

vijayshankark
spotluri
Tryin2Bgood
RajaGanapathy
dgolds
kevinzx
Sjas
Will Merydith
BilalShouman
LSF
Domini
Mark B .
Andy Perkins
MRDPrince
MielieSpoor
Nuno_Salvado
niroshanonline
Carel Greaves
adamoneil
legoman26
Only Title

Danny Tuppeny's Q&A profile

  • Windows Live Developer Forums Keeping map view with GeoRSS

    Is it possible to load GeoRSS - Data with keeping the map view I use following code: function AddMyLayer(type, source) { VEPushpin.ShowDetailOnMouseOver = true ; VEPushpin.OnMouseOverCallback = null ; var veLayerSpec = new VELayerSpecification(); veLayerSpec.Type = type; veLayerSpec.ID = layerID; veLayerSpec.LayerSource = source + ' RandomKey=' + Math.random() * Date.parse( new Date()); veLayerSpec.Method = 'get' ; veLayerSpec.FnCallback = OnFeedLoad; map.AddLayer(veLayerSpec); layerID++; } Nothing else is done but my map changes the view. That's what I have done. function AddMyLayer(type, source) { var mapCenter = map.GetCenter(); var zoomLevel = map.GetZoomLevel(); ...Show All

  • SQL Server How to execute SSIS package with configuration stored in SQL server?

    Hi, I have a SSIS package called "MyExport" stored on the SQL server 2005 standard SP1. I have created an SSIS package configuration stored in a SQL table msdb.dbo.SSIS Configurations, with the configurationFilter = "Export2" with some configuration values which I can change programmatically as needed. How do I execute this package with the configuration in the SQL table I don't seem to have any problem when the package configuration is stored in an .xml file. The documentation is very poor or non-existant on trying to do execute the package with configurations stored in SQL server. I just can't seem to get the proper syntax. Can someone give me an example of a dtexec command for the above or maybe some c# code In Ex ...Show All

  • SQL Server duplicate rows in 1 csv file

    Hi, I am trying to import data from a csv files to a OLE DB Destination. The csv files contains all transactional changes . For example for a particular record the firstname, lastname, email address records change within the same csv file. I need to save only the last updated record from the csv files. I have tried "slowly changing dimensions" but these dont work when there is duplictes within the same csv file. Also have tried 'Sort' but this only stores the first occurance. Any ideas how i can store the latest changed data within 1 csv file. How does the process distinguish between the latest data and duplicate data Is there a date as part of the row or is it just the last row wins Kirk ...Show All

  • Windows Live Developer Forums i need some help on nick changing

    the problem is i can't change my display name in windows live messenger, and my current display name is my email address, it just remains the same display name no matter how i change it. just recently, i tried to log in my account using windows messenger. i change my display name there and it did work. however, when i back to windows live messenger, i encounter the same old problem again. by the way i can neither change the personal message in windows live messenger. anyone know why on earth does this happen Same thing is happening to me.... - my name remains my email address no matter what I do to change it :S - personal name cannot be changed either - in conversations my name appears as "Q ...Show All

  • Visual Basic Thanks Jim: New Problem

    I need to use the OPEN statement to open a file on another computer in my home network. Does anyone know what the File String should look like i.e. something like Open: "C:\The File" For Random as #1 Len = Len(Type) Except I need a valid path to the other computer! Thanks Forget that last post. While doing earlier testing I placed a Close statement in my code that I hadn't noticed. New Problem: The file won't CLOSE. It won't even close using Close without an argument i.e. "Close" Any ideas Dave ...Show All

  • Visual Studio Small problem - Long namespaces truncated

    Hey folks, I don't know if anyone mentioned this, but if your Namespaces are long, for example. MyCompany.MyGroup.CommonLibraries.MyProject When the CHM file is built, the text of these namespaces will be truncated on the Namespaces page of the resulting help file. Thanks! G May I suggest then, that you allow the Namespace text to wrap in the cell instead of truncate. It will make the doc more readable without any crazy table layouts. Thanks!! -George ...Show All

  • Visual Studio Team System How to give permission according to specific field value?

    Hello I have Work Item Type , I want to allow access to edit this WI for one group according to specific value of specific field, that means, if field A get value = B , then group C can edit Work Item, Is there a way to do this Thank you Subodh is right, a workitem cannot be made entirely readonly based on a field's value. Each field can be made readonly separately, except fields such as AreaPath, IterationPath, History. ...Show All

  • SQL Server Hypertext link in a report.

    hello : On a hypertext link in a report, how to open the link in a new window IE. Thank's. Thank's: but : I I use the properties of a zone of text, and I put in anglet Navigation towards another report(relationship). Thus I do not know or I put your code. ...Show All

  • Windows Forms combobox

    hi guys, how do i add a datagrid to a combobox any sample code or links will be helpful . Thanx in advance. rawky Here is the answer: http://www.xmlfox.com/CSsamples.htm -L ...Show All

  • Visual Studio Express Editions Convert decimal to fraction

    Does VB have any built-in function to convert a decimal number to a fraction What I need is a way to convert a decimal number into a fraction string rounded to the nearest 32nd. So for example, .375 would be converted to "3/8" or .428 would be converted to "7/16" after rounding. If VB doesn't have this built-in, does anyone have code for a function to do this Thanks... DMan1, I was searching the forum on a completely different subject when I came across your post. The term GCF caught my eye. Your function getGCF works fine, but there is a much more elegant solution to this problem that was developed by Euclid . Yep, it is the same Euclid who developed geometry, a long, long ...Show All

  • Windows Forms Do Not Merge Menus of MDI & Child

    I see several threads over the past few years on how to merge menus from the child on to the MDI - as it does this by default it's just a matter of how you want them to appear. However, I would like to maintain 2 separate menus - 1 on the MDI, and 1 on the child. If I change the Merge Type from Add to Remove it removes it from the MDI menu, but does not display it on the child form. Any suggestions would be appreciated. GRaab Hey Michael; I've added the menu to the child form, but am missing where (in design mode or programmatically) to tell it to NOT merge the menus. It merges them by default. Most times that great, but this time I need to keep them separate. Do you know what option defines the merge in the design mode, o ...Show All

  • .NET Development link 2 tables from my database

    i have a table books with al my bookinformatio fields and also a table group. Now i want to link these two tables. So that i can make a combobox were i can select the group and then in the datagrid all the books show up off this group. But how do i link these two tables and also do the link in the combobox and datagrid. (c# beginner) Hi, You can first bind the table group data to the combobox, and then use SQL statement with param given by the combobox to get the corresponding data and bind the data to the datagrid or datagridview. The SQL statement is like "SELECT * FROM bookinformation WHERE bookID = @bookInGroup", and evaluate the param such as SqlParameter.Addwithvalue("@bookInGrou ...Show All

  • SQL Server Question on Report Builder

    I am launching the Report Builder from my web application. The launching works fine. The Report Builder displays all the models published on the Report Server, whereas the user launching the report builder doesnt have permission on most of the folders containing the models. The permission set on the folders individually (not inherit from parent) using Management Studio. The Report Server and the Report Builder folder under that both are running with Integrated Windows Authentication. Is there anything am missing to check I want the user should be able to see only those models, which he/she has been given permission to access. For info, the web application from where the Report Builder is launched is using Forms Authentication. ...Show All

  • Visual C# question marks in parameter list

    I have a Fill Method and when i mouse over it the parameter list reads int, bool, string....this means nullable right How do i pass values to nullable types....when i pass it 12, false "hello"....It tells me that the arguments i have specified are are invalid for this method any help with this..... Hi, Tryin If you just pass params to it, regard this method as  public   int Fill( ETFreightDataSet1 . LegRateConfimationReportDataTable dataTable, int StopID, bool IsShipper, int OrderID, int CustomerID, bool IsPrimaryContact) It's quite easy to understand. :-) PS Since the Fill method is a virtual one, don't forget to implement it before using it. ...Show All

  • Visual Studio Uninstall Failure

    Ok ... so I really "messed" up ... wanted to install latest GAT/GAX ... uninstalled GAT ... then tried to uninstall GAX ... but this failed because I still had a Guidance package registered ... <sigh> (forgot about that) ... I then reinstalled the old GAT ... opened the solution to try and de-register it ... no luck ... it failed ... so, uninstalled GAT again ... then went through the registry and removed all references to my guidance package (it was called BaseLibrary) ... then I did a search of the hard drive and removed all references and I even did a file search to look inside the files to find those that might reference it. I tried the uninstall from the msi and Add/Remove Programs with the same result. Have also reboo ...Show All

©2008 Software Development Network