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

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

Gwiz

Member List

yosonu
newbieneedshelp
R.Tutus
James Bannan
Tan .NetCF
Tim Hodgson
CKa
PaoloZ
ahmedilyas
EvilTrev
Mastan Oli
Didde
i7hira7
prolix21
nattylife
peiling
olgaF
MMuffett
chrisryp
MMV2007
Only Title

Gwiz's Q&A profile

  • Windows Live Developer Forums FAO The VE Developers - Get and Set ZoomLevel

    OK, we have been using VE now for a few months with grate affect but some of my sales staff are complaining a little bit about how the map zooms in and out. When working inside central London we need to zoom down to a certain level which is between the range we are aloud. Ideally I would love it if you could zoom the map with a double rather than an int16. Trying to send the SetZoomLevel a number like 4.5 seems to rip apart the map big time and put random image tiles into the area you are looking at. Is there any future plans of making the zoom level more accurate or are we stuck with the 19 levels Yeah I did think exactly the same as what you said mate, i should really have phrased the question a li ...Show All

  • Visual Studio Multiple pages are not showing in the report

    Hi All, i am facing this problem when i deploy the RDL in Report Server, the Muliple Pages and records are showing in the report properly. But when i integrate this report to Application, multiple pages are not showing in the report. i am working in VS2005, SQL 2005 i have given the below page setting: Page height -- 8.5 inch Page width - 11 inch the code which i had used in my aspx.cs file for calling the report in report server: lnkBtnName.Attributes.Add( "OnClick" , "window.open('" + reportURL + "', 'my_new_window','toolbar=no, menubar=no, titlebar = yes, scrollbars=yes, resizable=no, width=950px, height=650px')" ); any ideas to resolve this problem. Thanks Vinod ...Show All

  • Visual Studio Express Editions Creating a line control sim.. to autocad lines

    Hello, I'm a new guy in the world of VB and I'm trying to create a line control similar to the line controls that is in autocadd. Could anybody to get me started in the right direction Hi, Being able to click the line is quite complicated. But I guess you can do it using a Usercontrol. Just override the Paint Event of the UserControl to draw your line. Handle the selection by using the MouseClick events of the user control. cheers, Paul June A. Domag ...Show All

  • Visual C++ VS2003 -> 2005 : iterator / vector problem (C2440)

    Hi, Retaking someone else code which goes like that : typedef std::vector<XML_Node>::const_iterator nodes_const_iterator; XML_Node *_currentNodeTarget; XML_Node::nodes_const_iterator begin; begin=static_cast<XML_Node::nodes_const_iterator>(_currentNodeTarget); This was compiling / running well on VS2003 and now I have this on VS2005 : error C2440: 'static_cast' : cannot convert from 'XML_Node *const ' to 'XML_Node::nodes_const_iterator' It is my first encounter with standard C++ and I am a bit lost. Any idea how to correct this properly Thanks for your help Olivier Hi, It seems that I can cast an iterator to an element, but not the reverse. Any idea how to do this Cheers. ...Show All

  • Visual Studio Express Editions how to: bind a single control to multiple datasources

    hi, im really new to programming and i was wondering if there's someone out there who's kind enough to teach me how to bind a single control (ex. a textbox) to multiple datasource's (ex. two or more table's). thanks a lot.. sorry, but i do a lot of bad programming habbit, like relying mostly on intelisense to do the coding, well please correct me if im wrong (for sure i am), what im tying to do is something like this: example1.text = datasource example2.text=example1.text when i assign something like that, the value doesnt appear.. another help please ...Show All

  • Visual Studio 2008 (Pre-release) Message - Serialization issue?

    I have a problem. I have Message object and I want to serialize it to string in order to load it later in wse3 SoapEnvelope object. The problem is that when I work with SoapEnvelope object like this SoapEnvelope envelope = .....; string serializedMessage = envelope.OuterXml I get correct formated string. But when I work with Message object Message envelope = ...; string serializedMessage = message.ToString(); I get string with \r\n and other special signs and whitespaces. So when I try later to load that string in SoapEnvelope object and check signature using wse3, signature check fails. I also tried to get message content using XmlDictionaryWriter class and message.Write method, but I never get the whole message cont ...Show All

  • Visual C# StructLayout, Marshalling

    I send and receive packetized data over a serial port connection. The data is strictly defined, so the memory layout of the interface defintion has to be implemeted in C#. The type of packets I am sending/receiving look something like this: // Temperature Packet Id=5 int PacketId; int PacketLen; int32 CurrentTemp; int16 CurrentPressure; Bool IsHeaterOn; Bool IsHeaterEnabled; byte LastErrorLimit; // UserPacket Packet Id=12 int PacketId; int PacketLen; char [64] CurrentUserName; int32 LastLoginTime; So I will be setting/reading bits, bytes, words and strings in multiple packets. I have discovered the StructLayout attribute and think this could be the best way to implement this ( ! ). I am using C# and want to use manage ...Show All

  • Visual Studio Express Editions Hey Check my box

    Hello :) Dim Firstname As HtmlElement = Me.WebBrowser1.Document.GetElementById("Firstname") If Firstname Is Nothing = False Then Firstname.InnerText = TextBox1.Text End If Well I know this inserts data into a webform, But How do you tick a checkbox on a webpage Idea's would be great, shades ...Show All

  • SQL Server Execute SQL Task from ActiveX Tack

    What is the syntax to execute a "Execute SQL Task" from an "ActiveX Script Task Or should execute the stored procedure directly Thanks, JimDim ...Show All

  • SQL Server Hiding Parameters in Report

    Assume I have a report with 5 parameters.Based on a parameter , Is it possible to hide another parameter in the report.I tried doing but ended in vain. Because the Report parameters I add belong to the ReportViewer toolbar, I'm unable to hide the parameter based on the selection of another parameter. Can anyone help me out in this regard Is it possible to hide a Report parameter based on the value selected in another parameter(drop-down menu for example....) Hi, If your parameter is query based, you will have to make your query return no rows. There is no property in the reporting parameters to set the parameter to disabled at runtime. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual C# Using System Tray with C#

    Hi, I hope this is the correct forum - if not please advise. I have designed a standalone application that needs to be running all the time (despite the user minimising etc...) One way is to install the application as a service however I am not certain that this is the best idea. Can anyone advise how I would go about coding my application to allow users to minimise or close it so that it remains running in the background and or is minimised to the system tray. I want it to be listening for communication made to it from another application - when this communication occurs the original application has to do an action... Hope this is clear Thanks in advance Andrew I have written an example on ...Show All

  • .NET Development How I can remove completely .Net Framework 2.0 Redistributable?

    I used add/remove program to erase Microsoft .Net Framework 2.0 Redistributable and all looks OK, but still in my pc, I would like to delete all registers of it, if it can't be removed, I could install the 3.0 version . Excuse my written english badly. F.F. You don't need to uninstall 2.0 in order to install 3.0. See the .NET 3.0 Deployment guide ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnlong/html/netfx30.asp ) under How .NET Framework 3.0 Relates to .NET Framework 2.0 and Earlier To get the .NET Framework 3.0 please see the forum announcement at How .NET Framework 3.0 Relates to .NET Framework 2.0 and Earlier To get the .NET Framework 3.0 please see the fo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Moving the documentation to another PC

    Is it possible to move the documentation and msdn library viewer thing to another PC. I dont want to reinstall everything..... ...Show All

  • Visual Basic Selected Value in ComboBox Populates DataGridView

    'I need assistance on how to Load the GridView By selecting a value in the ComboBox '1. ComboBox is loaded with Satellite SCC #s' From SQL Server 2005 Express '2. The DatGridView is loaded with signals that correspond to the Transponders on the Satellite From SQL Server Express 2005 'The GridView also contains the Satellite SCC #s'. '3. I need the GridView to only load the Signal that Matches the Satellite SCC #s' that are Selected from the ComboBox. '4. So when you click the SCC # in the ComboBox, it will search the Signal Database Table for all the matching 'Satellite SCC #s' and then load the signal information into the GridView. DataBase: SQL Server 2005 express Language: VB.NET 2005 FrameWork: .NET 2.0 Imports System ...Show All

  • .NET Development XML variable problem(small question)

    Hey, In this code: XmlTextReader theReader = new XmlTextReader ( Application .StartupPath + "\\options.xml" ); while (theReader.Read()) { theReader.MoveToElement(); if (theReader.LocalName.Equals( "Fontbar" )) { string value = theReader.ReadInnerXml(); if ( value = "1" ) { toolStrip2.Visible = true ; fontBarview.Checked = true ; } else { toolStrip2.Visible = false ; fontBarview.Checked = false ; } } } I am having the program in it's load event check to see if it should have the Font Toolstrip(toolStrip2) be visible or not...but on the line of code I highlighted red I get this error: Error 1 Cannot implicitly convert type 'st ...Show All

©2008 Software Development Network