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

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

dron747

Member List

John Campbell-Higgens
Rudemusik
Elurahu
Edward1
John Doherty
Martin Mason
jfbaro
lemmi
lou_1
nbrege
ckob
VashTheStampede
Nick Martyshchenko
Harold-z80asmRules
matt71087
DMAR330
Kapon
Duncan_
franziss
KevinBurton
Only Title

dron747's Q&A profile

  • Windows Live Developer Forums Daily Usage of VE

    Hi, My company has been buying MWS transactions for the last year and a half. We switched some of our maps over to VE (perhaps prematurely) and we're worried that as we increase volume we may hit the 5000 per day limit. This would be devastating as it's not so easy to determine when we hit the 5000 limit (to trigger a revert to the old MWS maps). That said, our MWS transaction provider indicated that there's a "Savings Account" that we should pay into to ensure we're compilant with VE commercial usage. He also said that there's currently no way to increase daily usage above the 5000 per day limit. This could really hamper our growth as we've begun to merge our application with the VE maps (i.e. move functiona ...Show All

  • Visual Basic Update isn't updating

    tattoo wrote: There is something very basic that I am missing here. When I change the data in a field it isn't getting updated back to the Access Db. I'm using Access 2000 and VB.Net 2003. To try and troubleshoot where I'm going wrong I have put together a very minor application and selected just one field from the Db table to update. Below is all the code I'm using. I've tried reading the forums and the MSDN help and I seem to get multiple, different descriptions on how to update but nothing is working. any help is appreciated. I have tried binding the field to the Db and tried without binding as well. Public Class Form1 Inherits System.Windows.Forms.Form # Region " Windows Form De ...Show All

  • Visual Studio 2008 (Pre-release) Deserializing A SAML Token Received From An STS?

    Having received an RST message, an STS serializes a SAML token into the body of the RSTR message returned to the client. In that the RST and RSTR support was pulled from WCF, it would appear that the SAML token need be deserialized on the client side for caching and reuse. Documentation concerning the SamlSerializer, SecurityTokenResolver, WSSecurityTokenSerializer and SecurityContextSecurityTokenResolver classes is sparse, however, and attempts to do so consistenty result in: "The SecurityKeyIdentifier that was found in the SamlSubject cannot be resolved to a SecurityToken. The SecurityTokenResolver must contain a SecurityToken that the SecurityKeyIdentifier resolves to." Little seems to have been written concerning th ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Model Position Problem

    I have this code that creates a model at the position of the mouse click but the model never shows up at that position. Maybe someone out there knows why the models seem to be offset. If I click in the top left corner of the screen, the model shows up in the center of the window. Here is the code: #region Using Statements using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Storage; using System.Collections; #endregion namespace Commander { /// <summary> /// This is the main type for your game /// </summary> ...Show All

  • Visual Studio Dates Changing to mm/dd/yyyy

    I've got a report that i've done which has a formula that calculates the last sunday of each month. When i run this report in Crystal Reports XI:R2 the date displays as dd/mm/yyyy But when the report is run from an ASP page only that formula date changes to mm/dd/yyyy   Any Ideas why it does this Checked all that and every thing is set to UK and dd/mm/yyyy It may be down to my script that calculates the Last Sunday of the month as if i put a print date on the report that comes out OK. ...Show All

  • Visual C++ About BOOL WINAPI HandlerRoutine function

    Hi, My name is kim ju nyoun. My hometown is Korea. This is first time when I write text in a foreign country web site. I'm sorry that I'm inexperienced in English but, I have problem. This is about BOOL WINAPI HandlerRoutine function. my computer's OS is windows XP. MSDN witre that 'When a console process receives any of the control signals, its handler functions are called on a last-registered, first-called basis until one of the handlers returns TRUE'. and my cosole process source is #include<windows.h> #include<stdio.h> BOOL Handler(DWORD dwEvent) { switch(dwEvent) { case CTRL_C_EVENT: return TRUE; case CTRL_BREAK_EVENT: return FALSE; } return FALSE; } void main() { HANDLE hIn,hOut; char Mes[]="inpu ...Show All

  • Visual Basic Browse Network place only, howto?

    How can I set my openfiledialog just to open My Network Places(shared) Local Directory not included. If you have the sample code it'll be nice thanks Sorry, I'm not experienced with SmartDevice application development. The part of the code that uses the DriveInfo class is only to handle mapped network drives. If there won't be any mapped drives then you can just skip the part of the code that is failing. ...Show All

  • Visual Basic DXCore / Refactor! for VB. Upgrade causes problems.

    I just installed Refactor! for visual basic and it installed fine. Then I registered for the additional functionality and installed the additional "Refactor!Bonus-1.0.33.exe" that was provided. Everything worked fine until I noticed that the DXCore that Refactor! uses was out of date. Do I downloaded the 2.01 version of dxcore and installed it. Now Refector has stopped working and does not appear to be registered with visual studio at all. Has anybody else had this problem And if so how did you over come it, if you did. I would like to use Refactor! But I'd also like to be able to work with the most up to date version of DXCore. Any suggestions would be welcome. Ah ha! That's why it caused pr ...Show All

  • Windows Forms Permanent Cropped Image In Picture Box....

    Hi everybody, Do you have idea how to make a cropped image permanent inside a picturebox control I have a first image loaded into a picturebox control then I crop(cut/get) part of that image, but when the form lost focus and then return to focus, the first image is seen in the picturebox which should be the cropped image. Please provide codes. Thanks in advanced. [code] private void CropImage() { //bCrop = true; if (cRect != Rectangle.Empty) { Rectangle sRect = new Rectangle(); sRect.Location = pictureBox1.Location; sRect.Size = pictureBox1.Size; pictureBox1.CreateGraphics().DrawImage(pictureBox1.Image, sRect, cRect, GraphicsUnit.Pixel); // ...Show All

  • .NET Development Using .NET component in VC++ code

    Hi All, I have created a .NET library which is used in a VC++ program, a simple dll (created by VC++ 6.0). For this I have used .tlb file created from my .NET library. #import "MyLib.dll" IMyLibPtr pIMyLib(__uuidof(MyLib)); http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconreferencingnettypesfromcom.asp For this my .NET dll should present on target machine and register. (As tlb is CCW for .NET library) But, I want to add a check in my VC++ program to find out whether .NET library is registered or not and if register call function exposed by .NET library or use function in my VC++ program. If .NET library is not installed then "IMyLibPtr pIMyLib(__uuidof(My ...Show All

  • Visual Studio 2008 (Pre-release) Trouble getting a WCF return a collection to a .NET 2.0 client

    hi all, Can we return a strongly typed collection from a WCF method to a .NET 2.0(ASMX) client. Thanks Kiran. Perfect!!!!. Thanks for pointing me in the right directio Adding [ ServiceKnownType ( typeof ( IdCodeNDescription ))] to the contract resolves the issue ...Show All

  • Windows Forms menuStrip1.Renderer.DrawSeparator problem(error)

    Hey, I am using menuStrip1.Renderer.DrawSeparator to use my own image for the seperator for the menu strip in my program. I tryed doing this: menuStrip1.Renderer.DrawSeparator = SurfScape1.Properties. Resources .seperator; But i got an error saying: Cannot assign to 'DrawSeparator' because it is a 'method group' How do I fix this Thanks :) Ok, it works, thanks, I guess I will do a similare thing with the border...   And one more question and I will be good, Is ther a way to clear JUST the old border on a toolstrip becuase I have a 160x2 image for the border of the toolstrip, and at the end , about the last 4 pixels start to go transparent and you can see the old border... but I like the wa ...Show All

  • Visual C# How to Display Image From Byte

    I have already received the byte [] of a jpeg image but it won't display. I am using asp.net 2.0. I was wondering what the correct way of displaying an image from a database is (I have seen the asp:DynamicImage but when I try to use it, on the build it says it is an unknown server control). Here is my code: File: DisplayImage.aspx //Here is the code that I use to call from the control <asp:Image id="eventImage" runat="server"/> eventImage.ImageUrl = "~/User/Image.asp ImagePath=" + evnt.ImagePath; File: Image.aspx <%@ Page Language="C#" %> <%@ Import Namespace="CollisonDatabase" %> <% Response.Expires = 0; Response.Buffer = true; ...Show All

  • Windows Forms ListView Problem

    I am trying to add some extra information in ListViewItem for this purpose i worte three classes one derived from ListView that overrides the Items property by providing my own derived collection, second one from ListViewItemCollection and the third one from ListViewItem. . But on the Design time when i used to add Items the designer does't emit proper code //Designer Generated Code ListViewEx. ListViewItemEx listViewItemEx1 = ((ListViewEx. ListViewItemEx )( new System.Windows.Forms. ListViewItem ( "" ))); ListViewEx. ListViewItemEx listViewItemEx2 = ((ListViewEx. ListViewItemEx )( new System.Windows.Forms. ListViewItem ( "" ))); //Correct code must be like ListViewEx. ListViewItemEx listViewItemEx1 ...Show All

  • Visual Basic SendKeys from a Windows Service

    Hello All, I am having a problem sending keystrokes from a Windows Service Application. I added the <Assembly: AllowPartiallyTrustedCallers()> to the assembly file and referenced the System.Windows.Forms and imported in my service file (Imports System.Windows.Forms). There is a password field that pops up on the screen and is the only thing in focus that the following block writes to. I even tried this in a forms app and it worked like a charm, but for some reason the service is not accepting the Sendkeys. I narrowed down the block with the error by use of a logged entry: For i = 1 To passLenght skey = Microsoft.VisualBasic.Right(Microsoft.VisualBasic.Left(pass, i), 1) 'WriteToLogFile("Sending keys to sc ...Show All

©2008 Software Development Network