Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for tiwas

I have the following two sprocs: [CODE] USE [Ecotech] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[Ecotech_AddUser] @aspnet_id uniqueidentifier, @last_name nvarchar(255), @first_name nvarchar(255), @address1 nvarchar(255), @address2 nvarchar(255), @zip nvarchar(10), @city nvarchar(255), @tlf_mobile nvarchar(16), @tlf_home nvarchar(16), @tlf_office nvarchar(16), @country nvarchar(16), @email nvarchar(50), @status int output AS BEGIN …

0
63
Member Avatar for tiwas

I have a few tables on my dev computer that I would like to roll out into productions. Is there an easy way to convert the table to sql syntax? Ideally, I would like to end up with a file with all the commands to create the table and the …

Member Avatar for pritaeas
0
57
Member Avatar for tiwas

Hi, Is there any way to do this? I tried using a 'select scope_identity()', but that returns null, apparently because my identity column is not a numeric of any sort. An answer to this would help me a lot! I would love to not have to use an integer or …

Member Avatar for tesuji
0
2K
Member Avatar for tiwas

Hi, I'm trying to make a headless version of my app (one that will start if the user appends arguments). My problem is that even though if I check for args in Main() it seems to open up the form no matter what. I've managed to use two versions of …

Member Avatar for tiwas
0
712
Member Avatar for tiwas

Hi, I have a function in my program that detects if the user is already running an instance of my app. If this is the case, I want the currently starting app to shut down. I've tried a couple of ways of doing this, but I guess this would be …

Member Avatar for tiwas
0
127
Member Avatar for tiwas

Hi, Is it possible (or...is it easy?) to check the version of a jar file from a c# application? I have this java program I'm running from inside my app and need to store the version - in case the user upgrades. As far as I know, the jar file …

Member Avatar for kvprajapati
0
95
Member Avatar for tiwas

Hi guys, I've trapped a misbehaving app in a panel and need to zoom out to make the whole app appear inside the panel without having to make the panel larger. Anyone know how to do this? Is it even possible? Cheers!

Member Avatar for tiwas
0
75
Member Avatar for tiwas

Hi, How can I link dlls (integrate them) into my program? I would like to just have one single exe, and not having to distribute a zip or installer... Cheers!

Member Avatar for sknake
0
76
Member Avatar for tiwas

Hi, This is vaguely related to my last post, but not entirely so I'll make a new one. Hope that's consistent with the board rules :) I have a path [CODE]String path = "C:\\test\another\\directory\\";[/CODE] It seems the trailing slash is appended automatically when using the OpenFileDialog, so I used to …

Member Avatar for Rashakil Fol
0
139
Member Avatar for papanyquiL

[size=5][b]1.- WTF![/b][/size] The most repeated sentence in code reviews… [img]http://www.makinggoodsoftware.com/wp-content/uploads/2009/09/wtfm.jpg[/img] [size=5][b]2.- It works in my machine![/b][/size] We all have used this one when blamed for some error… [size=5][b]3.- D’oh![/b][/size] - Hi Homer, have you removed the debug code from production? [img]http://www.makinggoodsoftware.com/wp-content/uploads/2009/07/homer-simpson-doh.jpg[/img] [size=5][b]4.- It will be ready tomorrow.[/b][/size] The problem with …

Member Avatar for ddanbe
0
150
Member Avatar for tiwas

Hi, I've beeb playing around a bit with files and stuff to learn some of the aspects of C#. In order to not make it too convenient and easy I opted for using a String to hold my path, and then use DirectoryInfo to use it. In one of the …

Member Avatar for tiwas
0
105