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

Software Development Network >> Veera.c's Q&A profile

Veera.c

Member List

Amaeze
jeffg90
Alex Farber
ACCOUNTINGONLINE.US
Joel Martinez
kennm
tuhack
Bardia Hamedani
spattewar
libyan
gafferuk
Becky N
ssfftt
AlexDcosta
MyoZaw
hee00awa
Nfrf
vinuhyd
Dan Lingman
Trev72
Only Title

Veera.c's Q&A profile

  • Visual Studio Express Editions some more questions :p

    yep, its me again and i have some more questions xD 1) how can i create a picturebox in the code itself like when i click button1 then there is a picturebox created 2) i want my 'if' thing to have 2 things in it (like if (MyInt == 0 and MySecondInt == 5)), how do i do this, as 'and' didnt work 3) u can write things in a combobox, but how can i disable that u write things in it 4) u can check and uncheck a radiobutton by clicking it, but how can i do that u cant check and uncheck it by clicking the radiobutton (i have some other ways to check/uncheck the radiobutton) thx in advance oh and i still dont understand where exactly i need to put this: (for in the frmsplash thing) private void ...Show All

  • Windows Forms Application Start Event for Windows Application

    Hi All, How can I get the application start event for Windows application developed using Visual Studio 2005 in C# languag I could get the event for a VB.net application but not the C# applciation. Regards, Santha Thanks ZHi-Xin Ye. But that is not the one which i am looking for, I know there is a Static Main function which is the entry point of the application. What am I asking for is, if there is a scenario in which we need to run some batch file before the application starts I need the Application_Start or Application_BeforeStart event how will I get that. I could able to get the Application_Start event in VB.net by selecting the "Enable the Applciation Framework" in ...Show All

  • Visual Studio Express Editions Convert 4 byte String to hex to number

    Hello everyone, I am fresh to VB programming but I find it enjoyable and easy to learn. I have been fighting a small issue with some code that I hope someone can help me out with. I have a 4 byte string variable containing a representation of a 16-bit word value. Each byte contains an ascii character 0000-FFFF I need to convert this psuedo-hex value to corresponding decimal (0-65535). Is their a way to parse this 4 byte string into a Ushort variable and then convert it to a number I would greatly appreciate any tips or advice, Thanks in advance!! You actually have a few options provided in .NET to do HEX conversions... The Convert Class and also the TryParse Method.. Integer . TryParse ( string , ...Show All

  • Windows Forms .Net 3.0 Spell Check

    I see that .Net 3.0 supports realtime spell checking in TextBox and RichTextBox controls; however, I could not find any reference to the dictionary that is used or how it could be changed. In my application, I am interested in using a custom dictionary. Is this possible How The complexity of using your own words without the power of the dictionary seems to be able to show the correct words for alternatives to the miss spelled one. For example, if I type 'ny' in Word the spell check gives me nay, my, knee, and others. As you can see, there is probably some complex logic for determining which words are the replacement/correct words for a missed spelled word. I think the spelling engine provides this ...Show All

  • Windows Forms Resizable form without borders

    Hi, Is it possible to create a FormborderStyle.None like form wich is resizeable. Thx I am currently working on an example which will be posted to my website. Basicly, you just need to send WM_NCHITTEST messages to your form so that it reacts as if you were clicking or dragging in the Non-Client Area. If you want to restore the Window Menu (AKA System Menu) then you will need a border or the Resize menuItem will be disabled and your form will ignore any resize messages. Obviously you do not want the border so to overcome this you simply need to assign a Region to the form so that it trims the border away. Other problems which you may encounter are: The MenuBar will sit outside of the for ...Show All

  • Windows Forms Textbox Jam

    The textbox is bound to a binding source the data is verified on the keyup event; Private Sub tb54_KeyUp( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles tb54.KeyUp Dim tb As TextBox = sender Dim tp As Integer = tb.SelectionStart - 1 Dim i As Integer = tb.Text.Length For k As Integer = 0 To i - 1 If Not Char .IsDigit(tb.Text.Chars(k)) AndAlso Not tb.Text.Chars(k) = "." Then tb.Text = tb.Text.Remove(k, 1) tb.SelectionStart = tp Exit For End If Next End Sub if the text box is empty & a character is put in that's not a dot or digit it's removed & the app jams , the curso ...Show All

  • Windows Live Developer Forums robot is offline for some users

    Hi, I've developed a robot for the contest ( secretarybot@hotmail.com ) and it appears offline for some users, though they can chat with it. I've contacted incesoft, they thought it was because of the 300 users limit but I have provisioned my bot so there should not have limits... Any idea There are any number of things that could be going on here and there are platform specific tweaks as well, but I'll take a stab at the most likely issue across platforms. Please note there are also the occasional network issues that even knock some of the Microsoft bots offline for brief periods. We're working on those issues, but here's my top thoughts for fixing your bots presence problems: Did you prov ...Show All

  • Smart Device Development Delete Call History Phone via c#

    Hi, I need to delete partial Call History (missed, in, out) Phone via C# on Pockect PC. How can I make Thanks This forum is intended to deal with issues directly related to the .NET Compact Framework. It appears that this question can better be answered by someone on one of the newsgroups for Windows Mobile or Windows CE. In order to get a quicker and more accurate response, please consider reposting this question to one of the following newsgroups: Windows Mobile API : microsoft.public.pocketpc.developer microsoft.public.smartphone.developer Windows CE API : microsoft.public.windowsce.embedded General programming (not VisualStudio related) : microsoft.public.windowsce.emb ...Show All

  • Visual Studio Express Editions Scanning a Drive

    Hello all. I am currently working on an Anti-Spyware program. I am needing to know how I can scan all the fiels on a Hard Drive, Floppy Drive, and CD Drive and show the fiels that are being scanned in a labelbox. I have got it to where it shows all drives on the system. Now I am needing to when the user slects the drive they want scanned from the listviewbox it will go If drive.drivetype = 0 Then Call DriveType0Scan Then it will continue and scan all the files on the drive and look for harmful files using info from my ref files. Thanks in advance and I hope you can help me. Microsoft does have an AntiSpyware program fyi. Simply, when the user selects the drive they wish to scan, simply perhaps do this: foreac ...Show All

  • Visual Basic System.Threading.ThreadStateException

    Program: Window Application (vs2005 with vb.net) Error: ActiveX control ‘648a5600-2c6e-101b-82b6-000000000014’ cannot be instantiated because the current thread is not in a single-threaded apartment. This error only occurred when debugging source code in version VS2005 but doesn’t occur when using VS2003. Program can be built successfully and program can be start with EXE that built without any problem. Program will throw exception when: Me .ScanSerial = New AxMSCommLib.AxMSComm or Me .wbrWorkInstruction = New AxSHDocVw.AxWebBrowser Refer to http://support.microsoft.com/kb/841295 But this error occurred in declaration, not yet to start Thread. is it MSCOMM32 ...Show All

  • Windows Live Developer Forums Filtering Address based on Country in Virtual Earth

    Hi, I am working with Microsoft Virtual Earth. I want to show Adresss. I used VEMap.Find() method to find the address. I passed street name,houseno,city,zipcode,county,state and country informations to find the address. The problem is I got the address throughout the world which matches the address. But I want to filter the address based on Country entered. So pls kindly assist me to sort out the problem. Is there a method to filter the address based on country in Virtual Earth Help me. Thanks in advance. Hi, Sorry I re-posted the query by mistake. I used FindResults to show the location if it returns more results. If client accepts the idea which you said, then I will not populate the cities if more results a ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Framework Docs?

    Is there any XNA documentation that is publically available at this point I have seen FAQs, etc., but the framework itself seems to be a bit of a mystery (in terms of implementation). Am I missing something No. The documentation, samples, and starter kits will be available with the release of the XNA Game Studio Express product on August 30th (and please bear in mind that the release is an early beta, so documentation may be sparse in some places). ...Show All

  • Software Development for Windows Vista How do you host WWF 3.0 as a webservice (instead of using ASP.NET as a host)?

    Tom/Vihang/All WWF Gurus, Can someone please provide an example of how to host WWF 3.0 workflows as a webservice, instead of using IIS (ASP.NET) to call and host XOML only workflows Tom has provided examples of ASP.NET hosting and calling XOML only workflows (using tracking and persistence). I need to do the same with a centralized web service. The labs provided with WWF 3.0 are very similar to WWF 2.0 labs. I cannot find any examples that offer samples on how to host workflow runtime services via a webservice that can be consumed by one or more websites (on one or more webservers). MS suggests using a centralized webservice to host workflow runtime services, instead of using IIS. Unfortunately I did not find any code examples (I ...Show All

  • .NET Development Loading 2 different assemblies which is referenced by each other

    Dear ALL. I have simple Form1 application which has 3 buttons. What i want to do: 1. Create class library with WinForm and build it as Form2.dll 2. Create another class library with WinForm, add reference of Form2.dll, add Button1. Onclick event Form2.ShowDialog() and build it as Form3.dll This classes works correctly. Now, in Form1 application 1. When Click on Button1 must load form2.dll 2. When click On Button2 must load form3.dll 3. when click on Button 3 must show form2. after form3 displayes, as we said there is buttin1 which must show Form2. Please, I am new to C# reflection. Help me to solve that. Thanks in advance Teymur Thanks for anwser. Dear Michael Taylo ...Show All

  • Visual Studio Team System Is it possible to prevent check-in if a certain field in a work item is set?

    I have a customised work item called Development Task. I know that there will be certain code developments that are very complex and others that are not. So, I have a field in the Development Task work item called "Review Required" with allowed values of "Yes" or "No". If the value is "Yes" I want check-in to be prevented unless a field in the work item "Reviewed By" has been filled in or alternatively the check-in process has, for this check-in only, made the check-in note Code Reviewer a required entry. For any other Development Task where the Review Required field is "No", then the developer can check-in as normal. I realise that this may not be possible and would certainly req ...Show All

©2008 Software Development Network