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

Software Development Network >> Ali Kazim Telli's Q&A profile

Ali Kazim Telli

Member List

Darrell Davis
mNilysg
GinaK
Sreekk
narend
AndyL
Jessica Alba
Mirza Ashraf
Edwardvb
Umeshgopal
cpurick
cdmsarathy
Daudi
Steven Heathcock
CharlesB
Alessandro Camargo
Bertrand Caillet
rp666
ryan.rogers
Wee Bubba
Only Title

Ali Kazim Telli's Q&A profile

  • Visual Basic VB.Net (or C#) for machine control

    Hello Experts:      For some quick background - I've done lots of PLC programming (equipment design) and am probably an intermediate vb programmer. I have been dabbling a bit with the idea of using vb.net for machine control as it would provide many advantages in terms of software reusability, flexability, etc.       The challenges are two fold. The first is the abiltiy to interract with physical I/O and the other is the real-time aspect of control.       With respect to the first issue, OPC and Modbus TCP/IP seem to be the best options. I have read pros/cons of each but am still not certain which is the best choice in terms of performance and ease of use. Any t ...Show All

  • Windows Forms IPOD File Browser

    I want to have a program that will allow users to transfer computer files to there IPOD... You can do this now with Windows explorer by going into My Computer and selecting the IPOD drive, but I want to perform this within my C# application using the "Web Browser" control. Anyone willing to tell me what code I need to use to acheive this Thanks! ...Show All

  • Internet Explorer Development How to transfer binary data from the server to a client?

    May be a wrong area for the question, but... How can I send a binary data from server to a client in IE6 via XMLHTTPRequest (is there any other way ) I did that partly in IE7, using the new property 'responseBody', but was unable to get size in bytes of the received data. How can I get this size in IE7 and perform this task in IE6 Thanks Base 64 is an old time-tested encoding scheme that was originally designed to support systems that did not properly exchange non-ASCII textual data. Binary files, like .exe files, .zip files, .wav files, etc., obviously fall into this category of non-textual data, so this encoding scheme is useful for these kinds of files if needed. One particular application whi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA - Microsoft lack of vision

    Its real sad that Microsoft, once again, shows this lack of vision for a games development tool: 1: Get visual: Don't force users to write such a lot of code to do just very little. It reminds the Charles Petzold's "Hello Window" hell of code days. 2: Provide visual tools: Let users choose the components, change their properties and write just the required code for the events. 3: Quick development means quick prototype and minimum learning curve. XNA has a lot of things to learn. Definetively it is NOT for students and hobbists. We will have to wait until someone encapsulates XNA framework into a group of visual components, that can be easily drag & dropped, inspected and tested very easily without having to learn lots of n ...Show All

  • .NET Development Getting namespace not found for "Imports Microsoft.Jscript"

    When re-using code from VS 2003 to VS 2005 - I get namespace not found for Imports Microsoft.JScript I loaded the 'full' VS 2005 including MSDN - can anyone tell me what i have not loaded -Sk ...Show All

  • Visual C++ warning C4018: '<=' : signed/unsigned mismatch

    I am getting following warnings while compiling my code. Can anyone help me to resolve this [exec] d:\AMOL_CVS\HEAD\gom\shared\backupexecjni\be10\ext\BEMSDK\inc2\cobjectarray.h(364) : warning C4018: '<=' : signed/unsigned mismatch [exec] c:/Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\xstring(1494) : while compiling class-template member function 'CBemJobHistoryDetail *CObjectArray<T>::At(int)' [exec] with [exec] [ [exec] T=CBemJobHistoryDetail [exec] ] [exec] ../../ext\BEMSDK\inc2\cbemjobhistory.h(150) : see reference to class template instantiation 'CObjectArray<T>' being compiled [exec] with [exec] [ [exec ...Show All

  • .NET Development IsArabic

    what is wrong in this code to know if the text is arabic or not >>> the error is the underlined... public bool IsArabic( string strCompare) { int i; string strTemp; IsArabic = false ; _____________ for (i = 1; (i <= strCompare.Length); i++) { strTemp = strCompare.Substring((i - 1), 1); if ((((AscW(strTemp) > 1575) ________________________ && (AscW(strTemp) < 1609)) || ((AscW(strTemp) == 1575) || (AscW(strTemp) == 1609)))) { return true ; } } } Thrace's code returns true if *all* of the characters are Arabic. Your code returns true if *any* character is Arabic. ...Show All

  • Visual C# Problem with passing arguments in shell command

    Aloha, I'm creating a GUI for a dos program I use a lot. Here i a sample of my code: [code] proc.StartInfo.FileName = "D:\\Program\\xyprogram.exe"; proc.StartInfo.Arguments = this.openFileDialog1.FileName; proc.Start(); [/code] This generates "xyprogram filename.txt" and it works. My problem is that I want the result to take another argument called -i so the result would look like "xyprogram filename.txt -i" I have tried [code] proc.StartInfo.Arguments = this.openFileDialog1.FileName + "-i"; [/code] but it don't seems to work. Any suggestions You'll need a space. Hard to make it visible so I'll do it like this: proc.StartInfo.Arguments = this.openFi ...Show All

  • .NET Development Spontaneous Uninstalls

    Hi: This is a bit wierd...we have a number of .net applications (2003) that use crystal reports. Recently (and very intermittenly), some of the applications will be in use and they will spontaneously uninstall themselves. We reinstall and they run fine...no errors thrown. My search on the internet hasn't turned anything up and I was curious if anyone had any thoughts. Thanks! f_red Crystal Reports has been a bug-fest for many years. But, spontaneous uninstall How can you tell that CR (or the app) uninstalled ...Show All

  • Visual Studio Team System All tests failing with "Can't save results of the run since ResultFilePath is null."

    Has anyone else run into this problem My unit tests were fine yesterday, then today VS kept hanging while trying to the load the tests in the Test View. In the past, I removed then re-added a new Unit test project with success. However after doing that, I get "Can't save results of the run since ResultFilePath is null" for every test I try to run. Little help Thanks, Peter I need some more information to understand the problem. can u tell me if there is connection string for the result data store you can go Test/Administer Test Controller Then check under the Load Test Result Store ,is there a connection string. if yes then what the value for Initial Catelog = ...Show All

  • Windows Forms DataGridView1_CellValueChanged

    hi Private Sub DataGridView1_CellValueChanged( ByVal sender As Object , ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellValueChanged 'Usually after editing, the enter key is pressed and the current in th dgv goes to next row, 'how do i make it go to next column instead. i have the code to make it go to next column. it is 'going to next row automatically. End Sub Thats the further i reached., i noticed these properties appear in the properties window in edit columns.. but i cannot insert any value, anyway this can be done by code, the property is there.., any reference i can use to have a further guide about what i am doing truly speaking this is th ...Show All

  • Smart Device Development Getting own phone number or SMS Service Number from a POCKET PC

    Hi, I'm trying to get the my own phone number from a POCKET PC 2003, in which I placed my SIM CARD. But I can't find the appropriate function. Is there a function doing this Thanks Hi, I'm having the same problem. I re-wrote this in C#, and for wm6 based pocketpc phones I get an empty string for the phone number. I get a dwAddressOffset of 228 and a leng of 2 (a unicode null terminator). Running GetPhoneNumber.exe from the WM6 SDK has the same problem. Any hints as to how to get the phone number out of the phone Is it possible at all ...Show All

  • Windows Forms Installer package

    Hi, I am looking for a good and free installer package. A programm like Instal Shield or somthing simmlar like that. I have found Inno Setup to be the best, and easiest to use. You should get ISTool aswell, which is an IDE for Inno Setup Scripts. Would like to hear anyone elses ideas for deployment though. ...Show All

  • Visual Studio Express Editions Use SQL Express Edition in company

    May I know whether the SQL Express Edition can use in company(For business purpose) or not Is there any license require Please provide information to me. Thank you! there are no licenses for the Express edition. Just as long as you don't resell them on, then you will be fine. http://msdn.microsoft.com/vstudio/express/support/faq/ #4 ...Show All

  • SQL Server xp_cmdshell error 1326

    EXEC xp_cmdshell 'dir *.exe' Msg 50001, Level 1, State 50001 xpsql.cpp: Error 1326 from LogonUserW on line 620 I have followed following document completely with no problem but yet system generate above error http://www.support.microsoft.com/kb/890775 before that I used to get following error that is one of the described scenario in that document Msg 50001, Level 1, State 50001 xpsql.cpp: Error 87 from GetProxyAccount on line 499 Configuration: SBS2000 Premium (Includes SQL 2000) User: a regular with PUBLIC access on MASTER The first error looks like it is caused by a bad password or bad account name. I am not sure about the second. ...Show All

©2008 Software Development Network