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

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

poita

Member List

woodsy99
Ondrej Vaverka
PiGuy
sanaltsk
Arun Murali
reichard
Yelnik
rcurrie
PLess
Tejas34
gafferuk
Rtalan
den2005
redneon
jay e
Trainwreck
bongoMaster
Cosmin Nicolaescu
Penicillin
ititrx
Only Title

poita's Q&A profile

  • Visual Basic [VB.NET] How to merge many GIF Files into one file

    I need to create a software that it merge many GIF File into one file container.   My application has this form I want that when i click "Add File" it shows an OpenFileDialog and that add file's path in the ListBox And when I click "Merge File" It merge all GIF file present in ListBox And when I click "Split File" it split all GIF File present in a File Container and that It save GIF Files in the same directory of the File Container I tried to write the code but it change any bytes of the GIF Files when I merge :( and i don't know how to use Split Function in VB.NET [Off-Topic]I'm new in VB.NET and i don't know fine this new programming language Best Regards Flash The code goe ...Show All

  • Visual Studio Express Editions How to make an auto updating program?

    Hi, I am very new to Visual Basic, and programming for that matter.   I was wondering how I could make an auto updating program. I searched for it and saw some sort of components, but didnt understand how to use it. If anyone could help me that would be useful. I want to have a program that with one click will synchronize a folder with one on the internet. That includes deleting files, adding new ones, and if files have changed, updating those.   Thanks, rohan just to add, I have actually done this before, but I have a full version of Visual Studio, not the express version. Basically, my own applications check the webservice for new updates, the webservice gets the version of t ...Show All

  • Visual Studio Team System Code Coverage : Color is not seen

    Hi, When I run a unit test and checking code coverage details, I ccould see details like what percent of code is covered and not covered. But I couldnt see the colors (red, green,etc) in the program.Whenever I click on the'Show Code Coverage Coloring' tab on the 'Code Coverage Results' Window, an error message is shown: "value doesnt fall within the expected range'" Can anybody help in this. Thanks in advance akjal Hello, I'm really glad to read that it worked. I don't know what may have caused this, but it is a fact that some setting had Visual Studio in a bad state. If you are able to repro this again, please let us know. Thanks, David Gorena Elizondo [MSFT] VSTS ...Show All

  • Gadgets What's Your Fav?

    i Though i'd put this here as i am lazy and it's 6am and i've not yet been to bed. BUT the point of this is, what's your favorite sidebare gadget, what version of windows is it used for and, well, where did you get it, My favorite 2 were ones i recently lost and don't remeber where to get them but anyway, one told me my wireless signal strength and additional info, the other was a cpu/memory meter for dual core pc's. both were great, no i'm off to find them again... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. MDX 2 Time Bomb

    Almost all MDX2 Ctors are calling the bombing code below: public static unsafe void CheckTimeBomb () { DateTime time1 = new DateTime ( 0x7d6 , 10 , 5 ); if ( DateTime . Compare ( DateTime . Today , time1 ) >= 0 ) { MessageBoxW ( null , & _C@_1PI@LKOFODJP@ $AAT $AAh $AAi $AAs $AA 5 $AAp $AAr $AAe $AA 9 $AAr $AAe $AAl $AAe $AAa $AAs $AAe $AA 5 $AAv $AAe $AAr $AAs $AAi $AAo $AAn $AA 5 $AAo $AAf $AA 5 $AAD $AAi $AAr $AAe@ , & _C@_1DE@JJLLKEIK@ $AAM $AAi $AAc $AAr $AAo $AAs $AAo $AAf $AAt $AA 5 $AAM $AAa $AAn $AAa $AAg $AAe $AAd $AA 5 $AAD $AAi $AAr $AAe $AAc $AAt $AAX $AA $AA@ , 0x2000 ); throw new TimeBombException ( "This pre-release version of DirectX has expired, please upgrade to the latest version f ...Show All

  • SQL Server Read SQL Profiler Trace output

    Hi Folks, I want to Read the SQL Profiler Trace Output using VB or VB.NET I read some forums. They advice to import SMO in VB.NET.. But how can i Import this.... This is very Urgent for me.... Please Reply me immediately... First thing you need to do is set up your trace to go into a file. (Sending the trace data directly into SQL Server is very bad for performance.) Once you've got the trace file you can do something like this (which is right out of Books Online - see that document for more details.) USE AdventureWorks; GO SELECT * INTO temp_trc FROM fn_trace_gettable('c:\temp\my_trace.trc', default); GO ...Show All

  • Visual Studio Express Editions Create error log text file

    How do you go about creating an error log from a text file, then once the file is made, write back to that file if another error is caught I can take care of the Try,Catch statements, but I need a little help creating the file in a desirable location, then if it exists when another error is generated, find the file and add to it. The location would be a shared file, do you think there would be any share violations from a file that was created remotely I thought of using a db file but, if there are network issues, that wouldnt be good since this app will be shared across a network. Davids Learning ACTUALLY... the Streamwriter CREATES and instance of the Filewriter if you use the filepath o ...Show All

  • Smart Device Development SDK sample 'Back' Errors

    Hi, The sample Back (sdkback.exe) have an Edit box in the dialog box, if you press Action key when the focus is on the edit box, the app is exit. I'm writing an handler to response an action key when user press in Edit ctrl. But it always exit. I spy the Dialog box which is the parent of the Edit control, see when Action key pressed, Edit send an WM_COMMAND to it's parent. the WPARAM is 1, which is equal to IDOK, then app exit. So maybe, SDK sample should be more strictly doing a demo. And I was wondering how to understand this resource as a menu: IDR_BACK_MENUBAR RCDATA MOVEABLE PURE BEGIN 0x0000, 0x0001, 0xfffe, 0x0001, 0x0004, 0x0010, 0x0066, 0x0000, 0xffff END Thanks, Eric ...Show All

  • SQL Server Method of EnumJob()

    I use the method of EnumJob() in order to create an DataGridView in Visual Studio to put in it all the jobs of a server with three of their propertes! So I use three columns!In first Column I put the "Name",in the second the "Status" and in the third the "Last Execution". I found from the "SQL Server Books Online" that their DataPropertyNames are Name,CurrentRunStatus and LAstRunDate. I used them and only the DataPropertyName : "Name" works!!!!! What am I doing Wrong I would appreciate if somebody could help me or give me an idea Seems that this is not implemeted in the SMO classes, the appropate lines shows: public DateTime Last ...Show All

  • Visual Studio Express Editions Easily Edit Static Tables...

    Ok, I'm making a program that needs a list of links and names and I want it to be held in the program itself, and uneditable by the user. I would like it to be editable in a nicer interface. Is there a way, its using a dataset with one table but in order to add items I need to create Rows for each one. Could I set an xml as a resource and do it that way I already got but I may try your way since my way may have a problem, I loaded an xml as a resource, then at startup I create a temporary xml file that gets read and deleted immediately, would this cause a problem ...Show All

  • .NET Development VB 2005 + Access MDB - Transaction

    I have a program that conect a Recordset with a mdb DB with an OLEDB Conectioon string. I'm using TableAdapters to access, insert and update the tables. I want to do some transaction control (Begin, Conmit, Rollback) Begintrans try TableAdapter.Update(x,x,x) Conmit catch ex ... Rollback end try etc I dont know how to do it, please, someone can let me know how I can do this Thank you veru much. Hi, Try this: Dim tr as OleDbTransaction ; try     tr = this .t ableAdapter . Connection . BeginTransaction ()     this . tableAdapter . Update ( m_data . Table );     tr . Commit (); ...Show All

  • Windows Forms DataGridViewButton

    Hi guys, I have a datagridview with one column as a datagridviewbutton, but i dont need all the rows to show the button, I’m trying with no luck to make the cell visible when needed or even to change the backColor of the button to white, but It doesnt show. does anyone have any idea, Im hopeless. this is the code i use : dataGridView1.Rows[0].Cells .Style.BackColor = Color.Red; Hi W.ang Chi, If I define the column as DataGridViewButtonColumn. I can only make all the rows visible or not, and i can’t control only one cell for example. ...Show All

  • .NET Development using vs.net2005 dataset

    I have a table Role in sql server with following columns: RoleID numeric primary key Name nvarchar Nullable Description nvarchar Nullable Creation Date datetime Nullable When i drop this table in designer of datset in vs.net2005 and try to make a update query,it makes query like the one below. UPDATE [dbo].[Role] SET [Name] = @Name, [Description] = @Description, [CreationDate] = @CreationDate WHERE (([RoleID] = @Original_RoleID) AND ((@IsNull_Name = 1 AND [Name] IS NULL) OR ([Name] = @Original_Name)) AND ((@IsNull_Description = 1 AND [Description] IS NULL) OR ([Description] = @Original_Description)) AND ((@IsNull_CreationDate = 1 AND [CreationDate] IS NULL) OR ([CreationDate] = @Original_CreationDate))); SELECT RoleID, N ...Show All

  • .NET Development maybe i can't?

      From what I've read, the dataset is used as an in memory holder for data, which can be manipulated and then reposted and resynchronized with the database. So, how do you query the in memory dataset for complex resultsets. http://www.queryadataset.com/dataset.aspx  //A product that does the job Is there another way besides buying third party software to query a dataset to display data that you have locally in memory I understand you can do simple, one table filters using a dataview object. But, this isn't good enough. For example, Select Count(CustomerID) From Customers Where CustomerID not in ( Select CustomerID From Customer_Orders)  //Uses multiple tables. This becomes even more of a problem if you need ...Show All

  • Visual Studio Crystal reports and .Net problems

    Hi, I have an application developed in crystal reports v10 along side with VS .Net 2003. When i run the .exe file in some computers i am able to view the crystal report data but wen in i try it in few other computers i am only able to view the outline of the crystal report but the data or the table is not getting displayed. wat maybe the reason for this Thanks, Somu ...Show All

©2008 Software Development Network