Topics
-
- 0 replies
- 835 views
i have one mesh and its name is house.x it has got some textures. i can see these textures and i waneted to change these textures too for example: when i press the butorn i wanted to change the textures of the door or the window.. How can i change the textures ? can you send me your codes?
Last reply by ayhanozgul, -
- 8 replies
- 1.2k views
Can someone help me here. I wish to "deploy" my ASP.Net app to my web host's server. Without actually having them install it, how do I accomplish this?? Appreciate the help.
Last reply by bri189a, -
NYC Wages.
by Jay1b-
- Moderators
- 4 replies
- 873 views
A friend and I are considering moving to New York (from England), her brother lives over there anyway. She works as an accountant and has already had a job offer, which seems far to much for her level of experience. I was just really wondering what the the job market is currently like in NY for a .Net programmer with 2 yrs experience - and also what sort of salary i could expect. So if anyone lives in/near NY or a nearby city, would you mind please giving me a few pointers? Thanks
Last reply by Jay1b, -
-
font issue
by kulrom- 1 reply
- 818 views
How to change a font of text object of CR in runtime? actually i'm passing value of textBox (win form) to text Object (.rpt) and i want to set up its font style ... for instance i found that it works well for color property i.e. {...} txtCR.Color = Color.CadetBlue //works but this doesn't: txtCR.Font = Font.Italic //this throws an intelisense warning "font is read-only property" Thanks in advance :)
Last reply by kejpa, -
- 1 reply
- 846 views
Hi Guys, I'd like to have a databound combo box sorted but apparantly it's a no no to use the "sorted" property of that control. Could one of you be so kind as to supply an example of the code I'd need to make this happen? TIA, Mick
Last reply by Machaira, -
- 19 replies
- 17.9k views
Hi Friends I am new to asp.net..i have a small doubt..i have a static report(.pdf)..there is a link labled as view report..when i click that link i want to display the report...pls let me know how to do that??here the problem os the enduser dont have crystal reports in thier system..just they have Browser(IE)..when the user clicks the link they have to download the .PDF report from the webserver and they have to display that in browser..pls give me a idea how to download the .pdf report from webserver and how to display that on browser......... Thanks satya gummadilli@hotmail.com
Last reply by Unnati, -
- 0 replies
- 1k views
Hi all, Have a number of crystal reports that are pulling information from the database and displaying that data in the correct fashion. I am also displaying these reports in .pdf format. Private Sub generateReport() Dim oRpt As New rptMembers oRpt.DataDefinition.FormulaFields("Org").Text = "'" + Session("OrgID") + "'" oRpt.DataDefinition.FormulaFields("GID").Text = "'" + Request.QueryString("GID") + "'" oRpt.DataDefinition.FormulaFields("Active").Text = "'" + Request.QueryString("Active") + "'" oRpt.DataDefinition.FormulaFields("User").Text = "'" + Request.QueryString("by").Replace("'", "`") + "'" Try 'The following try c…
Last reply by mike55, -
- 2 replies
- 1.1k views
Hi, I want access to excel macros from aspnet proyect. But it not run because in Excel Security options don't have checked "Trust access to visual basic project" for aspnet user. Can I login in my PC with aspnet user for open excel and active this options? Do you know another way for get it? Thanks
Last reply by wakeup, -
- 0 replies
- 18.9k views
With help from this forum I was able to figure out the double buffer solution using gdi32's BitBlt in C#.net. GDI+ is well known for its lack of speed in the performance arena. To solve the "flicker" solution, and add a fast back buffer to my application, i dipped back into gdi32. What you'll want to do is this.. On your form, create a picturebox that will show your live drawing. Lets call it picChart. Now, what we need to do is create a back buffer for our picChart. private Bitmap memBmp; // Backbuffers bitmap private IntPtr hMemBmp; // Handle to our memBmp private Graphics memDC; // We draw on this private IntPtr hMemdc; // Handle to our memDC private …
Last reply by qmp, -
- 0 replies
- 844 views
I've created a simple .aspx page with a textbox and a label. I want to change the value in the label each time a user moves the mouse over the textbox. I have created a procedure to update the counter value (by adding 1 to the current counter value). I can call this procedure from OnTextChanged and the label will display the result from the procedure (although the counter doesn't increase...yet). However, if I try to use OnMouseOver, I get the following message: Error: 'tbCodeTextChangedByCode_mouseover' is undefined. Why is this error generated for OnMouseOver, but not for OnTextChanged, and how do I make it work (or at least have the procedure called …
Last reply by majic87, -
-
- Leaders
- 6 replies
- 2.3k views
Has anyone used any reliable systems for protecting source code so developers cannot steal the source? What are your overall thoughts on protecting source code (internally as well as externally)?
Last reply by AFterlife, -
-
-
- Administrators
- *Experts*
- Leaders
- 15 replies
- 3.6k views
Since DirectDraw has been deprecated, I am learning how to use Direct3D to make a 2D tile-based game, using the book ".NET Game Programming with DirectX 9.0" (VB .NET Edition). The problem I have is a row of pixels from the textures seems to wrap around on the right and bottom edges. This only happens when I use a hardware device, not a reference device. http://ilab.ahemm.org/temp.JPG The textures are 32x32 and the squares that they are rendered in are 32x32. This happened both with my source and the source included on a CD that came with the book. I tried using different overloads to load the textures. I tried changing the coordinates of the texture to be appli…
Last reply by ThePentiumGuy, -
-
-
- Moderators
- 1 reply
- 879 views
Employee ------------ id int, firstname varchar(30), lastname varchar(30), Time Table ----------- employeeid int, timein datetime, timeOut datetime Need to Sum total hours given employeeid and date range.
Last reply by Robby, -
-
-
- Administrators
- 2 replies
- 938 views
Hey all, I'm trying to develop a fairly simple windows form application and i'm having a few problems (stemming from the fact that i've go no idea what i'm doing as i'm a web developer). 1 I create a new folder inside my project in Visual Studio and put files (such as an Access Database or config files) inside this folder. But when I build this project the newly compiled exe in the new directory doesn't automatically copy these files accross. Now I can obviously do it manually but I find it hard to believe there isn't a way to get visual studio to do this for you at compile time? 2 Where do I store variables (such as data connection strings) so that they can b…
Last reply by Superfly1611, -
-
- 2 replies
- 873 views
The following method is automatically generated by visual studio every time you create a new windows form..... if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); Is this generic code? In other words when i'm creating my own class can i use this code to dispose of all objects that this class uses? (variables, DataConnections etc) Thanks
Last reply by Superfly1611, -
-
- Administrators
- 4 replies
- 1.9k views
How can I convert a hexdecimal number to an integer???
Last reply by anjanesh, -
-
- 0 replies
- 698 views
we have a complicate report file built from Crystal Report 8. the report is connecting to SQL Server through ODBC driver, and selecting from two huge joint tables. here was what i have done: * load the report file into ReportDocument (namely oRpt), * sepecify the oRpt.RecordSelectionFormula property as what is copied from the selection expert in the real crystal report program. * reportviewer.reportsouce = oRpt this works in a simple test file, but when it gets the complicate huge tables, it takes forever to load the report. however, the real Crystal Reports program takes only one minute. i wonder if the .net ignores the RecordSelectionFormula and tries to s…
Last reply by alanchinese, -
- 4 replies
- 1.8k views
Friends, I am trying to come up with a custom position control (trackbar you can say :D). I have a background horizontal bar (picturebox) over which I have the slider(another picturebox). Essentially, the slider should move based on where the user clicks on the background bar. For that, I need to somehow find the coordinates where the user clicked on the back image. I tried the cursor object. However, it gives co-ordinates relative to the container control's dimensions. I would want it to be relative to the user control's dimensions, coz based on those (static) values, I need to move the slider. Any ideas how this can be done? Do let me know. DNM
Last reply by dotnetman, -
-
- Administrators
- 1 reply
- 1.9k views
Hey i got a simple tcp server/client application. and i have the listening on the port 6666 in a thread. it keeps listening till the client connects and then it closes the thread. but i want it to keep the thread running so that another client can connect. Const portNumber As Integer = 6666 Dim tcpListener As New tcpListener(portNumber) Dim listenThread As System.Threading.Thread Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ' Must listen on correct port- must be same as port client wants to connect on. tcpListener.Start() listenThread = New System.Threading.Thread(AddressOf…
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 2 replies
- 693 views
I have a project with 35 web forms and an acccess file with 18 tables. Is there any way that I can make the file definition only once and every web form would take it from there? I mean until now I automatically generate the datadapters by dragging the tables from the server explorer . But every time I change a single field I have to repeat the proces on my 35 web forms!!!! How can I avoid this?
Last reply by bri189a, -
-
Who's Online 0 Members, 0 Anonymous, 69 Guests (See full list)
- There are no registered users currently online