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

Software Development Network >> John Bailey's Q&A profile

John Bailey

Member List

SB1
jan_hk
Dylan Rolfe
Fluxtah
Andrea N.
a.s.viswa
Schliff
cloud strife
KitWest
creaturita
Hugo Soares
quantumboy
KavyaKonda
abh_pat
Kev Wu
EltonSky
Chris Lang
_Buzz
PatrickR
BobishKindaGuy
Only Title

John Bailey's Q&A profile

  • Smart Device Development Signature to bitmap

    I am trying to convert a signature to a bitmap on a pda. I was using HoodCanalSystems control, but it isn't working on the new Palm Windows PDA and they are no longer in business. It returns a bunch of coordinates which it writes to a text file: 56,14,57,16 57,16,60,21 60,21,73,34 73,34,79,39 79,39,88,51 etc... I am using the following code: http://www.codeproject.com/netcf/Signature_Capture.asp Thanks, Aaron You have an exact url I looked for it and can't seem to find it. Our current solution isn't working on the palm windows machine. Aaron ...Show All

  • Visual C++ Importing class from DLL

    Using LoadLibrary method is it possible Have a look at http://www.codeproject.com/dll/classesexportedusingLL.asp . CodeProject.com and Codeguru.com are generally good places to look for such generic issues. ...Show All

  • SQL Server Imrovenment MAX

    In my cube I have following calculation Max (([Dim Date].[Daily Date]. CurrentMember . lead (29) : [Dim Date].[Daily Date]. CurrentMember ) * [Hour24]. Children , [Sales]) but this calculation is very slow can I improve this calculation I have read this cool articale ( MDX Performance Hints ), but I don't understand how I can apply for my calculation. Thank you These recursive, moving window calculations are not easy to optimise. If you have any useful higher level in a hierarchy (maybe weeks ) you might be able to tune this calculation similar to tuning a YTD calculation. If you have time in your processing window another option would be to calculate a "Max 30 day ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. What about PRT lighting? I didn't find out PrtEngine =(

    AFAIK Mdx included PrtEngine, it was great. It is to be regretted that PrtEngine hasn't been included in the Xna beta. I would like to see it in the next version.. Ok, go to https://connect.microsoft.com/feedback/ViewFeedback.aspx FeedbackID=226160&SiteID=226 and vote, please. Alternative: go to https://connect.microsoft.com/feedback/default.aspx SiteID=226 and find the suggestion using "PrtEngine" keyword.. ...Show All

  • Visual C# How do I stop running a function?

    Hello, I need to know how I can stop running a function in the middle of running it. I cannot give any real coding examples but, I can get a structural example and show what I mean. private void TestFunc(string a, string b) { while(a != b) { try { // Code that should run like normal. } catch(Exception ex) { // If the code gets here I should stop the entire function right away! (TestFunc) } } } If the code gets to the catch I have to stop executing the function right away and run another function (which is handled elsewhere). This is a very newbie question but, I've not had to do this yet. Thanks for any help. Quilnux private void Test ...Show All

  • Visual C++ Cannot convert type String^?

    Hello, I'm trying to do something that is actually very basic. I simply want to take a string and convert it to type int so that I may use it in my calculations. The code is: hours = int(lblpaycheck->Text); I apologize if its a completely obvious question, I originally learned to program in Visual Basic and I am currently a beginner in C++ and Java. Any help is really appreciated. ...Show All

  • .NET Development Send data to RichTextBox ->IllegalCrossThreadCalls

    Hi, I've got the following code: Imports System.IO Imports System.Net Imports System.Text Imports System.Threading Imports SeasideResearch.LibCurlNet Public Class Form1 Private dnsLock As Object, cookieLock As Object Dim et1 As EasyThread, et2 As EasyThread Public Shared Tbox As RichTextBox Public Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Tbox = RichTextBox1 End Sub Public Sub OnLock(ByVal data As CURLlockData, _ ........ End Sub Public Sub OnUnlock(ByVal data As CURLlockData, _ ..... End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Button1.Enabled = False BackgroundWorker1.RunWorkerAsync() End Su ...Show All

  • Windows Live Developer Forums cannot deliver messages to MSN bots

    i've been hosting 2 bots with the Incesoft bot provider for the last 2 months. after the Messenger service problems (on Wednesday ), i have not been able to reliably host the bots ( MobileRecordBot@hotmail.com and TextAdventureBot@hotmail.com ). the message i get when trying to communicate is : "The following message could not be delivered to all recipients" i've been trying the last 3 nights to get them working again, and have run out of ideas. the bot program seems to be connecting fine to Incesoft's servers, and using the Incesoft admin tools seems to log the bots in and out properly. also, a small # of sessions will work properly when i leave them running overnight. my own user experience is that i can start a session with ...Show All

  • SQL Server SqlServer Ev vs. MSDE Performance

    We have developed a mostly-disconnected smart client app written in C# that uses MSDE as a local backing store. With the announcement of SS Ev, we attempted a port of our app over to SS Ev. The port went smoothly, however, the performance has been significantly (very significantly) degraded. Before we being our investigation into the cause of the performance degradation, I thought I might see if anyone has suggestions on where we should look for possible performance issues. Any suggestions SQL Ev is not going to achieve the same performance as MSDE or SQL Express. SQL Ev has a downsized query processor (1.5MB footprint) and MSDE is a 40MB footprint with the functionality and optimizations to go with that. ...Show All

  • Windows Forms Deploying a Protected executable

    Hi, I would like to use windows installer to deploy a protected .exe that uses a USB dongle. I run the protection software to create the protected .exe. I then copy the protected .exe into my Release directory, when I build the installer it will write over my protected version with the non-protected. I need the detected dependancies for this app to work right. So what I do is remove the project output from the installer and add the protected .exe. My installer than works fine, protected version is deployed. Question is, is this the correct way to do this Does anyone have a better way to deploy a protected .exe using windows installer Thanks Jeff Your protection software... is th ...Show All

  • Software Development for Windows Vista RegOpenKeyEx() Unable to find key?

    Under vista keys my app writes goes into HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node vs the old HKEY_LOCAL_MACHINE\SOFTWARE\ on XP. When I read using RegOpenKeyEx() I get an error 2 key not found returned. How do I determine when or how to look for a key when on a 64 bit machine running Vista Thanks. Hello Sir, I have attempted to duplicate your issue however I am not seeing the results that you are getting. Can you please provide me with the following information: What build of Vista are you running Have you tried running the application with a compatiblity shim applied Have you tried running your application in an elevated user context And does the problem duplicate Have you tried using other re ...Show All

  • Visual Studio Express Editions Please help

    i am using visual c# expres edition and after devoloping my project, now, when i change a parameter, ex: label's text, and compiling project, the label's name doesn't change..it keeps the old text..what can i do what is wrong "now, when i change a parameter, ex: label's text" This statement is not clear, Can you please elaborate! You are changing text of a label or what Thanks!!! ...Show All

  • Windows Live Developer Forums Mapping Server Down?

    Looks as though all VE based mapping sites are down   Anyone else experiencing this even http://local.live.com (3:30pm 07/05/06) I second that --- getting "Msn" and "VEmap" not found, even in the sdk......my users are all down ...Show All

  • Software Development for Windows Vista Any MSFT website supporting CardSpace at all ?

    So I have Vista RTM running since more than a week now, however until now I haven't come across any MSFT (not to mention other corps) that are supporting CardSpace. How will MSFT try to convince people using this technology if they themselves not using it on RTM Or did I miss a site that does support it It is not something that as a whole, we can just turn everything on, and have support on our websites. It was necessary to ship the client (Windows CardSpace) before we could get adoption moving. While you don't see any sites right this moment, we have work going on all over the place, and as we proceed into the future, these websites will begin supporting CardSpace for authentication. Given the radi ...Show All

  • Software Development for Windows Vista Porting own workflow engine to WWF

    Hello, we have implemented our own (end-userfriendly) workflow engine, and now we want to migrate to the WWF. The main workflow elements of our old engine are: 3 different type of Activities: Human activity (with user interactions) Technical activity (without user interaction) Condition activity (if elseif else ....) Each activity can have every activity type as parent(s) and child(s) with following (main) constraints: Human/technical activities: 1..n input connections 1 output connection Conditions: 1..n input connections 1..n output connections (with conditions) Features: Reject to any executed human step (with some exceptions), this was a default behaviour in the workflow system, "no connections were drawn" ...Show All

©2008 Software Development Network