Software Development Network Logo
  • Visual FoxPro
  • Visual Basic
  • Windows Vista
  • Architecture
  • Visual J#
  • Microsoft ISV
  • SQL Server
  • Windows Forms
  • Visual C++
  • .NET Development
  • VS Express Editions
  • Windows Live
  • Visual C#
  • Smart Device
  • Visual Studio

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

OnlineKenji

Member List

aKzenT
Nick V.
Xeron.seron
PSmock
ren_reyes
Mamta
DaveScotese
muybn
simon_
Bideldotnet
seeker55
Solmyr
WIPIT
SethHersh
Victoria Helen Tierney
shart
Robert Verheuvel
KarenCV
sirluke34
sivachidambaram
Only Title

OnlineKenji's Q&A profile

  • Smart Device Development how can I tell when the phone is in use?

    I have an app with an option to run full-screen, to prevent the users from messing about with the device and breaking it. It has a list of allowed apps, and a timer which runs every 2 seconds to see what window is in the foreground. "Phone" is allowed, nothing else is Unless the user is making a call, the timer will bring my app back to the front. How can I tell if the user is making a call I used to use OpenNetCF, but dropped that, now I'm stuck! If your device is WM5.0 then you can use the new status assembly see Microsoft.Wind ...Show All

  • SQL Server BULK INSERT Format File Problems with SQLNUMERICAL in SQL-Server 2005 Express

    I'm trying to set up a BULK INSERT Format File for some data that I've been sent, which, according to the data documentation, comes in fixed-width format fields (no delimiters except for end-of-row 0D0A) in SQL-Server 2005 Express. The following is the first line... "7999163 09182003 56586 56477 3601942 1278 22139 1102 113 118 51450 1 1 63535647 10000 7999162 09182003 56586 56477 3601942 1279 22139 1102 113 118 51450 1 1 63535647 10000 " Looking with a hex editor, all the above whitespace are 20's. From the documentation, I've constructed the following table... CREATE ...Show All

  • Microsoft ISV Community Center Forums Can not connet to BSM server

    I just finished installing BSM Server, however I can not connect to the server. I keep getting an error: " Connecting to server http://localhost:46786/ has failed. Any ideas on how to troubleshoot this problem. Thanks in advance! Hi, Actually, your best bet would be to post this question to the BSM newsgroup as the product team does answer questions there and there is also a FAQ available. http://office.microsoft.com/en-us/assistance/HA100602251033.aspx If they aren't able to help out let me know. -brenda (ISV Buddy Team) ...Show All

  • Visual C# Garbage collector

    I have been read about garbage collector and i don't clearly 'stack frame'. And the way garbage collector in stack and heap. If you know, please show me. Vu, thanks a lot. http://msdn.microsoft.com/msdnmag/issues/1200/GCI2/  is a fine article on how Garbage collection works. ...Show All

  • Visual C# custom appdomain, crossing .net versions, "Type is not resolved for member <member I'm loading>"

    I'm stumped! I have an app which loads assemblies into a seperate app domain. it is written in 2.0. I have the assemblies I'm loading which were built in 1.1. I have a custom interface library which was written in 1.1 signed and installed in the GAC. I have a custom appdomain loader (marshal by ref object) which was written in 2.0, and uses the interface library which was done in 1.1 to pass a type back to the default appdomain. It is also signed and installed in the gac. here's the loader: namespace AppDomainLoader { public class LoadManager : MarshalByRefObject { public IAddIn LoadAddIn(string asmPa ...Show All

  • Windows Forms How to intercept WebRequest.Timeout

    Hi, there WebRequest wreq = WebRequest.Create(Url); wreq.Timeout = 15000; IAsyncResult r = (IAsyncResult) wreq.BeginGetResponse ....... ....... I must do something when wreq.Timeout. Where can I write code in Thanks... Hi, Thanks a lot I know how to resume, I omit the resume code here, just to protrude the restart download error. If I run 10 times, it gets error about 8 times, ...Show All

  • Visual Studio Express Editions urgent !!!!listbox inserting problem

    hi everyone, I have a problem with manually inserting element into my listbox. There is the code I'm using: ListBox2.Items.Insert(0, ListBox1.SelectedItem) or Dim myItem = New ListItem myItem.value = "wisconsin" myItem.text = "Wisconsin" ListBox1.Items.Add(myItem) I've also tried using the add method but either way I do it it still insert the element twice in the listbox. Now I dont know if there is something I'm doing wrong or is that a bug. I'm using visual dev express 05 on windows xp pro. thk you. Have you put a breakpoint in the code I'd be willing to be ...Show All

  • Visual C# But customErrors-mode IS "Off"!!!

    This is not the first times this happened... I am developing and debugging a website. I can run the site from Visual Web Developer without problems, there are no errors. However, whenever I want to see the result from a "remote computer" (or simply through another browser using the URL), I get a "censored" error message. On this page I am requested to set the CustomErrors-mode to "Off" in the web.config file if I want the error message to be visible remotely. Done this. But the problem persists! What is going on! < xml version="1.0" > <configuration xmlns="http: //schemas.microsoft.com/.NetConfiguration/v2.0">  &nb ...Show All

  • Visual Studio 2008 (Pre-release) GridLengthAnimation

    It would be great if MS provided a GridLengthAnimation type out of the box. I would use this to animate the width of a column in a grid. Can't use DoubleAnimation because it's not a double. It's a GridLength. And I can't just DoubleAnimate the GridLength.Value property because it's not a settable property. Thanks. you can get around this by setting up your grid column to have a width of "Auto", then animate the width of a child cell. e.g., <Grid> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="*"/> <Button x:Name="b1" Grid.Column="0" ...Show All

  • SQL Server Returns Nothing, But Executes Fine

    SELECT tblWatchInstance.WatchID,tblWatchBrands.Description,tblWatches.Serial_Number,tblWatches.OwnerFName,tblWatches.OwnerLName, tblClients.Name FROM tblWatchInstance INNER JOIN tblWatches ON tblWatchInstance.Watch_Key = tblWatches.WATCH_KEY INNER JOIN tblWatchColors ON tblWatches.COLOR_KEY = tblWatchColors.COLOR_KEY INNER JOIN tblWatchBrands ON tblWatches.BRAND_KEY = tblWatchBrands.BRAND_KEY INNER JOIN tblWatchTypes ON tblWatches.WATCHTYPE_KEY = tblWatchTypes.WatchType_KEY  INNER JOIN tblClients ON tblWatchInstance.Instance_Key = tblClients.CLIENT_KEY WHERE tblWatchInstance.RepairNumber LIKE '%" + txtRepairNumber.Text + "%' AND tblWatc ...Show All

  • Visual C# C# 2.0 RTM compler incompatability with c# 1.1

    I have an existing application that declares a class that derives from System.Windows.Forms.Form and an interface. This compiled and worked correctly in 1.1 but an error is reported during in C# 2.0 "IRecitalMirageForm - type is not supported by the language" public class Form1 : System.Windows.Forms. Form , IRecitalMirageForm Is there any workaround for this behavior Barry, Thank you very much for sharing your issue. I am puzzled, not by the error you get but by it previously working! Please, if you have not already done so, file a bug in our product center with a repro also of the previous worki ...Show All

  • SQL Server Numerous (every 10 minutes) Event log entries

    Hi, Every 10 minutes, I get and information application event log of type ID:17137 Info: Starting up database 'ReportServer$SQLExpressTempDB' This is a brand installation of the Express SP1 advanced package and the reporting service has not been yet used. Thanks Hi Edmund, Could you copy the entire log entry into the thread so we can get all the information. From the info, it doesn't look like a log that RS is generating, so we need to know the source of this entry. .. Regards, Mike Wachal SQL Express team ---- Mark the best posts as Answers! ...Show All

  • Visual Basic VB.NET and .NET Framework 2.0

    I am using VB .NET (2003),  Can I use the .NET Framework 2.0 Component Thank you ...Show All

  • Visual C++ console from form

    Hi! How can I call a Console window from a form application Ok: I dug a little deeper and I think I know what is going on here. The problem is that by-default a Windows Form application does not have a console associated with it: so any calls to Console::WriteLine will send the output into a black hole (\dev\null). The case where the application will work is if you start it from a console window because in this case the application will have this console associated with it and so calls to Console::WriteLine will have some where to send the output. In order to ensure that an Windows Form application always has a console to write to you ...Show All

  • Windows Forms What clients can Terrarium Server serve?

    Can I host 1.1 and 1.2 clients with the Terrarium Server Beta 1   I had a Terrarium Server setup for my 1.0 clients a couple of years ago, but have not tried since then. Thanks, C.D.Edwards The Beta 1 server *should* be able to host 1.2 clients, although with some client side features disabled (stats ticker for example).  There will&n ...Show All

©2008 Software Development Network