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

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

dezrtluver

Member List

SPA
ChoKamir
kenambrose
Luis Esteban Valencia Muñoz
rternier
markse
Fata1Attack
payal tandon
BilalShouman
vonlinkerstain
siavoshkc
sophmoricinbehavior
Tollo
Raba21
Grant_csi
IB00
ahmedilyas
Vaish
Jon Watte
js123
Only Title

dezrtluver's Q&A profile

  • Windows Forms caller Id

    I made a program that shows the number of the incomning call when caller id is available. For this i dowload an active-x that detects caller id. I use the model 5633 modem of US robotics. The problem is that the number is not always shown . Even when i make call from the same number it 's not always displayed on the screen. The developer of active-x told me that this is problem of modem or drivers. I updated the driver but the problem still remains. Does anyone knows any better PSTN modem that support caller Id in Greece and to show always the number. Sounds like it might be (I'm not at home where my modem is so I can't check). I get to it via Control Panel, Phone & Modems( ), then dbl-click on the mode ...Show All

  • Smart Device Development Scan Engine Stops if I hold down the Trigger Key more than 3 Seconds

    I'm writing a tool in VB.Net 2003 for a dolphin 7900 which should scan a barcode and send it to a connected PC. If I scan a barcode within a second all works well. But if I hold down the trigger key for more then 3 seconds the scan engine stops and the only option I have is to restart the program after I had stopped it with the memory Icon in the settings of the dolphin 7900. Did anyone knows about this problem It is made using the SDKs from Handheld.com Here's the code for the scanner: In the load event: '----------------------------------------- Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load DecodeControl1.Connect() DecodeControl1.EnableSymbology(HHP.DataCollection.Decoding.Symbol ...Show All

  • .NET Development System.Data.OracleClient namespace not found

    Hi, I have installed System.Data.OracleClient in my machine and could see it in GAC. When I use the Import Namespace = "System.Data.OracleClient" , the page didn't compile and gave warning that the namespace cannot be found. Does anyone has the same problem when using it. I appreciate any input. im not sure but have you added a reference to it in the project references right click on references > add reference and add the reference to the assembly. Does this work ...Show All

  • Visual Studio Express Editions ProgressBar and Background worker

    im trying to get my BG worker to report progress in progressbar...i tryed in 2 ways that some other dude asked and none worked..i have no clue why.. like that one Private Sub BackgroundWorker1_ProgressChanged(ByVal sender As Object, ByVal e As System.ComponentModel.ProgressChangedEventArgs) Handles BackgroundWorker1.ProgressChanged ProgressBar1.Value = e.ProgressPercentage End Sub i do have the report status of the bg worker to enable, and in dowork he downloads file...that he do but dont report progres.. thx. Here is a good tutorial on running the progress bar on a background thread. http://www.ondotnet.com/pub/a/dotnet/2005/07/25/backgroundworker.html page=1 . Dave ...Show All

  • Visual Basic O'kay so I now have a working application. How do I port it to other computers?

    I can install VB 8 onto other computers along with my application, but that seems unusual. The other PCs never will be programming in VB. They want to just use my application. Question: Please explain to me in a step-by-step button clicking and dragging fashion how to do this. More Simple To Vb menu click build. Then outside the vb open the folder of Yr app. You'll find there a folder bin and there You have the exe file. Just run it and everything is ok ...Show All

  • Visual C# how to convert pdf file to doc/txt file

    i want to convert a pdf file to text file and then updates that file..after updating i want to convert that file again in pdf format. ok.then you can do it by 'Office Image Printer' Set the printer to output as MDI files.[nothing to do with physical printer] convert your pdf file to MDI file. then to 'Tif' file. [Pl do some browssing regarding this] ...Show All

  • Visual C# Hiding a virtual function (if it can be done)

    Say you have a class with a public virtual funciton: public class A { public virtual void F() {...} } Now it happens that I have a subclass that I do not want F() to be exported. Using the C++ 'mode' of accomplishing it , i tried public class B: A { private override void F() {} } Compiler says: BAD. virtual function cannot be private. Next, try public class B: A { protected override void F() {} }; Also bad. Access modifier of a virtual function can't be altered. Next, try public class B: A { private new void F() {} }; Well, the compiler does not complain. But when F is called: B b = new B(); b.F(); // A's F() get called!!! My Questions are 1. Is there no way to hide a base class' public virtual function 2. If so, what is the rationale, ...Show All

  • Visual C++ Handwriting recogntion using TSF

    I am working on text recognition application, in particuler recognizing handwritten text from images. Is it possible to use Text Services Framework (TSF) for recognizing written text in images. I have seen the handwriting recogntion utiltiy works very wll when i use mouse coursor to write on screen. thanx in advance. Try posting your question in the microsoft.public.windows.tabletpc.developer news group. ...Show All

  • Architecture Active Directory+Database

    Hi pals, We are converting forms authentication of an ASP application to windows authentication.All the new functions have to be written in .Net and ASP has to call that(using type library conversion).The problem is there are some tables in the DB(SQL Server) which are related to the users table in the DB.Since,the users have to come from AD,how to relate the users with the other tables in DB .How to maintain relationship constraints between AD users and SQL tables Thanks, Saravanan I did some thing similar to Rodrigo's solution. For authentication use AD and for storing any other info you can use SQL Server DB. For maintaining relation ship between AD and SQL tables, i suggest you ...Show All

  • Visual C# Sending XMPP Messages

    Thank you all for your helpwith my last question. It was a really big help! Now I have a new one. While I am a big NEWB I need to send xmpp messages in my project. In C sharp, I am having a big issue with making session state or sending messages with xmpp. I need to have my application send xmpp messages. This is similar I believe to the send mail with SMTP I looked at that solution and it just doesnt work for me. I need to do some of the same things but using xmpp instead of SMTP Is it as simple as replacing the smtp in that code with xmpp Or do I need to do something different I want to establish a session, send a message, then close the session. All using xmpp and then within my c sharp application. Does any one know how to do th ...Show All

  • Smart Device Development HP pda how do i install apps

    hey guys (girls) how do ii install a app that i have created in visual studio vb.net i am using btw also 2005 visual studio as my ide You'd need to create installer for it. See this . ...Show All

  • Windows Forms Program 'PATH_&_NAME.exe' does not have an entry point defined

    I'm trying to run a C# Windows based application I've created and it's not working. I get this error "Program 'PATH_&_NAME.exe' does not have an entry point defined"... Any ideas Here's the start of the code: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace CarpetCost{ } /// Calculations and declarations. public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label labe ...Show All

  • Visual Basic Make sure the application for the file type (.vb) is installed

    I installed VS 2005 Beta 2 on a WinXP pro system (numerous times). It finally installed without erreors. It looks like it is basically working - I can create a new windows project and add items from the toolbox, edit the code etc. If I open an existing project (created on another box) things load properly but I cannot open any forms in designer view (I can open them in code view). When I attempt to open a form in design view I get the following error popup: ===================== There is no editor available for 'c:\....\myForm.vb'. Make sure the application for the file type (.vb) is installed. ==================== Any thought on how to correct this The following post addressed a similar issue: http://forums.microsoft.com/MSDN/Show ...Show All

  • Windows Forms different fore- or background - colors in a datagridview cell

    Hello, i have a databound datagridview; in each datagridview-cell there are 1 to 5 Items (all only text) which I want to view in different fore- ore background colors, user defined. Is there any possibility to format something like a HTML-table to be displayed in a datagridview-cell Do any solutions for "cells in a datagridview-cell" exist thanks a lot, Markus private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.ColumnIndex != 0 && e.RowIndex>=0) return; try { Char c = ' '; String[] strVal = e.Value.ToString().Split(c); int x = e.CellBounds.Left; int y = ...Show All

  • Smart Device Development Reading SMS Message Inbox

    Hi, here's yet another "How do I read the SMS inbox" question, but I'm going into detail. I have invested several days into research how to do it in Compact Framework 2.0, but now I'm stuck. My status is as follows: Microsoft.WindowsMobile.PocketOutlook (of Pocket PC 5.0 SDK) only supports receiving SMS messages and reading contacts, tasks, etc. but not the message inboxes (why ). I have tried to use Interop to cemapi.dll functions, but eg. I cannot call a function of a unmanaged class via Interop (eg. pTable->QueryRows) (I only have an IntPtr of pTable) I have tried to create an ATL COM Library in C++ (for Windows Mobile 5.0 PPC SDK) to get all message IDs of the messages in the inbox and then to open in .NE ...Show All

©2008 Software Development Network