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

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

k_erjan

Member List

barkingdog
DLondeck
Aaron Oneal
FilthySlider
Nigel123
greggles1975
moemen.ahmed
.net sukbir
Bhavin Mistry406063
Aleniko29139
Claudiu Chiorean
The Loiner
ReneeC
Kornfish
mbakhodir
Hongqin
Vlastimil
Mridu
RDelPorto
Peter Huber
Only Title

k_erjan's Q&A profile

  • Visual Studio Express Editions Machine UI

    Building a new production machine. Are set to use Parker controls ACR9000 servo controller. Has anyone used VB.net for building the U.I. Parker offers .ocx's and controls for .net. I have used dos in the 'long' past. For some reason I am a bit skidish about using windose for the U.I. Any comments st I'd much prefer to build a UI using Windows and VB.NET than trying to code up a UI using any DOS based application. Much quicker to develop and really very easy. The concept of OCX controls is that its basically canned functionality that you can include and much of the UI stuff is hooking items up and writing code to tie everything together. The controls have events which you just ...Show All

  • Visual Basic Databases and Textboxes

    Part A How do I link textboxes to individual database records when the database has say fifty rows and fifty columns. The idea being to display and maintain a database with textboxes on a form that stand independent of each other that point to a specific spot in the database. Part B Once this is possible then .. To be able to manage this data based on years meaning... I would like to have this basic setup but I am able to have the database represent a set of data for a particular year and I would be able to choose to display data based on the year. Please, if anyone knows .. respond asap.. Thanks Shihan Forgive me but i am not sure of the code to use. The first seemed to be f ...Show All

  • Software Development for Windows Vista Invoke Workflow

    In ParentWorkflow i am using InvokeWorkflowActivity to invoke another Workflow(child) Every thing goes fine but control is returning to Host two times - one from Parent and another from child. my requirement is Child should inform the parent and parent should inform host. i have used handleExternalEvent in ParentWorkflow to handle event of child . Event is raising in Parent but the control of ChildWorkflow is also going to host. Is it the Workflow Behaviour or can we achieve the above Scenario Hi OCS is basically object communiation service. The activities that we use for OCS are HanldeExternalEvent and CallExternalMethod ( receiving messages and sending messages). You can find a ...Show All

  • Visual Studio Project Property Pages - select a category tab programmatically

    Hi, I've gone through the iron python example and see where the property pages for the project are added but I couldn't find how to set a specific tab (category) before the property pages are shown. Is there a way to select a tab programmatically Any help would be appreciated. This is possible through the IVsMultiViewDocumentView interface which has a method called ActivateLogicalView. It also has methods for identifying the active logical view. The way that you get to the specific interface is to cast the documentView object return from IVsWindowFrame.GetProperty. In the IronPython sample you can paste the following codesnippet into the ProjectDesignDocumentManager.OpenWithSpecific method righ ...Show All

  • Smart Device Development How to export and register dll in the emulator

    I have three dlls. I have a project which call some functions of these through [ DllImport ( "my.dll" )] . When I run my program it doesn't find this dll on the emulator so through exceptions. I want's to export and register dll in the emulator. How Can I do that When I add refrence to my dll I always get this error --------------------------- Microsoft Visual Studio --------------------------- A reference to 'MyProj.dll' could not be added. --------------------------- OK Help --------------------------- This dll is in VC++ ...Show All

  • Visual C++ Vista Manifest Problem

    I have a weird issue with VS 2005 SP1 and Vista manifest files. I have a small file test.c: #include <stdio.h> #include <stdlib.h> int main() { printf( "I want all power in da w0rld!\n" ); return 0; } which I compile with: cl /c test.c I then have a simple vista manifest test.exe.manifest: < xml version ='1.0' encoding ='UTF-8' standalone ='yes' > < assembly xmlns ='urn:schemas-microsoft-com:asm.v1' manifestVersion ='1.0'> < assemblyIdentity version ='1.0.0.0' processorArchitecture ='X86' name ='test.exe' type ='win32'/> < description > Power App </ description > <! -- Identify the applicatio ...Show All

  • .NET Development C# Triple DES encrypt, getting long string of AAAAAAA ?

    Something doesnt seem right. I encrypt my string and the encrypted result is a long string of A's followed by an "=" sign. ideas Try decrypting it and see if you get your string back ;). If not, you better post your code. ...Show All

  • Visual C++ Can Anybody Help In VC++

    Hi Friends, I like to do a project in VC++ on Analytic Heirarchy Process(AHP) for the Teachers Feedback for our college..... I have all the concept to be implemented in the project.... But still i need a person to assist me and help me in the Programming side.... Can anybody be a friend to me and assist me..... Waiting For the Replies of the Friends.... Hi Friend, I will surelly assit you, don't forget to keep in contact with me.... visit: www.programmersheaven.com www.codeproject.com www.codeguru.com ...Show All

  • Visual Studio Express Editions buttons

    I've got a trouble with a program: I've placed a button on the userinterface. And I want that when you click on it, the button disapears for a moment. That's what I have: Sub button1_clik dim W as Long button1.visible = False Do until W = 100000000 W += 1 Loop button1.visible = True End Sub But that doesn't work. The button never dissapear Is there someone who can tell me how a button could disapear for a moment (Maybe there 's an own command ) What you says works momently exactly. But when I put the code in my program it didn't work anymore. I'll give you the code of my program. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Score += 1 Me.But ...Show All

  • Visual Studio Tools for Office Smart tag development not part of the vsto.

    Hello, I would like to develop a smart tag project which will deploy to all the office application as : word, excel and outlook, not just part of a specific word development. In version 1.1 smart tag were register in the registry and all the office document word, xl and outlook identify the smart tag automatically and behave as expected. Now when I develop a smart tag it must be part of word or excel application and its not what we need, Can you please solve this issue and send us a link or an example how to develop a smart tag and catch all the office documents bye regards Yaron karni. www.attunity.com - InFocus - Workplace application yaronkarni@attunity.com Hi, I already watched the linked y ...Show All

  • .NET Development Using a dataset without a connection to a DB

    Dear Sirs, I am creating an application in which I added a dataset containing 4 tables using the VS2005, include new dataset. I am only keeping this dataset to have a nice structure of the tables, and will be filling them out on the fly. However, when I try to create a new row... DataRow r2 = patternLabDataset . DataTableRankDataTable . I cant find the new row option. But if I create the entire table manually within my object, then the create new row method appears Please give me some light on this matter. Cheers, Paulo Carvalho I generated 2 datasets, one using the Dataset designer, and the other one I coded, following an example in the internet. The one I coded works out fine, but t ...Show All

  • Visual Basic Chart in a Window

    Hi. I'm an Italian Teacher. At beginning, please excuse my bade English. I know well EXCEL, but I’m at beginning (practically near to the zero) with Visual Basic. For my school I’m building a file in Excel (with many Sheets) for writing in it the results of some verify. I would create, in a Sheet a button click for open a little Window where I can see the data charted and another button click for close the same. I have learned button click for open a little Window, another button click for close the same Window but I don’t know how can doing, which is the code in VBA for put in the Window the data charted. Can You HELP me, please Ciao. DRAGOblu Hi, I've only got the Beta version of ...Show All

  • Visual FoxPro sending email from VFP through MS Outlook

    We have the following code for sending email to Outlook. The email gets sent, but the font size is always 36 px or 36 pt (we tried both). None of the <cr><lf> show up. The email is one big paragraph. Can anyone help   Here is the code: LOCAL loApp, loEmailItem, cHex  lnsize = '"' + str(gaPointsize(Slcrm.nbodysize),2,0)+ '"'  cHex = ''  nDec = Slcrm.nColor    nPower = 8  DO WHILE nPower > 0       cHex = cHex + hexdigit(INT(nDec/16^(nPower-1)))       nDec = MOD(nDec,16^(nPower-1))       nPower = nPower - 1  ENDDO  lcColor=  '#' + RIGHT(cHex,6) * lcColor = '#' + strtran(Transform(GetColor(),'@0'),'0x ...Show All

  • Windows Forms Mdi Parent

    I'm making a project that handles Mdi windows and I got my Mdi window to work how I wanted it to except it's adding another toolbar when I maximize the MdiChild and that is not what I want, I want it to maximize the MdiChild into the MenuItem. Here is my code: #pragma once #include "DrawingSurface.h" namespace MDI { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// <summary> /// Summary for Form1 /// /// WARNING: If you change the name of this class, you will need to change the / ...Show All

  • SQL Server SQL Recovery Mode

    Hi, How to make all MSSQL DBs run in Simple log form by default other than FULL so when we srhink DBs the logs will go bybye. :-) Thanks No need for a script. Just change the recovery model of your model database to simple . Every database you create will have the settings you specify for your model database. ...Show All

©2008 Software Development Network