Tim Attaway's Q&A profile
SQL Server Import an mdb file
Hi everyone, I have an mdb file that I want to import using sql server 2005 express edition. I am using the Management Studio Express and have had no success. Thanks in advance Thanks Mr. Wachal. We did everything exactly what you have suggested us to do. The MDB file is now in Acces 2003. BUT, BUT, the program, that was written over 12 years ago, does not understand the new file. It is not able to open the file. It seems that the old software only understands Acces 1.0 or 1.1 MDF files. So, what can I do to with this old medical software, wery useful and practical, but unable to be upgraded with a newe ...Show All
Smart Device Development need help in opening point to point GPRS datalink
I havea problem in mention above i have seen MSDN but nothing to find plz send me the code of C# ASP.net thanks basharat If you mean a direct connection from one device to another over GPRS like you can do with two normal modems that is not possible. You might be able to establish GPRS connection to the internet from both devices and establish TCP/IP connection from one device to another assuming your carrier allows for incoming connections. If you're talking about establishing/terminating GPRS connection to the internet, OpenNetcf.org has classes to do that. ...Show All
Windows Forms how to know app size before minimize app to taskbar
Hi, I need to know the size of the app before the user clicks on the minimize button to minimize the app so it shows on the taskbar. I am saving the size of an app in a config file. I need to know the size of the app before the user clicked on the minimize button, so I know what size the app window should be when the ...Show All
Visual Basic Transfer the sound to sound card speaker out from modem speaker out
How can I transfer the sound to sound card speaker out from modem speaker out with my Visual Basic 6 project ...Show All
Game Technologies: DirectX, XNA, XACT, etc. rendering meshes
hi! i've made a mesh picture_1: http://toomaniac.com/kopi/blender/object_mode _solid .gif even on actually flat faces there are a lot of triangles i.e. many different faces picture_2: http://toomaniac.com/kopi/blender/edit_mode.gif when i view the mesh in the meshview - that one that comes with the sdk - it looks like that picture_3: http://toomaniac.com/kopi/blender/directx.gif and when i load the mesh to my device it looks like that too why does the mesh don't look like on the first picture are there any parameters or renderstates settings i've to make here you can find my code: http://toomaniac.com/kopi/blende ...Show All
Windows Forms designer reloads
I have a form with controls on it, i then go to the code of that form (not the .Designer.cs file) and make a change, like add a function, i then tab back to the designer, and my whole windows form reloads itself. It only takes about 6 seconds but it happens every single time you make a change to the code and then go back to the designer. very annoying. It did this in beta 2, but now in rtm, they've just stuk a white rectangle over the design area to hide showing all the controls being rebuilt how do i stop it from rebuilding the design area I dont think you can; it will always rebuild it. The bigger questio ...Show All
SQL Server SELECT INTO using a data-flow
Hi, A T-SQL INSERT INTO operation inherently expects that the destination table already exists. However, the T-SQL SELECT INTO operation works by creating the destination table as it inserts the data. Like INSERT INTO, an SSIS data-flow inherently expects that the destination table already exists. Can anyone figure out how you might be able to do the equivalent of a T-SQL SELECT INTO operation using a data-flow I'm thinking a custom destination adapter might be able to do the job. -Jamie Bob Bojanic - MSFT wrote: our Triage has not looked at this yet. They are not looking at DCRs at thi ...Show All
Windows Forms using .Net to create a 'drive letter'
I need my app to create a virtual 'drive letter' in the user's My Computer window. I have seen other apps that do this, but I have seen no source code of any sort for this. Would anyone know where to start with this Thanks, Psi ...Show All
Visual Studio Prerequisites for VS
I installed IIS and FPSE after installing VS.NET becasue I wanted to go ahead and get started learning VB.NET. Now that I have IIS and FPSE installed, what parts of VS.NET do I need to re-install You can go to the framework directory under \windows\microsoft.net\framework\vxxxx and run aspnet_regiis.exe -i ...Show All
SQL Server SQL Server 2000 failed to attach database
hi, everybody, i copy the *.mdf and *.ldf files from another computer to my computer, and run my computer's SQL Server to attach database, but it gives me a error like this: file *.mdf's file header is not a valid file header, FILE SIZE attribute is incorrect. i don't know why, plz help me. thank you very much .mdf and .ldf files need to be properly detached from the sql server service that is runnig them before copying. Do you detach them using database detach ...Show All
Visual Basic SQL Server + Integrated Authentication and/or Impersonation...
Does anyone know how to impersonate a user and then use integrated security with SQL server Every place I've looked so far only shows how to use integrated security through IIS (asp.net), however I do not want my application dependant on a web server. Ive read a few articles that suggest Impersonating a user account, however for some reason, everytime I impersonate a user account, SQL server identifies me as "NT AUTHORITY\ANONYMOUS LOGON" Is this by design or am I doing something wrong Any help would be appreciated. Well.... I finally figured it out what I was doing wrong. ...Show All
Windows Forms Silly question about drawing in GDI+
I have question about drawing and filling methods of GDI+. When I have a Recetangle and when I use fill and draw Rectangle metchods Rectangle wchith was drawed is bigger then that wchith was filled. The diffrence is in one pixel on the right and one on the bottom of the rectangle. Why is this hapening Not really used GDI+ but is it your line width for a rectangle 20x40 if your line width is 1px, then the area of rectangle available to fill is 18x38. ...Show All
SQL Server Error Installing SQL Server 2005 Express Editios
Hi all, First of all I apologize for my very poor English. I tried to install SQL Server 2005 Express Edition (I also Installed Visual Studio Express Edition) and the intallation program don' t finish correctly: I opened the archive C:\Archivos de programa\Microsoft SQL Server\90\Setup Bootstrap\LOG\Summary.txt: SQL Server 2005 installation program has detected incompatible Visual Studio Beta, .Net Framework or SQL Server components. In Spanish: El programa de instalacion de SQL Server 2005 ha detectado componentes beta de Visual Studio, .NET Framework o SQL Server incompatibles I had installed Beta versions of Visual Studio ...Show All
Windows Forms How to identify the acutal row ?
I have an dataset with some tables in it. I'm binding one of the tables ("Accounts") to a ListBox, set the DisplayMember and ValueMember. Everything works fine. When i klick on the Listbox, i change the Itemindex and maybe somewhere the actual row of dataSet1.Accounts.Rows ... my question is, is ist possible to find somewhere in the dataset the (in&nbs ...Show All
Windows Forms Method to set datagridview row background color
Hi all, I had a datagridview. May I know how to set the particular row color of a datagridview to yellow Please help. Thanks Yes you can do this by using the following code snippet int RowIndex = 0; this .dataGridView1.Rows[ RowIndex ].DefaultCellStyle.BackColor = Color .Yellow; ...Show All
