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

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

slein

Member List

pankajsparashar
Derek Smyth
buladbanaw
Samoyed
EileenWin
bio4ema
DoS
Jason227
Allen Razdow
Alon *
ComputerWhiz
adorer
Aamir Iqbal
duoshock
LonelyPixel
Andrew Sims
Kirti Mistry
Mateusz Rajca
Sreekk
Andrew-L
Only Title

slein's Q&A profile

  • Visual Basic DLL sending message to vb aplication

    From my VC++ DLL how can i send a message to my vb application please help me!!!!!!!!!!!!! You will need to be more specific for someone to be able to help you. In the meantime, you can create an ActiveX control in VC++ that sends the event. On the VB .Net side you can add the control to your form (withevents) and add the appropriate handler. Best Regards, ...Show All

  • Visual FoxPro MySQL and VFP

    Hi experts. I have a MySQL database. I operate with them using syntax like SQL(sqlhandle, "select * from...") I copy them into cursor and than operate with a cursor. Is there a simplier way how to work with them Thanks in an advice. >> I understand but I have asked whether the problem may be that I am using free MySQL database, whether this speed isue can be one of the database limits. And the answer, as I have told you at least twice, is that My SQL is used by thousands of people all over the world and speed does NOT seem to be an issue for any of them. I am sorry but I do not NOT use MySQL (I have enough problems dealing with SQL Server 2000, SQL Server 2005 and Oracle i ...Show All

  • Visual Studio 2008 (Pre-release) sending 30 MB from a WCF server to many clients

    I need to create a solution for this scenario: A lot of clients all over the world (winforms) should play media files that a server sends them. The server has a playlist of media files for each of those client. Whenever a playlist is changed on the server the client should 'know' about it and download the media files. the size of the files could be around 30 MB. Should I use WCF to send the files to the client or should I use FTP instead What is the diference between WCF and FTP in terms of speed , security and scalability >>What is the diference between WCF and FTP in terms of speed , security and scalability Speed - FTP probably is going to give you better perfomance. However, you can try Net ...Show All

  • Windows Forms ClickOnce Fails with "Value does not fall within the expected range."

    I have a ClickOnce-deployed application installed in offline mode across a range of Windows 2000/XP machines on my network. I now receive an 'Application cannot be started. Contact the application vendor.' error message when I attempt to run the application on my development machine. (It works still on the production machines.) I've run mage -cc, and renamed the '2.0' directory to '2.0x' to ignore its presence. Add/Remove Programs still shows it, and clicking Change/Remove pops up a window for a moment, but otherwise does nothing apparent. I've changed the installation path to be a network path instead of a website, and it still fails. The following is the error log: PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Comm ...Show All

  • .NET Development How to convert string to SecureString?

    I want to pass a string password in System.Diagnostics.Process.Start. The problem is that the defined password parameter is SecureString not string while my password is string. Normal casting evaluates to errors. Please how to cast string to SecureString Many Thanks in Advance. Bishoy tnx, it is ok, (small sysntax error in Line 3 - different name). but it does not solve my problem - later i realize, that you cannot open default mail client with adress to and attachment. tnx a lot... ...Show All

  • SQL Server How to orginize MDX Scripting development? Best practices are wanted!

    Hi MDX Gurus, Could you please give me a properly advice. I make a lot of MDX scripting development. Today I made script changes in BI Studio, then deploy cube (changes) to the server, then test it with MDX queries from Sql Management studio. Both tools take some hundreds MB RAM and aren't quite fleetly. Do anybody have some hints to better shape this process Darren Gosbell wrote some great code for being able to deploy the calc script from Visual Studio: http://www.codeplex.com/bidshelper/Wiki/View.aspx title=Deploy%20MDX%20Script&referringTitle=Home It's VERY fast and VERY lightweight. No cube processing involved. It uses the Alter statement under the covers. ...Show All

  • Windows Live Developer Forums MSN Messenger is still the best!

    The saddest part of upgrades is the process of working glitches out of the software. I have learned how to hide the "shared folder" from being seen in "My Computer", but the "shared folder" in "My Documents" is another mystery yet to be explained. Great the people want to share their files, but for those of us who don't want a "shared folder" and like to transfer our files by zipping them first and using MSN Messenger, I still find that MSN Messenger 7.5 is superior. It also loads faster, it has enough bells and whistles to please most of us, and the video/voice chat works great! If someone can tell me the real way to disable all appearances of "shared folders", perhaps I ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Asteroids game in the Channel 9 XNA launch video

    Any idea if this is going to be released to the community It looks like it would be a blast to play. I'd ask about the font support that was shown too, but I'm guessing that'll come in the first patch. Definitely.  Let's put together a petition   ALL THOSE THAT WANT THE XNA ASTEROIDS GAME (FROM THE CHANNEL 9 VIDEO ) RELEASED FOR ALL TO ENJOY, PLEASE SIGN BELOW I'll start things off..   XNA Rockstar ...Show All

  • Windows Live Developer Forums Windows Live Search API (Needs to be Simplified)

    I was pretty disappointed with the amount of code it takes to return search results from the Windows Live MSN Search API. Why should I have to maintain three separate class and 60+ lines of code to return a simple list of related search items. My recommendation would be something like. '--------Return a simple list of results-------------------- Dim objMSNSearch as New com.msnSearch.www Dim strXML as string objMSNSearch.Results = 3 objMSNSearch.KeywordSearchText = txtKeyword.text objMSNSearch.AppID = "ABCDEFG" objMSNSearch.DisplayCache = True strXML = objMSNSearch.WriteSearchResultsXML 'This would return...... <MSN> <SearchResult> <SearchTitle>Star Wars: Welcome to the Official Site</SearchTitl ...Show All

  • Software Development for Windows Vista Add Record failed in Access database

    I have created an Access database. My application which adds record to the database works on xp.It failed on vista, but if worked under an administrators privileges. I don't known how to set the privileges of the database. Anyone have any idea Thanks in advance for anyone's help. ...Show All

  • Visual C# How to open folder from C# code??

    Please guide me how can we open a folder from C# in a LAN The following should do it.... The key is Path or File...also Path.GetDirectoryName will show folder. GDR private string fileToSvr( string strSrc, string strDest) { //Path.GetDirectoryName(System.Windows.Forms.Application.ExecutablePath.ToString()) string fileNm = Path .GetFileName(strSrc); string path = @strSrc; string path2 = @strDest; try { File .Copy(path, path2, false ); } catch ( Exception ex) { String err = ex.Message; return "" ; } return path2.ToString(); } ...Show All

  • Smart Device Development BYTE and WCHAR types

    Hi! My code reads data from file on pocket pc emlator into the &buffer variable. If buffer type is set as BYTE buffer[1000] everything works ok, but if as TCHAR buffer then I get nothing filled in to the buffer from file, exept some strange symbol. I need &buffer to be TCHAR type, is there any way to convert it from BYTE or why is it nor working for me I did save file as unicode, and as ansi, it is all the same. However there are functions wctob and btowc, that you can use for conversion. Refer to http://msdn2.microsoft.com/en-us/library/634ca0c2(vs.80).aspx I hope it helps. ...Show All

  • Windows Forms DateTimePicker control problem

    Hi guys, I'm using the data designer that generates form data entries. In my form entry there's this dateTimePicker control to save the date for the supplierPurchaseDate. I read someones thread that says I should set the ShowCheckBox to true.. but this doesnot solved my problem, When I clicked my save button there's this error that says supplierPurchaseDate does not allow Null values. Right, coz I set in my schema that it should not allow Null values to be recorded. But then the checkbox beside the date was already checked, why is it it says Null where there's a value Any idea guys to make this work and eventually save the value for my supplierPurchaseDate. Thanks, Hi, I think it wil ...Show All

  • Software Development for Windows Vista DragDrop operation behaviour is changed in Vista

    Hi, In Vista dragdrop operation cannot be set to move. (i.e. DROPEFFECT_MOVE ) when UAC (user account control) is set to "on" If I set the drag drop operation to move then the drag drop operation prompts me stating "You will net to provide admnistrative permissions" and when accepted it confirms the action and I see a progress bar, but even after that the dragdrop operation is not succesful. If I set the dragdrop operation to copy everything works fine. Can someone tell me how to go forward. Thanks, Arun can you explain more about the origin of the drag operation, for example what process is originating this, is that process running at an elevated privlage le ...Show All

  • SQL Server NS 2.0 SP1 Install Problem

    What could cause the NS 2.0 SP1 installer to think that a qualified version of SQL Server 2000 is not installed and available   I'm trying to install NS 2.0 SP1.  The current config is: - Windows 2003 Server (Standard Edition) with SP1 - SQL Server 2000 (Developer Edition) with SP4 - Analysis Services 2000 (Developer Edition) with SP4 - Reporting Services 2000 (Developer Edition) with SP2 - Windows Sharepoint Services 2.0 with SP2 - Office 2003 with SP2 I've tried the NS 2.0 SP1 install for both Enterprise Edition and Standard Edition.  If I try to install the database components, both report that no qualified version of SQL Server 2000 is installed.  According to the NS BOL, either should install with Developer Edition ...Show All

©2008 Software Development Network