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

Software Development Network >> Artem Bytsin's Q&A profile

Artem Bytsin

Member List

Bruce Nichelson
snowmoon
Alexei_shk
Geeee
Verna
KjellSJ
da Vinci
Johnny Liverpool
Derek Comingore
Kalagaraz
Vista2007new
kalsky
Kb2yht
drndrw
Jason D. Camp
Hallen
flash.tato
JYB
ss4steve
Steve Severance
Only Title

Artem Bytsin's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Missile Commandeer

    First XNA game...done!  It's an old school missile commander clone (only its CommandeEr, like pirates...ARRRR!!!).  I spent extra time to maintain the original "cutting edge" graphics to make it a true classic.  Check it out... (I just added the screenshots, game and source code to my website) Click here for the game    Improvements to come: - MIRV missiles - Extra lives - High scores - suggestions Nice update, I especially like the MIRVs. I haven't played it much but my top score is 16440 on level 18. I'm pretty sure that other people have done way better :) I think the score penalty for hitting destroyed cities should be raised again. The problem that I f ...Show All

  • Windows Forms is there any way to scan a windows form for controls and objects ?

    Hi All, Is there any way or application which scans a windows form (or even multiple forms at a time) and gives you the controls and objects prosent in the form. The similar app is available in PowerBuilder... Any help is greatly appreciated. Vivek Natani I was just wondering if any such kind of generic app available and ready to use. The app should take any windows application project as input and gives you all the available forms. User should be able to select the froms and then get them scanned for controls and objects. Vivek Natani ...Show All

  • Visual C# changing label from program.cs

    ok well i have a listener thread in program.cs that listens for messages from my NetworkStream and then needs to acces a label on my Form1 ive tried Client. Form1 test = new Client. Form1 (); test.label1.Text = data; Client being my application name ok heres my code using System; using System.Collections.Generic; using System.Windows.Forms; using System.IO; using System.Net; using System.Net.Sockets; using System.Threading; namespace Client {     public class Program     {                   static void Main()         {      ...Show All

  • SQL Server stored procedure addressing generic table

    I want to use ONE stored procedure to update/insert about 300 tables in a database. I hoped this code would work but it gives me an error: ALTER PROCEDURE [dbo].[InsertRowsTick] @tableName varchar, @bid float, @ask float, @last float, @volume int, @dateTimed DateTime AS BEGIN SET NOCOUNT ON; INSERT INTO tableName ( bid, ask, last, volume, dateTimed) Values ( @bid, @ask, @last, @volume, @dateTimed) END When I (1) commented out @tableName parameter and (2) instead of INSERT INTO tableName wrote: INSERT INTO <realtableName> the code (C#) executed and the table was filled. How can I use a generic table name as a parameter Thanks. I don't know what tree has:) sp_sqlexec was dropped in 2000, is it back Try ...Show All

  • Visual Studio 2008 (Pre-release) InnerProxy in RC

    Can someone tell me what replaces the InnerProxy property on the DuplexClientBase class in the new WCF RC install Playing with some sample code, i had : base .InnerProxy.Say(message); but InnerProxy is gone and lines such as .. (( IHelloMesh ) base .InnerDuplexChannel).Say(message); do not work. thanks, Steven http://stevenR2.com Hello, I'm not sure if you need to access InnerDuplexChannel, based on the code snippet that you've included. If you're simply trying to call the methods on the IHelloMesh interface, you can simply new up a proxy instance (as generated by svcutil.exe -- derived from System.ServiceModel.DuplexClientBase) and call the methods. If, however, you'd lik ...Show All

  • Smart Device Development Create and Print PDF document

    I have a Vodafone v1640 (also called I-mate jasjar). I've written a program to create a PDF file. How can I print the a PDF file from my c# application On the pocket is installed a ClearVue PDF but it doesn't print file, only view. I've tried to install the Acrobat Reader but it doesn't start. I supposed it isn't for Window Mobile 5. Thanks Hi Michele, I am Prashanth. I too is having the problem what you are facing. In your mail u have mentioned, that u have created the pdf file by c# programming in asp.net. Can you please give me tips in creating the pdf file on fly. looking for the reply..... Thank you in advance. please mail me to prashanthganathe@gmail.com Regards, Prashanth ...Show All

  • Visual C++ ASSERT error on Visual Studio .NET 2003

    I have a dialog mfc application with a main dialog. With a button in the main dialog I launch a second dialog. All the controls in this second dialog worked fine. But for some reason everything went wrong. I placed a list box for example on the dialog and I added a control variable for it and I called it NameList. Then I have a piece of code in the dialog NameList.ResetContent(); It compiles fine with no problem, then when I run my application and launch the second dialog it works great. But as soon as the NameList.ResetContent(); code executes I get the assertion error. Here is some details about the error: afxwin2.inl line 698 (The code on line 698 are given below) _AFXWIN_INLINE void CListBox::ResetContent() { ASSERT(::Is ...Show All

  • SQL Server Auto URL Redirect

    Hi,Does anyone know how to redirect the report to another URL automatically conditionally based on some checking, without user interaction with the report I am trying to perform validity checking on user's input value and redirect user to a centralise error page if the input value is invalid.Thanks,J Lim You can't do this using the standard parameter toolbar. You will need to code your own textbox for accepting user input for the parameter value and pass that to the report if is valid and redirect to the error page if not valid. ...Show All

  • Microsoft ISV Community Center Forums Error Referencing DLL in VBA

    Hi ! I have prepared an MSI Installer for my XLA to be deployed on the server, the MSI contains all the DLL referenced by the XLA. The MSI runs fine but when I try to open Excel on that server it gives me a reference error, I have to *explicitely* go in VBA Editor and set the reference for the erroring DLL, after that the XLA works fine. The strange thing is that in the MSI I have set the path to D:\ Prog Files\... but strangely the MISSING reference in the Refernce dialog box shows C:\Prog File \.... Can this be because the server registry has not been cleaned up or perhaps there are more than one DLL registered Do we need to Uninstall (from Add/ Remove Progs) the MSI from the server (if it was previously isntalled on it) before act ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Lock texture level and write data to stream

    Hi, Is it possible to lock a texture at a certain level and then write its data out to a BinaryWriter Thanks for any help, -Dave Excellent i see what you mean now. I have been working on it and when i try and write the data from one stream to the other i run into an access violation error. The streams length is huge, just for a simple 256x256 dxt1 texture with no mipmaps. Its length is coming in as 2147483647. Heres the code im using... BinaryWriter bw = new BinaryWriter ( File .Create(file)); gs = textures .TextureImage.LockRectangle(0, LockFlags .None); byte [] chunk = new byte [gs.Length]; gs.Read(chunk, 0, gs.Length); bw.Write(chunk); Is there a better ...Show All

  • SQL Server How to execute multiple queries in ssis?

    Hi there, I am new to ssis.I need to execute multiple queries to update number of tables in sqlserver.Pleasesuggest me the right way to do this. Thanks in Advance. Regards Vinod Vinodk wrote: Hi there, I am new to ssis.I need to execute multiple queries to update number of tables in sqlserver.Pleasesuggest me the right way to do this. Thanks in Advance. Regards Vinod Use multiple Execute SQL Tasks. -Jamie ...Show All

  • Visual Studio 2008 (Pre-release) Invalid attribute when attempting to bind slider Value

    I get blue squiggles int the XAML when trying to bind a slider to a double value property (well of course it doesn't know that it's a double vlaue propert till runtime ..._ < Slider Margin = " 5 " Width = " Auto " Grid.Row = " 1 " Grid.ColumnSpan = " 2 " Grid.Column = " 0 " Orientation = " Horizontal " Value = " {Binding Path=Value} " Minimum = " 0 " Maximum = " 2 " TickFrequency = " 0.01 " IsSnapToTickEnabled = " True " /> Seems like a problem in the schema -- Dan I thought this was where I was supposed to report faults .... I'll write them u ...Show All

  • Visual C# eventhandler for datetime control

    VS 2005 - I want to add an event handler for a datetimecontrol using the event ENTER. When the datetime is entered I want it set to todays date I have tried using the object.value but it does not seem to work. Can anyone correct the for me - thanks void hnOnEnterDT( object sender, EventArgs e) { /* date picker - handler for (Enter) * Set the control to the current date */ = System.DateTime.Today; } Then try: void onEnterDateTime (object sender, EventArgs e) { ((DateTimePicker) sender).Value = DateTime.Now; } HTH --mc ...Show All

  • Smart Device Development How to process mouse click in textbox control (C#)

    I have a form which has several textbox controls. I need process an event when I tap in the textbox, but I can't find these events. How can I do this Andrej Tozon wrote: GotFocus event should trigger when textbox becomes the active control. However, this won't work if textbox already has focus. Whell, that's why I need a mouse events processing. Windows CE progs, such as an explorer can process these events, so progs written in C# could do this. ...Show All

  • Visual C# how to do copy & paste with folderbrowserdialog

    I have a folder path that I copy from other application. In my appliation, I want to open a dialog that I can paste the path to. folderbrowserdialog allows me to choose the folder to clicking through the folder tree structure, there is no way to allow me to enter a path directly. Is there a good way to work around this Ahh, I see. I sort of missunderstood what you wanted to do. Then I'm afraid I'm out of ideas. Of course, you could always build your own folderdialog form. ...Show All

©2008 Software Development Network