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

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

incendy

Member List

Viesta
Schliff
Ariel Valentin
Puffarbubbole
Marcos B
kgs1951
Sajal Mahajan
Kris Nye
Leo Ng
wenxincao
Merryhu
Adam Toth
AshiTenshi
Peter Winson
user11
Stephan Zahariev
Artschi
Freedon Nadd
Saishyam
Mozone33
Only Title

incendy's Q&A profile

  • .NET Development recieving

    Hi im new on VB.Net . Im workin on a projecet that contains a rss Reader/Reciever and a irc client. I ' ve complated the reader but cant complate irc client I was able to connect to irc and send a message to a nick or channel but i couldnt recieve messages, status information (like mirc :D) or something from server i dunno how to do pleaze send some code examples or give advise here to help me on my project the comic one is that i dunno how to recieve informations from irc server. Im using istemci.Client.Send(getbyte( "NICK vb_ot" & vbCrLf)) commands like that to send information toserver but i dunno how to recieve informastions from the server i tried the istemci.Client.Rece ...Show All

  • Visual Studio Team System renaming branches in TFS

    Hey guys - I have 3 branches setup in TFS as follows Dev -> Staging -> Production I want to rename the staging branch to test, but I also want to keep the hierarchy. My concern is that if I create a new branch called test off Dev, then delete the staging branch, that the Production branch shall be orphaned. Is there an easy way to point the new "test" branch to the production branch to preserve the merging flow etc Thanx Stephen I did not think that it was possible to rename branches - is there an easy way to perform this Thanx! Stephen ...Show All

  • Visual Studio Express Editions String to number

    Is there a quick way to convert the string "2.334.654,23" to the number 2334654.23 I have tried decimal.parse but does not like the format of the string (it works with 2,334,654.23). Thanks, Antonio Just tell parse that it's OK with a leading sign by adding the: Globalization.NumberStyles.AllowLeadingSign flag to the parse method. For more flags that you can specify, check out http://msdn2.microsoft.com/en-us/library/system.globalization.numberstyles.aspx . Best regards, Johan Stenberg ...Show All

  • Software Development for Windows Vista Sate machine workflow

    Hi, I have a simple state machine workflow with three states. I would like to put a timeout on the final state.(ie final state approver didn't approves this within the specified time, the state should go back to previous state). Is there any way to implement this thanks -Abraham Abraham - since each state can have multiple eventdriven activities - the way to implement this is to add an additional eventdriven to your final state - and then have a delay activity as the first activity inside of that eventdriven. ...Show All

  • Software Development for Windows Vista While activity with counter ?

    Hi :) I am tring to rewrite one of my Code Activity that became to long. It looks like this: foreach(DataRow rowSomeData in someDataSet.Table["MyData"].Rows) { if(someCondition) { while(someCondition == true) { DoSth(); } } } I thought I will build workflow from this logic but if want to write While activity that acts as a for loop, I'd need some index variable that will be accessible in whole loop. I don't want to create local variable for a whole workflow because when I create normal for loop I don't create "index" variable as local... Is there any workaround Jarod Hi, just insert a whileActivity. Into the code write: public sealed ...Show All

  • Windows Forms prevent TabPage from getting focused

    Hi, All How can I prevent TabPage from gettign focused while selects it programmatically (through TabControl.SelectedTab property) Thanks, in advance. Unfortunately, exactly in this case it is reasonable to prevent focusing. In two words I have next situation: I have the form with TreeView and TabControl controls on it. User can navigate through TreeView by arrow buttons and can select any TabPage in TabControl using predefined shortcuts. Each TabPage contains a piece of information about selected TreeNode in TreeView. I think it is better to get focused on TreeView to allow user to navigate through it continuously. P.S. I suppose it is not good behaviour of control to stealing focus. It is mu ...Show All

  • .NET Development Error when writing to XML node

    Hey all, il get an error i cant get rid of while i writing to my XML file. Error 1 Unexpected XML declaration. The XML declaration must be the first node in the document and no white space characters are allowed to appear before it. C:\DB\December.xml 1 4 Miscellaneous Files And the code: string path = "C:\\DB\\December.xml" ; XmlDocument hoppa = new XmlDocument (); hoppa.Load(path); XmlNode rootNode = hoppa.SelectSingleNode( "December" ); string klickatdatum = this .calendar.SelectedDate.Day.ToString(); if ( this .CheckBox1.Checked == true ) { rootNode.SelectSingleNode( "Dates/" + "m" + klickatdatum + "/" + "t09.00" ).InnerText = "Bokat" ...Show All

  • Visual Basic Evaluate a string expression

    Say a textbox's text is (3*4) / 2 How could I evaluate that Or evaluate whatever is entered in the box If possible I want the result to be of type Decimal Thank you. http://www.codeproject.com/vb/net/math_expression_evaluator.asp Best regards, Johan Stenberg ...Show All

  • SQL Server exporting data to a flat file

    the "flat file" destination is missing from the choices when attempting to export data. ...Show All

  • Windows Forms Form's - Border Color

    Hi, How can I change form’s border color Or is there any method to hide/show form’s border at runtime. Either one will work for me. Ex: If user wants to keep background green, border also should change to green color. Best % V Thanks for reply!! :) The border which appears is very thick; I want border style similar to MSN. If you move mouse on edges (MSN) can see a thick border but with different style. ...Show All

  • Visual C++ public method performance

    Ok lets say I have a method in my class, it gets called a lot and performance is critical; it's small so adding extra if statements will add maybe some thing like 25% to it's execution time. I want the user to be able to chose between "fast" mode where there are no value checks, and "safe" mode for beginners which will be slower (due to extra value checking code) which will make sure the parameter is correct. Again do to the small size of the method and value check having a if(mode == safe) won't make much sense because I might as well just do the value check all the time. Now here's the meat of my question: How much overhead will using a delegate in CLI to chose a safe or fast method In native C++ how much ...Show All

  • Visual Basic Inserting Text into PictureBox Control at Run Time

    Is it possible to programmatically insert text into a PictureBox control in VB 2005 In VB 6 the Print method was available but it is not available in VB 2005. I suspect there is some way to do it but I don't know how. Of course I would also like to be able to set the coordinates of where the text starts and set the font/size/color of the text. Thanks for any help. In the PicturesBoxes' paint event do this, note below used a panel... Dim text As String = "abc" Dim layoutRect As RectangleF = New RectangleF(0, 0, Panel1.ClientRectangle.Width, Panel1.ClientRectangle.Height) ' Turn off auto wrapping Using sFormat As New StringFormat(StringFormatFlags.NoWrap)     e.Graphics.DrawStr ...Show All

  • Visual C++ VC++ and SQL Compact Edition

    I am looking at developeing an application using the VC++ Express 2005 edition or VS VC++ 2005. I am looking for guidance or maybe project samples on working with the SQL Compact database engine. I know the OLE DB exposes an interface to SQLCe but the web is lacking on C++ examples. ...Show All

  • Visual Studio 2008 (Pre-release) How to transfer(Upload) file to remote server using code in Winfx 3.0

    Hi all, I am new in winfx 3.0. I don't know how to transfer(upload) file from client pc to remote server. Is there any FTP control available in web based application in win 3.0 Hi, If it is restricted in winfx 3.0...how can i achieve functionality in which my website user want to upload image file to server so, they can see it on web site..Can't i do it in winfx 3.0 plz...help me out if there is any way to achieve such functionality... ...Show All

  • Visual Basic HELP!! need some help with this error message

    Sub RunTest() Dim TestCases As Object Dim CaseCnt As Integer 'Dim intLoopCnt As Integer Dim varSchedule() As Object 'Dim Fulltest() As Object DBPath = CurDir() & "\BOATesting.mdb" Call GetTestSubjects( TestCases , CaseCnt, varSchedule ) - for the ones are bold are the the ones with errors... I did not know why it giving me that. is there somewhere i need to put in or what ordoes the codes need to be change up or something ) Select Case CaseCnt Case 0 MsgBox( "No test cases currently set up." ) Case -1 Call Run_Continual(TestCases, varSchedule) Case Else Call Run_Schedule(TestCases, varSchedule) End Select Error mess ...Show All

©2008 Software Development Network