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

Software Development Network >> Alexander Petukhov's Q&A profile

Alexander Petukhov

Member List

Dan Imbrogno
Frank Cazabon
Dennis van.der Stelt
toyoung
Jarron
Sunil Gupta
Scherild
Gordon Speirs
C.Etter
xulei
ShrikantBijapurkar
RizwanSharp
Jim McDermott
nabeelfarid
irving at irvingevajoan
Tryin2Bgood
Steve B.
Vaish
AlexBB
Thomas82
Only Title

Alexander Petukhov's Q&A profile

  • Windows Forms Using dataview to search through a datagrid

    Hi, I have a datagrid as follows: CaseID Name Date 1234 abc 12/23/41 5678 def 1/23/42 9876 ghi 2/24/42 Now what I want is a search functionality that takes the value of the caseID and returns the value within the same datagrid. So when I search for CaseID 1234, the datagrid is populated as follows CaseID Name Date 1234 abc 12/23/41 I was wondering if somebody can point out how to do the above. I want to populate the same datagrid with the value of the search. Thanks Sure. DataView theDataView = new DataView( theDataSet ); theDataView.RowFilter = "CaseID = value " this.theDataGrid.DataSource = theDataView; does this hel ...Show All

  • Windows Forms ListBox with images

    Hey, How do you make a listbox show a 50x50 .PNG image and have text under the image Thanks :) Well, you know how Internet Explorer in it's security settings in Internet Options has those 4 images in a listbox and then has words under them, that is what I am trying to do. The msdn one was really strange so I am not gunna use that but the other one, I guess I will try that one...   Thanks :)   EDIT: I tryed doing the other one but I gould not really get it to do what I wanted. So I tryed tree veiw but the images cant be resized, they stay small, so is there any other way     Thanks :) ...Show All

  • Windows Live Developer Forums windows live space weather?

    Hi there Well this is kinda funny tho. first of all you need to know my english aint the best in the world but im trying. I have no problem with adding kinda advanced things to my space.But there is 2 problems i have and i think it's easy as hell to fix it or add it. Weather info - yeah lets bring some weather info to my space. But how i belive i have looked everywhere for any info about it. look at this mans space: http://ezotee.spaces.live.com/ you will see he has a weather info or section if i can call it that to his space. i just cant find out how to add this or where to find any info about it. i have checked these spaces for info also but without no luck: http://thespacecraft.spaces.live.ccom/ http://d3vmax. ...Show All

  • SQL Server Pivot Select

    Hi, I'm able to get Pivot to work but I'm having trouble limiting the record set. I want it to select only records from this FiscalYear. I have a table with a field called CurrentBudgetYear that I use as a control. So FiscalYear should equal CurrentBudgetYear but my results include all FiscalYears. SELECT ProjNo, TaskCode, [1] AS P1, [2] AS P2, [3] AS P3, [4] AS P4, [5] AS P5, AS P6, [7] AS P7, AS P8, [9] AS P9, [10] AS P10, [11] AS P11, [12] AS P12 FROM (SELECT e.ProjNo, e.TaskCode, e.FiscalPeriod, e.ActualAmt FROM tblActualExpend AS e INNER JOIN tblBudgetConfig ON e.FiscalYear = tblBudgetConfig.CurrentBudgetYear )p PIVOT ( SUM(ActualAmt) FOR FiscalPeriod IN ( [1], [2], [3], [4], [5], , [7], , [9], [10], [11], [12]) )AS pvt ORDER BY ...Show All

  • Visual C++ If i need to import one or three dialog from ,the step for me to import?

    I want to upgrade a big vc6 project including dll to vc2005,If I begin a empty project and gradually add all class into the new project, the problem is that there are a lot of dialog needed to import, can you tell me how to import dialog from another project, can i just replace the .rc file If i need to import one or three dialog from ,the step for me to import Thanks. Yeah, just copy the .rc file. Better yet, just open the VS6 project in VS2005. It will automatically convert the project...You might have a few syntax problems but they are usually easily solved... ...Show All

  • SQL Server debugging the ole db destination???

    I have an OLE DB destination which should insert data into a table named in an SSIS variable.  When I run the package, I don't get any errors and I have a data viewer which shows that the data is reaching the OLE DB destination.  However, the data isn't being inserted into the destination table. Can someone suggest how I should go about debugging this Thanks in advance. SvenC wrote: Hi Duane, you might try SQL Server Profiler and monitor OLEDB and T-SQL events -- SvenC Thanks for your reply. I figured out what I was doing incorrectly. I was using the refresh function in SQL Server Management Studio. However, it wasn't working. I'm not sure if it's a bug or a problem wit ...Show All

  • Windows Live Developer Forums Page in activity can redirect to other page?

    If I want to change url in my activity,what to do I want the page in activity to jump another page ,means that the page in the activity want to change page dynamically , may it be I don't really understand you question 100%, but I guess you are asking how to use multiple pages in your activity. You can use frames to that. For example, you can make the main page like: <html> <head> <title>My activity</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script> // Functions for receiving / sending data function Channel_OnDataReceived() { if(window.external.Channel.Data == "") return; if(window. ...Show All

  • SQL Server Deserialization failed: version 2.0 is not a compatible version

    I saw this question before with no answer. I'm trying to develop reports in SQL RS 2000 and Visual Studio 2003. My machine has both SQL 2000 & SQL 2005, SQL RS 2000 & SQL RS 2005, VS 2003 & VS 2005 installed. When I try and open an RS 2000 report in VS 2003, I get the following error: Microsoft Development Environment is unable to load this document: Deserialization failed: Version 2.0 is not a compatible version. The client uses Reporting Services 2000 so upgrading isn't an option.  I need to be able to develop in both VS 2003 & VS 2005. thanks, Didn't change any files... I believe I changed the path settings in the environment variables. Try temporarily renaming the VS 2003 directory. re ...Show All

  • Visual Studio Express Editions Sending Page Down to WebBrowser control

    I have a VB.NET program that loads a web age into a WebBrowser window and I want to programmatically page down to a section of the page. I can get the page to load fine, it is the Page Down command that I am having trouble with. I tried to activate the webbrowser then send the {PGDN} with SendKeys method. It works intermittantly. The problem seems to be in getting the webbrowser to be actived before I send the {PGDN}. I have tried things like: WebBrowser1.Focus() Me .ActiveControl = WebBrowser1 active = Me .ActiveControl but I see other controls on my form get highlighted from time to time. If i manually click in the WebBrowser then send the {PGDN} it works fine. I even tried programmatically moving the ...Show All

  • Visual C# MDI Menu merge not working

    Has anyone had any success menu merging with the toolstripmenuitem in an MDI app There doesn't seem to be any way to merge without duplicating menu items in the child menu. eg: Parent: File ->New ->---- ->Exit Child: File ->Save Results in (at best!): ->New ->---- ->Exit ->Save Plus, if there's multiple child windows, the inactive windows display the child's menu. When they regain focus the menu disappears, when they lose focus it reappears. Thanks, R. thanks for the suggestion, but this doesn't produce the right results either. I think the MergeAction has something to do with it but I'm not sure how. ...Show All

  • Gadgets about Web.Network.createRequest(~~)

    hi. i have a question about Web.Network.createRequest() first of all .. my code..below.. ============================================================= var M_ObjHeaders = new Array(); M_ObjHeaders["Application-Key"] = "humbroll"; var request = Web.Network.createRequest(Web.Network.Type.XML, m_url, {proxy:"generic"}, callBack, M_ObjHeaders); alert("test12-0"); request.execute(); alert("test12-1"); ============================================================= test12-0 is popup. but test12-1 not. i want to setting my header information in XMLHttpRequest with Web.Network.createRequest() method.  my code is just follow API.. what's wrong im very nervous about your answer. please help me.gentleman. good luck. ps : sorry about my fool english ...Show All

  • Visual Studio 2008 (Pre-release) Binding Mode=Onetime

    So I have a data template like so < DataTemplate x:Key = " DefaultTemplate " > < local:ChildControl BoundProperty = " {Binding Mode=OneTime} " ParentControl = " {Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:ParentControl}}} " Item = " {Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:ParentControl}}, Path=Item} " /> </ DataTemplate > The data template is assigned to an ItemsControl within the ParentControl's Template like so < Style TargetType = " {x:Type local:ParentControl} " > < Setter Property = " Template " > < Setter.Value > < Co ...Show All

  • .NET Development Access database.

    Hi! How do i access an MS Access database from .net /Jimmy What connectionString should be used for MS Access I allways get an error telling that the Provider keyword is wrong /Jimmy ...Show All

  • .NET Development webclient image upload

    I have a web application running on server A that allows users to upload files to server B. I use webclient to do so and it works very well from my dev pc to upload to server B. However, it doesn't work from server A. There was no error message or throwing exception. The file just didn't upload. Any idea Thank you for the information. The trace log showed that "System.Net Verbose: 0 : [2956] WebClient#35938393::UploadFile(ftp://[IP address]/[file name], )" Nothing followed. What can go wrong I also tried to access the app from server A directly to upload to server B.  It went through.  Can Firewall still an issue Server A, B and dev are on 3 different network segments. No proxy serv ...Show All

  • Visual Basic Can you digitaly sign your program?

    hey i was wondering can you digitaly sign your program and also make to be able to install into C:\Program Files is this possible thank you. There are a lot of free install creation programs. I personally like NSIS: http://nsis.sourceforge.net/Main_Page ...Show All

©2008 Software Development Network