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

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

Adix

Member List

dragoncells
Penicillin
Brad Mittelstedt
NewKev
ga2006
Clement Yuan
Palvinder Singh
rako77
ReiXou
Muhammad Adel
gg1
Snortblt
Devin
Ken Villines
Agent00
RMS
_sarge
kadabba
toby91355
RayRayN
Only Title

Adix's Q&A profile

  • .NET Development Access Database and x64 OleDB Connect

    Hi, i've written a programm wich access an .mdb Database with OLE-DB. Under Win x32 everything works fine Under x64 no Database is found. Is there no way to access an mdb Database from x64 Hi,            Jay Harlow came up with a simplier solution.  In my project complier tab press the advanced compile options button and set the target cpu to x86.  That will force the program to use the 32bit drivers. Ken ...Show All

  • SQL Server sum of a column in matrix

    hi reporters! i m using matrix in my project and i want to calculate the (cell_value/sum_of_column). for data cell values we have to use sum or another aggregate function for subtotaling, so for the cell value i m wirting sum(column) / A. how to write A that points to sum of all cells on the column. x_column y_column z_column sum(y_column)/A A thanks a lot mohd sufian and Yicong Shen sufian's solution solved my problem, s um(Fields!OrderQty.Value)/Sum(Fields!OrderQty.Value, "MatrixSource") this is what i wanted, appreciate ur big help, mohd sufian ...Show All

  • Windows Forms Opening / Closing Forms

    Hey guys, Really simply, how do you open forms when you click a button! ! (i.e. in VB its docmd.open 'Form'). I just want to click a button and it pop up another form i have designed. Thanks in advance Tom Well, you create an instance of your form and display it using ShowDialog(): Form1 form = new Form1(); form.ShowDialog(this); (The parameter to ShowDialog() is made the parent of the form which is displayed. Since you will be calling this code from a button handler in the parent form, "this" is the correct thing to pass in.) ...Show All

  • Windows Forms Help on PropertyGrid

    Hi there! Is there another way of setting the properties in a PropertyGrid besides using propertyGrid.SelectedObject or propertyGrid.SelectedObjects I would like to load the properties without having the PropertyGrid read them from myObject. For example, is there a way of doing something like: propertyGrid.SetProperties (collectionOfProperties) or anything similar to that I think I have found the exact answer I'm looking for on a different post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=480921&SiteID=1 ...Show All

  • Smart Device Development how to retrive SMS and Email in pocket pc 2005

    hi every body i am using WindowsMobile.PocketOutlook in pocket pc 2005 retrive Appointment,Contact,Task i have no problam but PocketOutlook also retrive email and SMS that time i have problam if any body help me also give code ...Show All

  • Visual Studio Express Editions How do I

    Hi, How do I get a form that I have designed to do the following: Take the data from 5 seperate input boxes (5 seperate text boxes used for input) and output the largest and smallest number to seperate output boxes (2 seperate labels used for output). If the user inputs a number in each box for example 25, 15, 75, 45 and 67 and then clicks my button "Find" I want the largest number to go in the largest output label and I want the smallest of them to go in the smallest output label. How do I code my button to take these 5 input numbers regardless of their order and output only the largest and the smallest of the group of numbers I hope someone understands what I am asking. Thanks, DC     Act ...Show All

  • Visual Basic VB.NET with Firebird

    I want to connect tot an Firebird Database with visual basic 2005, i’ve followed the following tutorial: http://www.firebirdtutorial.net/firebird-and-visual-studio-net-2005.html I want to use the data source configuration wizard to add the new datasource, when i choose the Firebird datasource as new datasource the "add connection form" appears, but when I try to fill in the form the form closes itself. I wan’t to view the firebird tables in the data source window like i’m used to with access databses. Please help me! Gied, What is your problem when you connect to the database and what is your DBMS SQL Server or Access If you use the SQL Server, just choose the SqlConnection contr ...Show All

  • .NET Development About the LinkedList

    Hello everyone.I am a chinese boy,so I can't speak English very well.I'm sorry about this.I like the .net platform but I used the J2SE before.I like the LinkedList class in JDK very much.I have also used the .net framework 1.1,I couldn't find the LinkedList in it.So I don't know if the new .net framework 2.0 has the LinkedList my e-mail is guohouzuo@163.com Thanks every one. Try this Imports System.Collection dim xList as new List or Imports System.Collection.Generic dim xList as new List(of T) ' T is Type of something, eg, you can put it as String, Integer, or any class of structure. ...Show All

  • .NET Development Exception: DataTable internal index is corrupted: '5'. on ...

    Hi, I have a problem with bindingsource component in framework 2.0. I have a combobox bound to a bindingsource which is also bound to a dataset with 2 related tables and a datagridview bound to the same bindingsource. What I want to do is : When the selectedindex property of my combobox changes, the corresponding cell value must be changed in the datagridview. But although the value in bindingsource changes, datagridview does not display the new value. That value is displayed after I move the mouse over that cell and make it invalidate its region manually. Another error I caught is the one that you can see as the subject of my post. I do not know why i have that message when I try to change the property of ((DataRowView)mybindi ...Show All

  • Visual Studio 2008 (Pre-release) Beginners Information

    HI, I'm looking at trying to use WCF for a fairly large project that i need to undertake. Basically we have a Handheld ( CF 2.0), web site and a couple of other applications that all need to share data between each other, data is stored in SQL 2005, currently our HH talks to an application on the server via TCP. The web uses Web Services and the other apps might use MSMQ or something else, essentially the HH sends pre determined messages to the interface with then updates the DB. The entire system needs to be rewritten, and im focusing on the main server/interface app that everything talks to. WCF seems to be a modern way to approach this. But i have a few questions. Based on my description above is WCF the right platform. The HH ...Show All

  • Smart Device Development StateException

    Hi, I'm trying to modify the MobileSecretary code (by Brian Cross, available here: http://www.wimobot.com/wmapps/mobilesecretary/) to automatically answer to unread messages instead of incoming calls. I test my application (called VirtualSecretary) with VS 2005 device emulator (Phone PC with CF2.0). I get the following error message when a SMS is received: StateException A registry key needs to be defined first before events are registered at Microsoft.WindowsMobile.Status.RegistryState.GetRootAndSubkey() at Microsoft.WindowsMobile.Status.RegistryState.RegisterTransient() at Microsoft.WindowsMobile.Status.RegistryState.add_changed() at VirtualSecreatary.MissedCallForm.MissedCall_Load() at System.Windows.Forms.Form.OnLoad() at System.Window ...Show All

  • Visual Studio Express Editions Is there no atls.lib with vc++ 2005 express Edition

    I have installed Visual C++ 2005 Express Edition version 8.0.50727.42. but I can't find atls.lib or atlsd.lib in my computer.So there is a fatal error when I link my project. How can I fix it Why there is no ATL support Thanks in advance. Because it is Express. There's no MFC either. You'll need the retail version to build your project. ...Show All

  • SQL Server Truncation error when importing from ODBC to flat file

    I am having problems reading from and ODBC conncetion from Oracle RDB into SSIS. I am using a DataReader source which uses a ADO.NET odbc connection to an oracle RDB database. I am having that write to a flat file. When I read integers from the source, it works just fine. When I read character data (char(48) for example), it gives me trucation errors. Is the DataReader source capable of reading char data from an odbc connection Here is the errors I receive: SSIS package "Package.dtsx" starting. Information: 0x4004300A at Data Flow Task, DTS.Pipeline: Validation phase is beginning. Information: 0x4004300A at Data Flow Task, DTS.Pipeline: Validation phase is beginning. Information: 0x40043006 at Data Flow Task, DTS.P ...Show All

  • Visual Studio Express Editions spellchecker?

    I want to make a spellchecker for a program of mine.  I did a search of the forums and found some code.  I slightly edited it to match my individual use and apparently did something to it to make it not work.  because it ended up throwing the exception and I KNOW I have MS Word. This is the code I used:  Function spellcheck( ByVal text2check As System.Windows.Forms.RichTextBox) If text2check.Text.Length > 0 Then Try text2check.SelectAll() ' Copy everything from the richtextbox to clipboard text2check.Copy() ' Make a Word server object. Dim word_server As New Word.Application ' Hide the server. word_server.Visible = False ' Make a Word Document. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Performance Questions

    I have two questions regarding how much of a hit certain practices might take to the speed of the game and if anyone has taken the time to run the system through its paces yet. 1) How badly does using accessors (private members with public get and sets pointing to them) tax the system. I can't imagine it being a whole lot, but I can see if you have enough classes in use at the same time, it would add up. In my other, non-gaming, applications (both web and window) I make a strong practice out of never exposing members to the outside world unless it is done via a property, but I noticed that the SpaceWars demo either doesn't do that at all or does it very infrequently. I also remember the GarageGames guys at GameFest, I believe it was the ...Show All

©2008 Software Development Network